From 0004301b23c79a019a12c19785a6d4052f916213 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Tue, 26 Mar 2013 17:50:15 +0100 Subject: [PATCH 01/35] [IMP] mail: now have a subject in composer. bzr revid: tde@openerp.com-20130326165015-czid1h8xot4mdhyi --- addons/mail/wizard/mail_compose_message.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/addons/mail/wizard/mail_compose_message.py b/addons/mail/wizard/mail_compose_message.py index 7e5b437623f..0d036e9402c 100644 --- a/addons/mail/wizard/mail_compose_message.py +++ b/addons/mail/wizard/mail_compose_message.py @@ -169,7 +169,12 @@ class mail_compose_message(osv.TransientModel): record_name = doc_name_get[0][1] else: record_name = False - return {'model': model, 'res_id': res_id, 'record_name': record_name} + return { + 'model': model, + 'res_id': res_id, + 'record_name': record_name, + 'subject': 'Re: %s' % record_name, + } def get_message_data(self, cr, uid, message_id, context=None): """ Returns a defaults-like dict with initial values for the composition @@ -187,7 +192,7 @@ class mail_compose_message(osv.TransientModel): # create subject re_prefix = _('Re:') - reply_subject = tools.ustr(message_data.subject or '') + reply_subject = tools.ustr(message_data.subject or tools.ustr(message_data.record_name or '') or '') if not (reply_subject.startswith('Re:') or reply_subject.startswith(re_prefix)) and message_data.subject: reply_subject = "%s %s" % (re_prefix, reply_subject) # get partner_ids from original message From 35b0b7f4b1656207560a470f776b9945dc176b30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Tue, 26 Mar 2013 17:59:40 +0100 Subject: [PATCH 02/35] [FIX] mail_message: todo are now unread bzr revid: tde@openerp.com-20130326165940-isag9vxn22vinlgy --- addons/mail/mail_message.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/mail/mail_message.py b/addons/mail/mail_message.py index 2f56e620543..156ceac214e 100644 --- a/addons/mail/mail_message.py +++ b/addons/mail/mail_message.py @@ -269,15 +269,15 @@ class mail_message(osv.Model): # all message have notifications: already set them as (un)starred if len(notif_ids) == len(msg_ids) or not create_missing: - notification_obj.write(cr, uid, notif_ids, {'starred': starred}, context=context) + notification_obj.write(cr, uid, notif_ids, {'starred': starred, 'read': False}, context=context) return starred # some messages do not have notifications: find which one, create notification, update starred 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, 'starred': starred, 'message_id': msg_id}, context=context) - notification_obj.write(cr, uid, notif_ids, {'starred': starred}, context=context) + notification_obj.create(cr, uid, {'partner_id': user_pid, 'starred': starred, 'message_id': msg_id, 'read': False}, context=context) + notification_obj.write(cr, uid, notif_ids, {'starred': starred, 'read': False}, context=context) return starred #------------------------------------------------------ From f307221f04ed89e4b0de5268c70601818da577e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Wed, 27 Mar 2013 12:17:50 +0100 Subject: [PATCH 03/35] [IMP] Cleaned the fix. bzr revid: tde@openerp.com-20130327111750-auc217sdkg4gieci --- addons/mail/wizard/mail_compose_message.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/addons/mail/wizard/mail_compose_message.py b/addons/mail/wizard/mail_compose_message.py index 0d036e9402c..e475baf82ae 100644 --- a/addons/mail/wizard/mail_compose_message.py +++ b/addons/mail/wizard/mail_compose_message.py @@ -165,16 +165,17 @@ class mail_compose_message(osv.TransientModel): :param int res_id: id of the document record this mail is related to """ doc_name_get = self.pool.get(model).name_get(cr, uid, [res_id], context=context) + record_name = False if doc_name_get: record_name = doc_name_get[0][1] - else: - record_name = False - return { + values = { 'model': model, 'res_id': res_id, 'record_name': record_name, - 'subject': 'Re: %s' % record_name, } + if record_name: + values['subject'] = 'Re: %s' % record_name + return values def get_message_data(self, cr, uid, message_id, context=None): """ Returns a defaults-like dict with initial values for the composition @@ -192,6 +193,8 @@ class mail_compose_message(osv.TransientModel): # create subject re_prefix = _('Re:') + if message_data.subject: + reply_subject = tools.ustr(message_data.subject or tools.ustr(message_data.record_name or '') or '') if not (reply_subject.startswith('Re:') or reply_subject.startswith(re_prefix)) and message_data.subject: reply_subject = "%s %s" % (re_prefix, reply_subject) From 92597407f877a060068805486fd236ac1e0b23af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Wed, 27 Mar 2013 12:19:10 +0100 Subject: [PATCH 04/35] [CLEAN] Cleaned the cleaning of the fix. bzr revid: tde@openerp.com-20130327111910-l7a9s5rk05b8jbme --- addons/mail/wizard/mail_compose_message.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/addons/mail/wizard/mail_compose_message.py b/addons/mail/wizard/mail_compose_message.py index e475baf82ae..da6307ba019 100644 --- a/addons/mail/wizard/mail_compose_message.py +++ b/addons/mail/wizard/mail_compose_message.py @@ -193,9 +193,7 @@ class mail_compose_message(osv.TransientModel): # create subject re_prefix = _('Re:') - if message_data.subject: - - reply_subject = tools.ustr(message_data.subject or tools.ustr(message_data.record_name or '') or '') + reply_subject = tools.ustr(message_data.subject or message_data.record_name or '') if not (reply_subject.startswith('Re:') or reply_subject.startswith(re_prefix)) and message_data.subject: reply_subject = "%s %s" % (re_prefix, reply_subject) # get partner_ids from original message From 9fa765194feef8caef812a5dfd95317c3f00d4ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Wed, 27 Mar 2013 12:20:49 +0100 Subject: [PATCH 05/35] [CLEAN] Cleaned the fix. bzr revid: tde@openerp.com-20130327112049-jmwcpwc50fsa6bf7 --- addons/mail/mail_message.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/addons/mail/mail_message.py b/addons/mail/mail_message.py index 156ceac214e..a8fba3022e1 100644 --- a/addons/mail/mail_message.py +++ b/addons/mail/mail_message.py @@ -265,19 +265,25 @@ class mail_message(osv.Model): domain = [('partner_id', '=', user_pid), ('message_id', 'in', msg_ids)] if not create_missing: domain += [('starred', '=', not starred)] + values = { + 'starred': starred + } + if starred: + values['read'] = False + notif_ids = notification_obj.search(cr, uid, domain, context=context) # all message have notifications: already set them as (un)starred if len(notif_ids) == len(msg_ids) or not create_missing: - notification_obj.write(cr, uid, notif_ids, {'starred': starred, 'read': False}, context=context) + notification_obj.write(cr, uid, notif_ids, values, context=context) return starred # some messages do not have notifications: find which one, create notification, update starred 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, 'starred': starred, 'message_id': msg_id, 'read': False}, context=context) - notification_obj.write(cr, uid, notif_ids, {'starred': starred, 'read': False}, context=context) + notification_obj.create(cr, uid, dict(values, partner_id=user_pid, message_id=msg_id), context=context) + notification_obj.write(cr, uid, notif_ids, values, context=context) return starred #------------------------------------------------------ From 555b2cbd2617465ef474906a3b20e7d602cf1863 Mon Sep 17 00:00:00 2001 From: "Nimesh (Open ERP)" Date: Fri, 21 Dec 2012 15:50:56 +0530 Subject: [PATCH 06/35] [FIX] duplicate a holiday request. bzr revid: nco@tinyerp.com-20121221102056-ojgcvllqtnxeuk8e --- addons/hr_holidays/hr_holidays.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/addons/hr_holidays/hr_holidays.py b/addons/hr_holidays/hr_holidays.py index c7d7867911d..be8330c40a0 100644 --- a/addons/hr_holidays/hr_holidays.py +++ b/addons/hr_holidays/hr_holidays.py @@ -182,6 +182,16 @@ class hr_holidays(osv.osv): ('date_check2', "CHECK ( (type='add') OR (date_from <= date_to))", "The start date must be anterior to the end date."), ('date_check', "CHECK ( number_of_days_temp >= 0 )", "The number of days must be greater than 0."), ] + + def copy(self, cr, uid, id, default=None, context=None): + if default is None: + default = {} + if context is None: + context = {} + default = default.copy() + default['date_from'] = False + default['date_to'] = False + return super(hr_holidays, self).copy(cr, uid, id, default, context=context) def _create_resource_leave(self, cr, uid, leaves, context=None): '''This method will create entry in resource calendar leave object at the time of holidays validated ''' From 8ecb77a59d36cb3d6cd8dd8721af809c6dd5e250 Mon Sep 17 00:00:00 2001 From: "ajay javiya (OpenERP)" Date: Thu, 21 Mar 2013 18:25:08 +0530 Subject: [PATCH 07/35] [FIX]: mail chatter issue bzr revid: aja@tinyerp.com-20130321125508-ixlskc9rnnalwcwl --- addons/mail/mail_thread.py | 2 +- addons/mail/static/src/js/mail.js | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index f42c969722f..0abebaa3994 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -794,7 +794,7 @@ class mail_thread(osv.AbstractModel): # as RFC2822 requires timezone offset in Date headers. stored_date = parsed_date.replace(tzinfo=pytz.utc) else: - stored_date = parsed_date.astimezone(pytz.utc) + stored_date = parsed_date.astimezone(tzinfo=pytz.utc) except Exception: _logger.warning('Failed to parse Date header %r in incoming mail ' 'with message-id %r, assuming current date/time.', diff --git a/addons/mail/static/src/js/mail.js b/addons/mail/static/src/js/mail.js index 1eeab9bb30d..f992a385c3e 100644 --- a/addons/mail/static/src/js/mail.js +++ b/addons/mail/static/src/js/mail.js @@ -1208,7 +1208,7 @@ openerp.mail = function (session) { this.author_id = datasets.author_id || false; this.thread_level = (datasets.thread_level+1) || 0; datasets.partner_ids = datasets.partner_ids || []; - if (datasets.author_id && ! _.contains(datasets.partner_ids, datasets.author_id) && datasets.author_id[0]) { + if (datasets.author_id && !_.contains(_.flatten(datasets.partner_ids),datasets.author_id[0]) && datasets.author_id[0]) { datasets.partner_ids.push(datasets.author_id); } this.partner_ids = datasets.partner_ids; @@ -1389,7 +1389,10 @@ openerp.mail = function (session) { if (this.options.help) { no_message.html(this.options.help); } - no_message.appendTo(this.$el); + if (!this.$el.find(".oe_view_nocontent").length) + { + no_message.appendTo(this.$el); + } }, /** From 79565563cc305cdcc0673df5a01545e525ed7cbb Mon Sep 17 00:00:00 2001 From: Josse Colpaert Date: Mon, 25 Mar 2013 09:45:02 +0100 Subject: [PATCH 08/35] [FIX] Make sure all sales orders are set to done when invoicing from contract bzr revid: jco@openerp.com-20130325084502-o9oc8ujqeno5fw84 --- addons/sale/wizard/sale_line_invoice.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/addons/sale/wizard/sale_line_invoice.py b/addons/sale/wizard/sale_line_invoice.py index 4aa58088129..b7771ad72c8 100644 --- a/addons/sale/wizard/sale_line_invoice.py +++ b/addons/sale/wizard/sale_line_invoice.py @@ -95,16 +95,15 @@ class sale_order_line_make_invoice(osv.osv_memory): res = make_invoice(order, il) cr.execute('INSERT INTO sale_order_invoice_rel \ (order_id,invoice_id) values (%s,%s)', (order.id, res)) - flag = True - data_sale = sales_order_obj.browse(cr, uid, line.order_id.id, context=context) + data_sale = sales_order_obj.browse(cr, uid, order.id, context=context) for line in data_sale.order_line: if not line.invoiced: flag = False break if flag: - wf_service.trg_validate(uid, 'sale.order', line.order_id.id, 'manual_invoice', cr) - sales_order_obj.write(cr, uid, [line.order_id.id], {'state': 'progress'}) + wf_service.trg_validate(uid, 'sale.order', order.id, 'manual_invoice', cr) + sales_order_obj.write(cr, uid, [order.id], {'state': 'done'}) if not invoices: raise osv.except_osv(_('Warning!'), _('Invoice cannot be created for this Sales Order Line due to one of the following reasons:\n1.The state of this sales order line is either "draft" or "cancel"!\n2.The Sales Order Line is Invoiced!')) From ec6a659e5bd1578a539b3cd6e2b81326fb0b8e41 Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Tue, 26 Mar 2013 18:02:58 +0100 Subject: [PATCH 10/35] [FIX] account: print invoice report shows now TIN instead of VAT (Openerp is supposed to be americanized) bzr revid: qdp-launchpad@openerp.com-20130326170258-es17p21syir9moma --- addons/account/report/account_print_invoice.rml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/report/account_print_invoice.rml b/addons/account/report/account_print_invoice.rml index 4ffa7a33f9d..9268c94d4c7 100644 --- a/addons/account/report/account_print_invoice.rml +++ b/addons/account/report/account_print_invoice.rml @@ -168,7 +168,7 @@ Tel. : [[ (o.partner_id.phone) or removeParentNode('para') ]] Fax : [[ (o.partner_id.fax) or removeParentNode('para') ]] - VAT : [[ (o.partner_id.vat) or removeParentNode('para') ]] + TIN : [[ (o.partner_id.vat) or removeParentNode('para') ]] From 4fca70b0b2f54d4d9af1f37ffbc959d542bde3b6 Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Tue, 26 Mar 2013 18:04:56 +0100 Subject: [PATCH 11/35] [FIX] account_analytic_analysis: wrong computation of remaining to invoice field (should not take into consideration lines for which it exists a draft invoice) bzr revid: qdp-launchpad@openerp.com-20130326170456-p4j54ar9272n05no --- .../account_analytic_analysis.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/addons/account_analytic_analysis/account_analytic_analysis.py b/addons/account_analytic_analysis/account_analytic_analysis.py index 64912213520..a187f9452f5 100644 --- a/addons/account_analytic_analysis/account_analytic_analysis.py +++ b/addons/account_analytic_analysis/account_analytic_analysis.py @@ -299,11 +299,10 @@ class account_analytic_account(osv.osv): res[account.id] = 0.0 sale_ids = sale_obj.search(cr, uid, [('project_id','=', account.id), ('state', '=', 'manual')], context=context) for sale in sale_obj.browse(cr, uid, sale_ids, context=context): - if not sale.invoiced: - res[account.id] += sale.amount_untaxed - for invoice in sale.invoice_ids: - if invoice.state not in ('draft', 'cancel'): - res[account.id] -= invoice.amount_untaxed + res[account.id] += sale.amount_untaxed + for invoice in sale.invoice_ids: + if invoice.state != 'cancel': + res[account.id] -= invoice.amount_untaxed return res def _timesheet_ca_invoiced_calc(self, cr, uid, ids, name, arg, context=None): From 958369f2a3486aa38fb3d537a7c136a202890e61 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Wed, 27 Mar 2013 05:41:12 +0000 Subject: [PATCH 12/35] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130327054112-d16nttpka5nuagfy --- addons/account/i18n/es_MX.po | 10 +- addons/account/i18n/nl.po | 12 +- addons/account_asset/i18n/mn.po | 10 +- addons/board/i18n/cs.po | 63 ++-- addons/idea/i18n/hr.po | 40 +-- addons/mail/i18n/cs.po | 606 +++++++++++++++++++------------- addons/stock/i18n/tr.po | 120 +++++-- 7 files changed, 539 insertions(+), 322 deletions(-) diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index 1c66df3e847..edbf5567544 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.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-14 00:11+0000\n" -"Last-Translator: OscarAlca \n" +"PO-Revision-Date: 2013-03-26 18:06+0000\n" +"Last-Translator: Antonio Fregoso \n" "Language-Team: Spanish (Mexico) \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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" +"X-Generator: Launchpad (build 16540)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -7082,7 +7082,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "" +msgstr "Pólizas" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 6549eefaa31..bf6b4d60110 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.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-03-24 18:48+0000\n" +"PO-Revision-Date: 2013-03-26 14:28+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-03-25 05:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-27 05:40+0000\n" "X-Generator: Launchpad (build 16540)\n" #. module: account @@ -5192,7 +5192,7 @@ msgstr "Eindsaldo" #. module: account #: field:account.chart.template,visible:0 msgid "Can be Visible?" -msgstr "Kan zichtbaar zijn?" +msgstr "Zichtbaar?" #. module: account #: model:ir.model,name:account.model_account_journal_select @@ -5278,7 +5278,7 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" -"Kan geen enkel dagboek %s vinden voor dit bedrijf.\n" +"Kan geen dagboek van het soort \"%s\" vinden voor dit bedrijf.\n" "\n" "U kunt deze aanmaken in het menu:\n" "Instellingen\\Dagboeken\\Dagboeken." @@ -7507,7 +7507,7 @@ msgstr "Transactienaam" #. module: account #: field:account.chart.template,property_account_expense_categ:0 msgid "Expense Category Account" -msgstr "Categorie Kostenrekeningen" +msgstr "Productcategorie kostenrekening" #. module: account #: sql_constraint:account.tax:0 @@ -9199,7 +9199,7 @@ msgstr "Afboekingsdagboek" #. module: account #: field:account.chart.template,property_account_income_categ:0 msgid "Income Category Account" -msgstr "Omzetcategorie" +msgstr "Productcategorie omzetrekening" #. module: account #: field:account.account,adjusted_balance:0 diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index 2ce5e76bd61..1264182fe7c 100644 --- a/addons/account_asset/i18n/mn.po +++ b/addons/account_asset/i18n/mn.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-03-13 10:05+0000\n" -"Last-Translator: wsubuntu \n" +"PO-Revision-Date: 2013-03-26 14:43+0000\n" +"Last-Translator: gobi \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" +"X-Generator: Launchpad (build 16540)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -785,4 +785,4 @@ msgstr "Хөрөнгийг батлах" #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "Хөрөнгийн эзэмшигч" +msgstr "Хөрөнгийн Шатлал" diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po index 06daa8771c9..c61dac44cf0 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -8,58 +8,58 @@ 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-03-27 05:01+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" +"X-Generator: Launchpad (build 16540)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create #: model:ir.ui.menu,name:board.menu_board_create msgid "Create Board" -msgstr "" +msgstr "Vytvořit nástěnku" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "vytvořit" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Uspořádání se obnoví do výchozího stavu..." #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "Vytvořit novou nástěnku" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "Vyberte uspořádání nástěnky" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Přidat" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:139 #, python-format msgid "Are you sure you want to remove this item ?" -msgstr "" +msgstr "Opravdu chcete tuto položku odstranit?" #. module: board #: model:ir.model,name:board.model_board_board @@ -71,31 +71,31 @@ msgstr "Tabule" #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "Osobní nástěnka" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Název" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "Vytvoření nástěnky" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Přidat na nástěnku" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:28 #, python-format msgid " " -msgstr "" +msgstr " " #. module: board #: model:ir.actions.act_window,help:board.open_board_my_dash_action @@ -115,39 +115,56 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Vaše osobní nástěnka je prázdná.\n" +"

\n" +" Chcete-li přidat první sestavu na vaši nástěnku, " +"klepněte na terékoliv\n" +" horní menu, přepněte se do zobrazení 'seznam' nebo " +"'graf', \n" +" a v pokročilém vyhledávání klepněte na 'Přidat na " +"nástěnku'.\n" +"

\n" +" Data můžete před přidáním na nástěnku filtrovat a " +"seskupovat\n" +" použitím vyhledávacích voleb.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Obnovit uspořádání" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "Nadřazená nabídka" +msgstr "Nadřazené menu" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "Můžete změnit uspořádání sestav na nástěnce..." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "Upravit uspořádání" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "Změnit uspořádání" #. module: board #: view:board.create:0 @@ -157,11 +174,11 @@ msgstr "Zrušit" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Název nové položky nástěnky" diff --git a/addons/idea/i18n/hr.po b/addons/idea/i18n/hr.po index 947621766a8..98ddbfe7864 100644 --- a/addons/idea/i18n/hr.po +++ b/addons/idea/i18n/hr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-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-03-26 19:48+0000\n" +"Last-Translator: Davor Bojkić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-08 05:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" +"X-Generator: Launchpad (build 16540)\n" #. module: idea #: view:idea.category:0 @@ -26,7 +26,7 @@ msgstr "Kategorija" #. module: idea #: view:idea.idea:0 msgid "In Progress" -msgstr "" +msgstr "U tijeku" #. module: idea #: view:idea.idea:0 @@ -56,18 +56,18 @@ msgstr "Otvorene Ideje" #. module: idea #: view:idea.idea:0 msgid "Group By..." -msgstr "" +msgstr "Grupiraj po..." #. module: idea #: field:idea.category,name:0 msgid "Category Name" -msgstr "" +msgstr "Naziv kategorije" #. module: idea #: view:idea.idea:0 #: selection:idea.idea,state:0 msgid "New" -msgstr "" +msgstr "Nova" #. module: idea #: view:idea.idea:0 @@ -93,22 +93,22 @@ msgstr "" #. module: idea #: field:idea.idea,category_ids:0 msgid "Tags" -msgstr "" +msgstr "Oznake" #. module: idea #: field:idea.idea,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: idea #: help:idea.idea,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i povijest komunikacije" #. module: idea #: field:idea.idea,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Pratitelj" #. module: idea #: model:ir.model,name:idea.model_idea_idea @@ -119,7 +119,7 @@ msgstr "" #: view:idea.idea:0 #: selection:idea.idea,state:0 msgid "Accepted" -msgstr "" +msgstr "Prihvaćeno" #. module: idea #: model:ir.actions.act_window,name:idea.action_idea_category @@ -130,12 +130,12 @@ msgstr "Kategorije" #. module: idea #: view:idea.idea:0 msgid "Refuse" -msgstr "" +msgstr "Odbiti" #. module: idea #: field:idea.idea,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Poruke" #. module: idea #: view:idea.idea:0 @@ -163,7 +163,7 @@ msgstr "Sižetak" #. module: idea #: help:idea.idea,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ako je odabrano, nove poruke zahtijevaju Vašu pažnju." #. module: idea #: field:idea.idea,description:0 @@ -173,7 +173,7 @@ msgstr "Opis" #. module: idea #: selection:idea.idea,state:0 msgid "Refused" -msgstr "" +msgstr "Odbijen" #. module: idea #: view:idea.idea:0 @@ -194,7 +194,7 @@ msgstr "Ideja" #. module: idea #: view:idea.idea:0 msgid "Accept" -msgstr "" +msgstr "Prihvati" #. module: idea #: help:idea.idea,message_summary:0 @@ -206,7 +206,7 @@ msgstr "" #. module: idea #: selection:idea.idea,state:0 msgid "Done" -msgstr "" +msgstr "Završeno" #. module: idea #: view:idea.idea:0 @@ -216,7 +216,7 @@ msgstr "" #. module: idea #: field:idea.idea,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratitelji" #. module: idea #: view:idea.category:0 diff --git a/addons/mail/i18n/cs.po b/addons/mail/i18n/cs.po index fcb9254aa51..164e398bb54 100644 --- a/addons/mail/i18n/cs.po +++ b/addons/mail/i18n/cs.po @@ -8,69 +8,69 @@ 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-03-25 07:50+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-27 00:37+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \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-26 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" "X-Generator: Launchpad (build 16540)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "" +msgstr "Formulář odběratele" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract msgid "publisher_warranty.contract" -msgstr "" +msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 #: field:mail.message,author_id:0 msgid "Author" -msgstr "" +msgstr "Odesílatel" #. module: mail #: view:mail.mail:0 msgid "Message Details" -msgstr "" +msgstr "Detaily zprávy" #. module: mail #: help:mail.mail,email_to:0 msgid "Message recipients" -msgstr "" +msgstr "Příjemci zpráv" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "" +msgstr "Bude nastaveno jako výchozí při při přihlášení k odběru." #. module: mail #: view:mail.message:0 msgid "Comments" -msgstr "" +msgstr "Komentáře" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:296 #, python-format msgid "more messages" -msgstr "" +msgstr "více zpráv" #. module: mail #: view:mail.alias:0 #: view:mail.mail:0 msgid "Group By..." -msgstr "" +msgstr "Seskupit podle…" #. module: mail #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "" +msgstr "Automaticky ošetřený HTML obsah" #. module: mail #: help:mail.alias,alias_name:0 @@ -78,12 +78,14 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" +"Název aliasu e-mailů, např. 'zamestnani', chcete-li zachytávat e-maily od " +"" #. module: mail #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard #: view:mail.compose.message:0 msgid "Compose Email" -msgstr "" +msgstr "Napsat e-mail" #. module: mail #: constraint:mail.alias:0 @@ -91,31 +93,33 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" +"Neplatný výraz - musí se jednat o definici ze slovníku Pythonu, např. " +"\"{'field': 'value'}\"" #. module: mail #: view:mail.group:0 msgid "Group Name" -msgstr "" +msgstr "Název" #. module: mail #: selection:mail.group,public:0 msgid "Public" -msgstr "" +msgstr "Veřejné" #. module: mail #: view:mail.message:0 msgid "Unread" -msgstr "" +msgstr "Nepřečtené" #. module: mail #: view:mail.mail:0 msgid "Body" -msgstr "" +msgstr "Obsah" #. module: mail #: view:mail.message:0 msgid "Show messages to read" -msgstr "" +msgstr "Ukázat zprávy ke čtení" #. module: mail #: help:mail.compose.message,email_from:0 @@ -124,44 +128,46 @@ msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." msgstr "" +"E-mailová adresa odesílatele. Pole je nastaveno, nepodaří-li se pro příchozí " +"e-maily nalézt odpovídající kontakt." #. module: mail #: model:ir.model,name:mail.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Průvodce vytvořením emailu" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Přidat další" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Nadřazený" #. module: mail #: field:mail.group,message_unread:0 #: field:mail.thread,message_unread:0 #: field:res.partner,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepřečtené zprávy" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:267 #, python-format msgid "to" -msgstr "" +msgstr "pro" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:296 #, python-format msgid "show" -msgstr "" +msgstr "ukázat" #. module: mail #: help:mail.group,group_ids:0 @@ -169,24 +175,26 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" +"Členové těchto skupin budou automaticky přidáni jako odběratelé zpráv. Ti si " +"pak budou moci sami spravovat své přihlášení k odběrům v případě potřeby." #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail.js:1019 #, python-format msgid "Do you really want to delete this message?" -msgstr "" +msgstr "Chcete opravdu smazat tuto zprávu?" #. module: mail #: view:mail.message:0 #: field:mail.notification,read:0 msgid "Read" -msgstr "" +msgstr "Přečtené" #. module: mail #: view:mail.group:0 msgid "Search Groups" -msgstr "" +msgstr "Hledat skupiny" #. module: mail #. openerp-web @@ -197,19 +205,22 @@ msgid "" " %s won't be notified of any email or discussion on this document. Do you " "really want to remove him from the followers ?" msgstr "" +"Varování! \n" +"%s neobdrží upozornění na e-maily ani diskuze ohledně tohoto dokumentu. " +"Opravdu chcete kontakt odstranit z odběratelů?" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail_followers.js:159 #, python-format msgid "followers" -msgstr "" +msgstr "Odběratelé" #. module: mail #: code:addons/mail/mail_message.py:726 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Přístup odepřen" #. module: mail #: help:mail.group,image_medium:0 @@ -218,18 +229,21 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Střední obrázek tohoto kontaktu. Je automaticky přepočítán na 128x128 bodů " +"se zachováním poměru stran. Použijte toto pole v zobrazeních 'formulář' nebo " +"'kanban'." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:212 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Chyba uploadu" #. module: mail #: model:mail.group,name:mail.group_support msgid "Support" -msgstr "" +msgstr "Podpora" #. module: mail #: code:addons/mail/mail_message.py:727 @@ -240,58 +254,62 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" +"Požadovanou operaci nelze dokončit z důvodu bezpečnostnímu omezení. Obraťte " +"se prosím na správce systému. \n" +"\n" +"(Typ dokumentu:% s, Operace:% s)" #. module: mail #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Received" -msgstr "" +msgstr "Přijaté" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:73 #, python-format msgid "Attach a File" -msgstr "" +msgstr "Připojit soubor" #. module: mail #: view:mail.mail:0 msgid "Thread" -msgstr "" +msgstr "Vlákno" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "Otevřít plnohodnotné okno pro psaní zprávy" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "ò" -msgstr "" +msgstr "ò" #. module: mail #: field:base.config.settings,alias_domain:0 msgid "Alias Domain" -msgstr "" +msgstr "Alias domény" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "" +msgstr "Automatický odběr" #. module: mail #: field:mail.mail,references:0 msgid "References" -msgstr "" +msgstr "Odkazy" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "" +msgstr "Přidat odběratele" #. module: mail #: help:mail.compose.message,author_id:0 @@ -300,6 +318,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Autor zprávy. Není-li nastaven, email_from může obsahovat e-mailovou adresu, " +"která neodpovídá žádnému kontaktu." #. module: mail #. openerp-web @@ -307,14 +327,14 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:110 #, python-format msgid "uploading" -msgstr "" +msgstr "upload" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "more." -msgstr "" +msgstr "více." #. module: mail #: help:mail.compose.message,type:0 @@ -323,6 +343,8 @@ msgid "" "Message type: email for email message, notification for system message, " "comment for other messages such as user replies" msgstr "" +"Druh zprávy: 'E-mail' pro e-mailové zprávy, 'Upozornění' pro zprávy systému, " +"'Komentář' pro ostatní zprávy, jako odpovědi uživatelů." #. module: mail #: help:mail.message.subtype,relation_field:0 @@ -331,64 +353,67 @@ msgid "" "automatic subscription on a related document. The field is used to compute " "getattr(related_document.relation_field)." msgstr "" +"Pole slouží k propojení souvisejícího modelu s modelem poddruhu, pokud se " +"použije automatické přihlášení k odběru u souvisejícího dokumentu. Pole se " +"používá pro výpočet getattr(related_document.relation_field)." #. module: mail #: selection:mail.mail,state:0 msgid "Cancelled" -msgstr "" +msgstr "Zrušeno" #. module: mail #: field:mail.mail,reply_to:0 msgid "Reply-To" -msgstr "" +msgstr "Odpověď pro" #. module: mail #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "" +msgstr "
Byli jste pozváni k odběru %s.
" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:54 #, python-format msgid "Send a message" -msgstr "" +msgstr "Odeslat zprávu" #. module: mail #: help:mail.group,message_unread:0 #: help:mail.thread,message_unread:0 #: help:res.partner,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Bude-li zaškrtnuto, nové zprávy budou vyžadovat vaši pozornost." #. module: mail #: field:mail.group,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Střední obrázek" #. module: mail #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "" +msgstr "Pro mne" #. module: mail #: field:mail.message.subtype,name:0 msgid "Message Type" -msgstr "" +msgstr "Druh zprávy" #. module: mail #: field:mail.mail,auto_delete:0 msgid "Auto Delete" -msgstr "" +msgstr "Automatické vymazání" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:264 #, python-format msgid "logged a note" -msgstr "" +msgstr "přidal poznámku" #. module: mail #. openerp-web @@ -396,28 +421,28 @@ msgstr "" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "" +msgstr "Neodebírat" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:295 #, python-format msgid "show one more message" -msgstr "" +msgstr "ukázat ještě jednu zprávu" #. module: mail #: code:addons/mail/mail_mail.py:74 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neplatná akce!" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:25 #, python-format msgid "User img" -msgstr "" +msgstr "Obrázek uživatele" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_mail @@ -425,12 +450,12 @@ msgstr "" #: view:mail.mail:0 #: view:mail.message:0 msgid "Emails" -msgstr "" +msgstr "E-maily" #. module: mail #: field:mail.followers,partner_id:0 msgid "Related Partner" -msgstr "" +msgstr "Související kontakt" #. module: mail #: help:mail.group,message_summary:0 @@ -440,6 +465,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 "" +"Udržuje přehled komunikace (počet zpráv, …). Tento přehled je přímo ve " +"formátu HTML, aby se dal vložit do zobrazení 'kanban'." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -448,56 +475,59 @@ msgid "" "incoming email that does not reply to an existing record will cause the " "creation of a new record of this model (e.g. a Project Task)" msgstr "" +"Model (druh OpenERP dokumentu), kterému tento alias odpovídá. Příchozí e-" +"mail, který neodpoví existujícímu záznamu, způsobí vytvoření nového záznamu " +"tohoto modelu (například projektový úkol)." #. module: mail #: view:base.config.settings:0 msgid "mycompany.my.openerp.com" -msgstr "" +msgstr "mycompany.my.openerp.com" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Pole vztahu" #. module: mail #: selection:mail.compose.message,type:0 #: selection:mail.message,type:0 msgid "System notification" -msgstr "" +msgstr "Upozornění systému" #. module: mail #: model:ir.model,name:mail.model_res_partner #: view:mail.mail:0 msgid "Partner" -msgstr "" +msgstr "Kontakt" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "" +msgstr "Organizátor" #. module: mail #: field:mail.compose.message,subject:0 #: field:mail.message,subject:0 msgid "Subject" -msgstr "" +msgstr "Předmět" #. module: mail #: field:mail.wizard.invite,partner_ids:0 msgid "Partners" -msgstr "" +msgstr "Kontakty" #. module: mail #: view:mail.mail:0 msgid "Retry" -msgstr "" +msgstr "Opakovat" #. module: mail #: field:mail.compose.message,email_from:0 #: field:mail.mail,email_from:0 #: field:mail.message,email_from:0 msgid "From" -msgstr "" +msgstr "Od" #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -505,25 +535,25 @@ msgstr "" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "" +msgstr "Poddruh" #. module: mail #: view:mail.mail:0 #: view:mail.message.subtype:0 msgid "Email message" -msgstr "" +msgstr "E-mailová zpráva" #. module: mail #: model:ir.model,name:mail.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:128 #, python-format msgid "this document" -msgstr "" +msgstr "tento dokument" #. module: mail #. openerp-web @@ -531,26 +561,26 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "Send" -msgstr "" +msgstr "Odeslat" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "No followers" -msgstr "" +msgstr "Žádní odběratelé" #. module: mail #: view:mail.mail:0 msgid "Failed" -msgstr "" +msgstr "Neúspěšné" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:154 #, python-format msgid "Attach a note that will not be send to the followers" -msgstr "" +msgstr "Připojit poznámku, která nebude zaslána odběratelům" #. module: mail #. openerp-web @@ -563,18 +593,18 @@ msgstr "" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "" +msgstr "Odběratelé" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds #: model:ir.ui.menu,name:mail.mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "Archivy" #. module: mail #: view:mail.compose.message:0 msgid "Subject..." -msgstr "" +msgstr "Předmět..." #. module: mail #. openerp-web @@ -582,54 +612,54 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:109 #, python-format msgid "Delete this attachment" -msgstr "" +msgstr "Smazat přílohu" #. module: mail #: code:addons/mail/mail_thread.py:112 #, python-format msgid "New" -msgstr "" +msgstr "Nové" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "One follower" -msgstr "" +msgstr "Jeden odběratel" #. module: mail #: field:mail.compose.message,type:0 #: field:mail.message,type:0 msgid "Type" -msgstr "" +msgstr "Druh" #. module: mail #: selection:mail.compose.message,type:0 #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: mail #: field:ir.ui.menu,mail_group_id:0 msgid "Mail Group" -msgstr "" +msgstr "Skupina e-mailů" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Comments and Emails" -msgstr "" +msgstr "Komentáře a e-maily" #. module: mail #: field:mail.alias,alias_defaults:0 msgid "Default Values" -msgstr "" +msgstr "Výchozí hodnoty" #. module: mail #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "" +msgstr "%s se připojil k %s síti." #. module: mail #: help:mail.group,image_small:0 @@ -638,46 +668,49 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Malý obrázek tohoto kontaktu. Je automaticky zmenšen na rozměr 64x64 bodů se " +"zachováním poměru stran. Použijte toto pole kdekoli je požadován malý " +"obrázek." #. module: mail #: view:mail.compose.message:0 #: field:mail.message,partner_ids:0 msgid "Recipients" -msgstr "" +msgstr "Příjemci" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:142 #, python-format msgid "<<<" -msgstr "" +msgstr "<<<" #. module: mail #: field:mail.group,group_public_id:0 msgid "Authorized Group" -msgstr "" +msgstr "Zplnomocněná skupina" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Odebírat skupinu" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "" +msgstr "Odesílatel zprávy, převzatý z uživatelských předvoleb." #. module: mail #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "" +msgstr "
Byli jste pozváni k odběru nového dokumentu.
" #. module: mail #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "" +msgstr "Nadřazená zpráva" #. module: mail #: field:mail.compose.message,res_id:0 @@ -685,7 +718,7 @@ msgstr "" #: field:mail.message,res_id:0 #: field:mail.wizard.invite,res_id:0 msgid "Related Document ID" -msgstr "" +msgstr "Související ID dokumentu" #. module: mail #. openerp-web @@ -696,6 +729,9 @@ msgid "" "You won't be notified of any email or discussion on this document. Do you " "really want to unfollow this document ?" msgstr "" +"Varování! \n" +"Nebudete upozorňováni na e-maily ani diskuze ohledně tohoto dokumentu. " +"Opravdu se chcete odhlásit z odběratelů tohoto dokumentu?" #. module: mail #: model:ir.actions.client,help:mail.action_mail_to_me_feeds @@ -707,45 +743,51 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné osobní zprávy.\n" +"

\n" +" Seznam obsahuje zprávy adresované přímo vám.\n" +"

\n" +" " #. module: mail #: model:mail.group,name:mail.group_rd msgid "R&D" -msgstr "" +msgstr "Oddělení inovací" #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Průvodce pozváním" #. module: mail #: model:ir.model,name:mail.model_mail_thread msgid "Email Thread" -msgstr "" +msgstr "Vlákno e-mailu" #. module: mail #: view:mail.mail:0 msgid "Advanced" -msgstr "" +msgstr "Rošířené" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Přesunout do příchozích zpráv" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:165 #, python-format msgid "Re:" -msgstr "" +msgstr "Re:" #. module: mail #: field:mail.compose.message,to_read:0 #: field:mail.message,to_read:0 msgid "To read" -msgstr "" +msgstr "K přečtení" #. module: mail #: code:addons/mail/res_users.py:69 @@ -754,37 +796,39 @@ msgid "" "You may not create a user. To create new users, you should use the " "\"Settings > Users\" menu." msgstr "" +"Uživatele nemůžete vytvořit. Pro vytvoření nového uživatele byste měli " +"použít menu \"Nastavení > Uživatelé\"." #. module: mail #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "" +msgstr "Model odebíraných zdrojů" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:320 #, python-format msgid "like" -msgstr "" +msgstr "líbí se mi" #. module: mail #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Cancel" -msgstr "" +msgstr "Zrušit" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "Sdílet s odběrateli…" #. module: mail #: field:mail.notification,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Kontakt" #. module: mail #: view:mail.group:0 @@ -792,21 +836,23 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" +"Příspěvky v této skupině mohou číst pouze\n" +" pozvaní odběratelé." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "" +msgstr "ir.ui.menu" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "" +msgstr "S přílohami" #. module: mail #: view:mail.mail:0 msgid "on" -msgstr "" +msgstr "na" #. module: mail #: code:addons/mail/mail_message.py:915 @@ -815,6 +861,8 @@ msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" +"Následující kontakty, vybrané jako příjemci e-mailu, nemají zádnou e-" +"mailovou adresu:" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -822,11 +870,13 @@ msgid "" "A Python dictionary that will be evaluated to provide default values when " "creating new records for this alias." msgstr "" +"Slovník Pythonu, který bude brán jako zdroj výchozích hodnot při vytváření " +"nového záznamu pro tento alias." #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "" +msgstr "Poddruhy zpráv" #. module: mail #. openerp-web @@ -834,14 +884,14 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:57 #, python-format msgid "Log a note" -msgstr "" +msgstr "Přidat poznámku" #. module: mail #: selection:mail.compose.message,type:0 #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Comment" -msgstr "" +msgstr "Komentář" #. module: mail #: model:ir.actions.client,help:mail.action_mail_inbox_feeds @@ -857,23 +907,34 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Výborně! Nemáte žádnou nezpracovanou zprávu v " +"příchozí schránce.\n" +"

\n" +" Vaše příchozí schránka obsahuje Vám adresované zprávy a " +"e-maily\n" +" a také informace týkající se dokumentů, které " +"odebíráte,\n" +" nebo osob, jejichž zprávy odebíráte.\n" +"

\n" +" " #. module: mail #: field:mail.mail,notification:0 msgid "Is Notification" -msgstr "" +msgstr "Je upozornění" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "" +msgstr "Napsat zprávu" #. module: mail #: view:mail.mail:0 msgid "Send Now" -msgstr "" +msgstr "Odeslat nyní" #. module: mail #: code:addons/mail/mail_mail.py:74 @@ -881,6 +942,8 @@ msgstr "" msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" +"E-mail není možno odeslat. Nastavte prosím e-mailovou adresu nebo alias " +"příjemce." #. module: mail #: help:res.users,alias_id:0 @@ -888,11 +951,13 @@ msgid "" "Email address internally associated with this user. Incoming emails will " "appear in the user's notifications." msgstr "" +"E-mailová adresa je interně přiřazena tomuto uživateli. Příchozí e-maily " +"bude vidět ve svých upozorněních." #. module: mail #: field:mail.group,image:0 msgid "Photo" -msgstr "" +msgstr "Foto" #. module: mail #. openerp-web @@ -902,13 +967,13 @@ msgstr "" #: view:mail.wizard.invite:0 #, python-format msgid "or" -msgstr "" +msgstr "nebo" #. module: mail #: help:mail.compose.message,vote_user_ids:0 #: help:mail.message,vote_user_ids:0 msgid "Users that voted for this message" -msgstr "" +msgstr "Uživatelé, kteří hodnotili tuto zprávu" #. module: mail #: help:mail.group,alias_id:0 @@ -916,33 +981,35 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" +"E-mailová adresa přiřazená této skupině. Nové příchozí e-maily automaticky " +"vytvoří nové téma." #. module: mail #: view:mail.mail:0 msgid "Month" -msgstr "" +msgstr "Měsíc" #. module: mail #: view:mail.mail:0 msgid "Email Search" -msgstr "" +msgstr "Hledání e-mailu" #. module: mail #: field:mail.compose.message,child_ids:0 #: field:mail.message,child_ids:0 msgid "Child Messages" -msgstr "" +msgstr "Podřízené zprávy" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Vlastník" #. module: mail #: code:addons/mail/res_partner.py:49 #, python-format msgid "Partner Profile" -msgstr "" +msgstr "Profil kontaktu" #. module: mail #: model:ir.model,name:mail.model_mail_message @@ -951,25 +1018,25 @@ msgstr "" #: field:mail.notification,message_id:0 #: field:mail.wizard.invite,message:0 msgid "Message" -msgstr "" +msgstr "Zpráva" #. module: mail #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "" +msgstr "ID odebíraného zdroje" #. module: mail #: field:mail.compose.message,body:0 #: field:mail.message,body:0 msgid "Contents" -msgstr "" +msgstr "Obsahy" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_alias #: model:ir.ui.menu,name:mail.mail_alias_menu msgid "Aliases" -msgstr "" +msgstr "Aliasy" #. module: mail #: help:mail.message.subtype,description:0 @@ -977,61 +1044,65 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Popis, který bude přidánke zprávě tohoto poddruhu. Je-li prázdné, bude " +"přidáno jméno." #. module: mail #: field:mail.compose.message,vote_user_ids:0 #: field:mail.message,vote_user_ids:0 msgid "Votes" -msgstr "" +msgstr "Ohodnocení" #. module: mail #: view:mail.group:0 msgid "Group" -msgstr "" +msgstr "Skupina" #. module: mail #: help:mail.compose.message,starred:0 #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" msgstr "" +"Aktuální uživatel má v úkolech (označeno hvězdičkou) oznámení související s " +"touto zprávou" #. module: mail #: field:mail.group,public:0 msgid "Privacy" -msgstr "" +msgstr "Podmínky" #. module: mail #: view:mail.mail:0 msgid "Notification" -msgstr "" +msgstr "Upozornění" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail.js:650 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Doplňte prosím informace o kontaktu" #. module: mail #: code:addons/mail/mail_mail.py:187 #, python-format msgid "

Access this document directly in OpenERP

" -msgstr "" +msgstr "

Připojte se k dokumentu přímo v OpenERP

" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Odběratelé vybraných položek a" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "" +msgstr "ID vlákna záznamu" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root msgid "My Groups" -msgstr "" +msgstr "Skupiny" #. module: mail #: model:ir.actions.client,help:mail.action_mail_archives_feeds @@ -1045,35 +1116,45 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné zprávy nebyly dosud ani přijaty ani odeslány.\n" +"

\n" +" Klepnutím na ikonu s obálkou v pravém horním rohu " +"obrazovky\n" +" můžete vytvořit novou zprávu. Půjde-li o interní " +"kontakt,\n" +" zpráva bude odeslána e-mailem.\n" +"

\n" +" " #. module: mail #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: mail #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Outgoing" -msgstr "" +msgstr "Odchozí" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "All feeds" -msgstr "" +msgstr "Všechny zprávy" #. module: mail #: code:addons/mail/mail_thread.py:111 #, python-format msgid "You have one unread message" -msgstr "" +msgstr "Máte jednu nepřečtenou zprávu" #. module: mail #: help:mail.compose.message,record_name:0 #: help:mail.message,record_name:0 msgid "Name get of the related document." -msgstr "" +msgstr "Jméno získané ze souvisejícího dokumentu." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_notifications @@ -1084,12 +1165,12 @@ msgstr "" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "" +msgstr "Upozornění" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "" +msgstr "Hledat alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1098,13 +1179,16 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" +"Volitelné ID vlákna (záznam), ke kterému budou všechny příchozí zprávy " +"připojeny, i když na ně nebylo zodpovězeno. Je-li nastaveno, zcela zakáže " +"vytváření nových záznamů." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:294 #, python-format msgid "show more message" -msgstr "" +msgstr "ukázat více zpráv" #. module: mail #: help:mail.message.subtype,name:0 @@ -1115,158 +1199,165 @@ msgid "" "subtypes allow to precisely tune the notifications the user want to receive " "on its wall." msgstr "" +"Poddruh zpráv ještě více upřesňuje druh zpráv, zejména pro systémová " +"oznámení. Může to být třeba oznámení při vytvoření nového záznamu (New) nebo " +"při změně fáze určitého procesu (Stage change). Poddruh zpráv umožňuje " +"přesně doladit oznámení, která si přeje uživatel zobrazovat na své zdi." #. module: mail #: view:mail.mail:0 msgid "by" -msgstr "" +msgstr "od" #. module: mail #: model:mail.group,name:mail.group_best_sales_practices msgid "Best Sales Practices" -msgstr "" +msgstr "Nejlepší obchodní postupy" #. module: mail #: selection:mail.group,public:0 msgid "Selected Group Only" -msgstr "" +msgstr "Pouze vybraná skupina" #. module: mail #: field:mail.group,message_is_follower:0 #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je odběratel" #. module: mail #: view:mail.alias:0 #: view:mail.mail:0 msgid "User" -msgstr "" +msgstr "Uživatel" #. module: mail #: view:mail.group:0 msgid "Groups" -msgstr "" +msgstr "Skupiny odběrů" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "" +msgstr "Hledání zpráv" #. module: mail #: field:mail.compose.message,date:0 #: field:mail.message,date:0 msgid "Date" -msgstr "" +msgstr "Datum" #. module: mail #: view:mail.mail:0 msgid "Extended Filters..." -msgstr "" +msgstr "Rozšířené filtry…" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:278 #, python-format msgid "more" -msgstr "" +msgstr "více" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:122 #, python-format msgid "To:" -msgstr "" +msgstr "Pro:" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "" +msgstr "Napsat odběratelům" #. module: mail #: model:ir.model,name:mail.model_res_groups msgid "Access Groups" -msgstr "" +msgstr "Skupiny přístupů" #. module: mail #: field:mail.message.subtype,default:0 msgid "Default" -msgstr "" +msgstr "Výchozí" #. module: mail #: model:ir.model,name:mail.model_res_users msgid "Users" -msgstr "" +msgstr "Uživatelé" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:246 #, python-format msgid "Mark as Todo" -msgstr "" +msgstr "Označit jako 'úkol'" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Nadřazený poddruh používaný pro automatické přihlašování k odběru." #. module: mail #: field:mail.group,message_summary:0 #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Shrnutí" #. module: mail #: help:mail.message.subtype,res_model:0 msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Model, pro který se poddruh používá. Je-li chybný, poddruh se použije pro " +"všechny modely." #. module: mail #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Add contacts to notify..." -msgstr "" +msgstr "Přidat kontakt pro upozornění..." #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Formulář" #. module: mail #: field:mail.compose.message,starred:0 #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Označeno hvězdičkou" #. module: mail #: field:mail.group,menu_id:0 msgid "Related Menu" -msgstr "" +msgstr "Související menu" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error" -msgstr "" +msgstr "Chyba" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Odběr zpráv" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" +"Tento alias e-mailu je již použit, zvolte prosím jiný jedinečný alias" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1276,25 +1367,29 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" +"Vlastník záznamů vytvářených z příchozích e-mailů tohoto aliasu. Není-li " +"toto pole nastaveno, pokusí se systém nalézt správného vlastníka na základě " +"adresy odesílateke (From) nebo použije účet správce (nenalezne-li žádného " +"uživatele s touto adresou)." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "a" #. module: mail #: code:addons/mail/mail_thread.py:111 #, python-format msgid "You have %d unread messages" -msgstr "" +msgstr "Máte %d nepřečtených zpráv" #. module: mail #: field:mail.compose.message,message_id:0 #: field:mail.message,message_id:0 msgid "Message-Id" -msgstr "" +msgstr "ID zprávy" #. module: mail #: help:mail.group,image:0 @@ -1302,34 +1397,36 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" +"Pole obsahuje obrázek používaný jako fotografie skupiny, maximálně 1024x1024 " +"bodů." #. module: mail #: field:mail.compose.message,attachment_ids:0 #: view:mail.mail:0 #: field:mail.message,attachment_ids:0 msgid "Attachments" -msgstr "" +msgstr "Přílohy" #. module: mail #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "" +msgstr "Název záznamu zprávy" #. module: mail #: field:mail.mail,email_cc:0 msgid "Cc" -msgstr "" +msgstr "Kopie" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "" +msgstr "Zprávy označené hvězdičkou se přesunou do schránky 'Úkoly'." #. module: mail #: view:mail.mail:0 msgid "Cancel Email" -msgstr "" +msgstr "Zrušit e-mail" #. module: mail #. openerp-web @@ -1337,41 +1434,41 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "" +msgstr "Odběratelé" #. module: mail #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" -msgstr "" +msgstr "Pro úsporu místa trvale odstraní e-mail po jeho odeslání." #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "" +msgstr "Diskuzní skupina" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:242 #, python-format msgid "Done" -msgstr "" +msgstr "Hotovo" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "" +msgstr "Diskuze" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "" +msgstr "Odebírat" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Celá firma" #. module: mail #. openerp-web @@ -1380,24 +1477,24 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "" +msgstr "a" #. module: mail #: help:mail.mail,body_html:0 msgid "Rich-text/HTML message" -msgstr "" +msgstr "Rich-text/HTML zpráva" #. module: mail #: view:mail.mail:0 msgid "Creation Month" -msgstr "" +msgstr "Měsíc vytvoření" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:306 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Napsat zprávu" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 @@ -1405,16 +1502,18 @@ msgstr "" msgid "" "Partners that have a notification pushing this message in their mailboxes" msgstr "" +"Kontakty, které mají potlačeno oznámenío zprávvě ve svých poštovních " +"schránkách" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "" +msgstr "Obsah" #. module: mail #: field:mail.mail,email_to:0 msgid "To" -msgstr "" +msgstr "Pro" #. module: mail #. openerp-web @@ -1422,13 +1521,13 @@ msgstr "" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "" +msgstr "Odpovědět" #. module: mail #: field:mail.compose.message,notified_partner_ids:0 #: field:mail.message,notified_partner_ids:0 msgid "Notified partners" -msgstr "" +msgstr "Upozorněné kontakty" #. module: mail #: help:mail.group,public:0 @@ -1436,85 +1535,88 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Skupina je přístupná pro ty, co nejsou členy. Do neviditelných " +"skupin mohou být členové přidáni pomocí zvacího tlačítka." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Schůze vedení" #. module: mail #: field:mail.alias,alias_model_id:0 msgid "Aliased Model" -msgstr "" +msgstr "Model s aliasem" #. module: mail #: help:mail.compose.message,message_id:0 #: help:mail.message,message_id:0 msgid "Message unique identifier" -msgstr "" +msgstr "Jedinečný identifikátor zprávy" #. module: mail #: field:mail.group,description:0 #: field:mail.message.subtype,description:0 msgid "Description" -msgstr "" +msgstr "Popis" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "" +msgstr "Odběratelé dokumentu" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Odstranit odběratele" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Nikdy" #. module: mail #: field:mail.mail,mail_server_id:0 msgid "Outgoing mail server" -msgstr "" +msgstr "Server odchozí pošty" #. module: mail #: code:addons/mail/mail_message.py:919 #, python-format msgid "Partners email addresses not found" -msgstr "" +msgstr "E-mailová adresa kontaktu nebyla nalezena" #. module: mail #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Sent" -msgstr "" +msgstr "Odeslané" #. module: mail #: field:mail.mail,body_html:0 msgid "Rich-text Contents" -msgstr "" +msgstr "Rich-text obsah" #. module: mail #: help:mail.compose.message,to_read:0 #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" -msgstr "" +msgstr "Aktuální uživatel má nepřečtené oznámení související s touto zprávou" #. module: mail #: help:res.partner,notification_email_send:0 msgid "" "Choose in which case you want to receive an email when you receive new feeds." msgstr "" +"Zvolte si, kdy budete chtít dostávat e-maily při obdržení nových zpráv." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "Připojení ke skupinám" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1524,13 +1626,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné zprávy nyní nejsou v této skupině.\n" +"

\n" +" " #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:213 #, python-format msgid "Please, wait while the file is uploading." -msgstr "" +msgstr "Čekejte prosím, až se soubor nahraje." #. module: mail #: view:mail.group:0 @@ -1540,33 +1646,36 @@ msgid "" "installed\n" " the portal module." msgstr "" +"Skupina je přístupná pro všechny,\n" +" včetně zákazníků, je-li nainstalován\n" +" modul Portál." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:243 #, python-format msgid "Set back to Todo" -msgstr "" +msgstr "Dát zpět do úkolů" #. module: mail #: view:mail.group:0 msgid "Send a message to the group" -msgstr "" +msgstr "Odeslat zprávu skupině" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Jméno" #. module: mail #: view:mail.group:0 msgid "Topics discussed in this group..." -msgstr "" +msgstr "Témata diskutovaná v této skupině..." #. module: mail #: field:res.partner,notification_email_send:0 msgid "Receive Feeds by Email" -msgstr "" +msgstr "Dostávat zprávy e-mailem" #. module: mail #: help:base.config.settings,alias_domain:0 @@ -1574,6 +1683,8 @@ msgid "" "If you have setup a catch-all email domain redirected to the OpenERP server, " "enter the domain name here." msgstr "" +"Zadejte název domény, chcete-li nastavit zachytávání celé e-mailové domény " +"přesměrované na OpenERP server." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_message @@ -1583,20 +1694,20 @@ msgstr "" #: field:mail.thread,message_ids:0 #: field:res.partner,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Zprávy" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:141 #, python-format msgid "others..." -msgstr "" +msgstr "jiné…" #. module: mail #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Úkoly" #. module: mail #: view:mail.alias:0 @@ -1604,12 +1715,12 @@ msgstr "" #: field:mail.group,alias_id:0 #: field:res.users,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alias" #. module: mail #: model:ir.model,name:mail.model_mail_mail msgid "Outgoing Mails" -msgstr "" +msgstr "Odchozí e-maily" #. module: mail #: help:mail.compose.message,notification_ids:0 @@ -1618,25 +1729,27 @@ msgid "" "Technical field holding the message notifications. Use notified_partner_ids " "to access notified partners." msgstr "" +"Technické pole obsahující upozornění na zprávu. Pro přístup upozorněných " +"kontaktů používá notified_partner_ids." #. module: mail #: model:ir.ui.menu,name:mail.mail_feeds #: model:ir.ui.menu,name:mail.mail_feeds_main msgid "Messaging" -msgstr "" +msgstr "Zprávy" #. module: mail #: view:mail.alias:0 #: field:mail.message.subtype,res_model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:206 #, python-format msgid "No messages." -msgstr "" +msgstr "Žádné zprávy." #. module: mail #: help:mail.followers,subtype_ids:0 @@ -1644,23 +1757,25 @@ msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." msgstr "" +"Odebírané poddruhy zpráv, tedy podtypy, které se budou zobrazovat uživatelům " +"na zdi." #. module: mail #: help:mail.group,message_ids:0 #: help:mail.thread,message_ids:0 #: help:res.partner,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Historie zpráv a komunikace" #. module: mail #: help:mail.mail,references:0 msgid "Message references, such as identifiers of previous messages" -msgstr "" +msgstr "Odkazy zpráv, jako identifikátory předchozích zpráv" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Režim psaní" #. module: mail #: field:mail.compose.message,model:0 @@ -1668,40 +1783,40 @@ msgstr "" #: field:mail.message,model:0 #: field:mail.wizard.invite,res_model:0 msgid "Related Document Model" -msgstr "" +msgstr "Související model dokumentu" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:321 #, python-format msgid "unlike" -msgstr "" +msgstr "už se mi nelíbí" #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "" +msgstr "Diskuzní skupina" #. module: mail #: help:mail.mail,email_cc:0 msgid "Carbon copy message recipients" -msgstr "" +msgstr "Příjemci kopie zprávy" #. module: mail #: field:mail.alias,alias_domain:0 msgid "Alias domain" -msgstr "" +msgstr "Alias domény" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "" +msgstr "Chyba v púrůběhu komunikace s 'publisher waranty' serverem." #. module: mail #: selection:mail.group,public:0 msgid "Private" -msgstr "" +msgstr "Osobní" #. module: mail #: model:ir.actions.client,help:mail.action_mail_star_feeds @@ -1716,22 +1831,31 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné úkoly.\n" +"

\n" +" Když procházíte příchozí poštu, můžete některé zprávy " +"označit\n" +" jako úkol. Z tohoto menu pak můžete zpracovávat " +"vaše úkoly.\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 msgid "Delivery Failed" -msgstr "" +msgstr "Doručení se nezdařilo" #. module: mail #: field:mail.compose.message,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "Další kontakty" #. module: mail #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "" +msgstr "Počáteční zpráva vlákna." #. module: mail #: model:mail.group,name:mail.group_hr_policies @@ -1741,43 +1865,43 @@ msgstr "" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Emails only" -msgstr "" +msgstr "Pouze e-maily" #. module: mail #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "Příchozí zprávy" #. module: mail #: field:mail.compose.message,filter_id:0 msgid "Filters" -msgstr "" +msgstr "Filtry" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "" +msgstr "Doplňte prosím informace o kontaktu a e-mail" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype #: model:ir.ui.menu,name:mail.menu_message_subtype msgid "Subtypes" -msgstr "" +msgstr "Poddruhy" #. module: mail #: model:ir.model,name:mail.model_mail_alias msgid "Email Aliases" -msgstr "" +msgstr "Aliasy e-mailu" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Malý obrázek" #. module: mail #: help:mail.mail,reply_to:0 msgid "Preferred response address for the message" -msgstr "" +msgstr "Upřednostňovaná zpětná adresa pro zprávy" diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index e34969e9929..4a98108a16f 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/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-03-21 15:53+0000\n" -"Last-Translator: Ediz Duman \n" +"PO-Revision-Date: 2013-03-26 22:07+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-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" +"X-Generator: Launchpad (build 16540)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -994,6 +994,8 @@ msgid "" "This field is for internal purpose. It is used to decide if the column " "production lot has to be shown on the moves or not." msgstr "" +"Bu alan iç amaçlıdır. Üretim partisi sütununun hareketlerde görünüp " +"görünmeyeceğine karar vermek için kullanılır." #. module: stock #: selection:product.product,valuation:0 @@ -1028,6 +1030,8 @@ msgid "" "You cannot cancel the picking as some moves have been done. You should " "cancel the picking lines." msgstr "" +"Bazı hareketler yapılmış olduğu için toplamayı iptal edemezsiniz. Toplama " +"kalemlerini iptal edebilirsiniz." #. module: stock #: field:stock.config.settings,decimal_precision:0 @@ -1206,6 +1210,8 @@ msgid "" "No products to return (only lines in Done state and not fully returned yet " "can be returned)!" msgstr "" +"İade edilecek ürün yok (yalnızca Yapıldı durumundaki ve henüz tam olarak " +"iade edilmemiş kalemler iade edilebilir)!" #. module: stock #: view:stock.picking:0 @@ -1326,6 +1332,7 @@ msgstr "Yazar" msgid "" "You are moving %.2f %s but only %.2f %s available for this serial number." msgstr "" +"Taşıdığınız %.2f %s ama bu seri numarası için yalnızca %.2f %s mevcuttur." #. module: stock #: report:stock.picking.list:0 @@ -1382,6 +1389,8 @@ msgid "" "Allows you to create and manage your packaging dimensions and types you want " "to be maintained in your system." msgstr "" +"Sistemde muhafaza etmek istediğiniz ambalaj boyutları ve türleri " +"oluşturmanızı ve yönetmenizi sağlar." #. module: stock #: selection:report.stock.inventory,month:0 @@ -1429,6 +1438,14 @@ msgid "" "* Available: When products are reserved, it is set to 'Available'.\n" "* Done: When the shipment is processed, the state is 'Done'." msgstr "" +"* Yeni: Stok hareketi oluşturulmuş ancak henüz onaylanmamış.\n" +"* Başka bir hareket bekliyor: Bu durum bir hareketin başka bir hareketi " +"beklediğinde görülür, örneğin bir zincirli akışta.\n" +"* Uygunluk Bekliyor: Bu duruma, tedarik çözümünün doğru olmadığı zaman " +"erişilir. Planlayıcının çalıştırılması, bir parçanın üretilmesi " +"gerekebilir...\n" +"* Uygun: Ürünler ayrıldığında, 'Uygun'a ayarlanır.\n" +"* Yapıldı: Sevkiyat yapıldığında durum 'Yapıldı' olur." #. module: stock #: model:stock.location,name:stock.stock_location_locations_partner @@ -1486,6 +1503,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir günlük oluşturmak için tıklayın. \n" +"

\n" +" Stok günlük sistemi her stok hareketini, yürütülecek \n" +" işlemin ya da bu işlemi yürütecek işçi/takım türüne \n" +" göre belirli bir günlüğe atar. Stok günlüğü örnekleri \n" +" şunlar olabilir: kalite kontrol, toplama listeleri,\n" +" paketleme, vb..\n" +"\n" +" The stock journal system allows you to assign each stock\n" +" operation to a specific journal according to the type of\n" +" operation to perform or the worker/team that should perform " +"the\n" +" operation. Examples of stock journals may be: quality " +"control,\n" +" pick lists, packing, etc.\n" +"

\n" +" " #. module: stock #: help:stock.location,chained_auto_packing:0 @@ -1526,7 +1561,7 @@ msgstr "Başka bir Hareket Bekliyor" #: help:stock.change.product.qty,new_quantity:0 msgid "" "This quantity is expressed in the Default Unit of Measure of the product." -msgstr "" +msgstr "Bu miktar, ürünün Varsayılan Ölçü Biriminde tanımlanır." #. module: stock #: help:stock.move,price_unit:0 @@ -1570,7 +1605,7 @@ msgstr "Sadece taslak hareketlerini silebilirsiniz." #: code:addons/stock/stock.py:1665 #, python-format msgid "You cannot move product %s to a location of type view %s." -msgstr "" +msgstr "Bu %s ürününü %s görünüm türlü bir konuma taşıyamazsınız." #. module: stock #: view:stock.inventory:0 @@ -1926,6 +1961,8 @@ msgid "" "Check this option to select existing serial numbers in the list below, " "otherwise you should enter new ones line by line." msgstr "" +"Bu seçeneği, aşağıdaki listede mevcut seri numaralarını seçmek için " +"işaretleyin, aksi durumda satır satır yenilerini girmek zorunda kalırsınız." #. module: stock #: selection:report.stock.move,type:0 @@ -1959,6 +1996,8 @@ msgid "" "This stock location will be used, instead of the default one, as the source " "location for stock moves generated by manufacturing orders." msgstr "" +"Bu stok konumu varsayılanın yerine üretim emriyle oluşturulan stok " +"hareketlerinin kaynak konumu olarak kullanılacaktır." #. module: stock #: help:stock.move,date_expected:0 @@ -2021,6 +2060,8 @@ msgid "" "This stock location will be used, instead of the default one, as the source " "location for stock moves generated when you do an inventory." msgstr "" +"Bu stok konumu varsayılanın yerine envanter işlemi yaparken oluşturulan stok " +"hareketlerinin kaynak konumu olarak kullanılacaktır." #. module: stock #: help:product.template,property_stock_account_output:0 @@ -2244,7 +2285,7 @@ msgstr "" #: sql_constraint:stock.production.lot:0 msgid "" "The combination of Serial Number and internal reference must be unique !" -msgstr "" +msgstr "Seri Numarası ve iç referans kombinasyonu eşsiz olmalıdır !" #. module: stock #: field:stock.warehouse,partner_id:0 @@ -2265,7 +2306,7 @@ msgstr "" #. module: stock #: constraint:stock.move:0 msgid "You try to assign a lot which is not from the same product." -msgstr "" +msgstr "Aynı üründen olmayan bir partiyi atamaya çalışıyorsunuz." #. module: stock #: field:report.stock.move,day_diff1:0 @@ -2280,7 +2321,7 @@ msgstr "Fiyat" #. module: stock #: field:stock.config.settings,module_stock_invoice_directly:0 msgid "Create and open the invoice when the user finish a delivery order" -msgstr "" +msgstr "Kullanıcı bir teslimat emrini tamamladığında fatura oluştur ve aç" #. module: stock #: model:ir.model,name:stock.model_stock_return_picking_memory @@ -2318,6 +2359,8 @@ msgid "" "Forces to specify a Serial Number for all moves containing this product and " "generated by a Manufacturing Order" msgstr "" +"Bu ürünü ve bir Üretim Emriyle oluşturulan tüm hareketler için Seri Numarası " +"belirlemeye zorlar" #. module: stock #: model:ir.model,name:stock.model_stock_fill_inventory @@ -2501,6 +2544,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Bir stok hareketi oluşturmak için tıklayın.\n" +"

\n" +" Bu menü, belirli bir ürünün tam izlenebilirliğini ve\n" +" envanter işlemlerini verir. Üründe süzgeçleme yaparak\n" +" ürünün tüm geçmiş ve gelecek hareketlerini görebilirisiniz.\n" +"

\n" +" " #. module: stock #: view:stock.location:0 @@ -2546,7 +2597,7 @@ msgstr "Okunmamış Mesajlar" msgid "" "Current quantity of products with this Serial Number available in company " "warehouses" -msgstr "" +msgstr "Şirket deposundaki bu seri numaralı mevcut ürünün geçerli miktarı" #. module: stock #: view:stock.inventory:0 @@ -2665,6 +2716,8 @@ msgid "" "Cannot create Journal Entry, Output Account of this product and Valuation " "account on category of this product are same." msgstr "" +"Günlük Kaydı oluşturulamıyor, Bu ürünün Çıkış Hesabı ve bu ürünün " +"kategorisindeki Değerleme hesabı aynıdır." #. module: stock #: selection:stock.location,chained_location_type:0 @@ -2729,7 +2782,7 @@ msgstr "Kâr&Zarar Miktarı" #. module: stock #: model:ir.model,name:stock.model_stock_config_settings msgid "stock.config.settings" -msgstr "" +msgstr "stock.config.settings" #. module: stock #: view:stock.production.lot:0 @@ -2786,7 +2839,7 @@ msgstr "Oluştur" #. module: stock #: field:stock.change.product.qty,new_quantity:0 msgid "New Quantity on Hand" -msgstr "" +msgstr "Eldeki Yeni Miktar" #. module: stock #: field:stock.move,priority:0 @@ -2836,7 +2889,7 @@ msgstr "Envanter İptali" #. module: stock #: view:stock.move:0 msgid "Cancel Move" -msgstr "" +msgstr "Hareketi İptal et" #. module: stock #: code:addons/stock/stock.py:2246 @@ -2845,6 +2898,8 @@ msgid "" "Cannot create Journal Entry, Input Account of this product and Valuation " "account on category of this product are same." msgstr "" +"Günlük Kaydı oluşturulamıyor, Bu ürünün Giriş Hesabı ve bu ürünün " +"kategorisindeki Değerleme hesabı aynıdır." #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_unit_measure_stock @@ -2869,6 +2924,8 @@ msgid "" "By changing the quantity here, you accept the new quantity as complete: " "OpenERP will not automatically generate a Back Order." msgstr "" +"Burada miktarı değiştirerek, yeni miktarı tam olarak kabul ediyorsunuz: " +"OpenERP kendiliğinden bir Sipariş Bakiyesi oluşturmayacaktır." #. module: stock #: report:stock.inventory.move:0 @@ -2888,7 +2945,7 @@ msgstr "Seri numarası ile Stok raporu" #. module: stock #: view:stock.picking:0 msgid "Cancel Transfer" -msgstr "" +msgstr "Aktarmayı iptal et" #. module: stock #: selection:report.stock.inventory,month:0 @@ -2931,6 +2988,13 @@ msgid "" " - alert date.\n" "This installs the module product_expiry." msgstr "" +"Ürünlerde ve seri numaralarında farklı tarihleri izleyin.\n" +"Aşağıdaki tarihler izlenebilir:\n" +" - kullanım süresi sonu\n" +" - son kullanım tarihi\n" +" - kaldırılma tarihi\n" +" - uyarı tarihi.\n" +"Bu, product_expiry modülünü kurar." #. module: stock #: code:addons/stock/wizard/stock_partial_picking.py:174 @@ -3034,7 +3098,7 @@ msgstr "Tamamlama Tarihi" #: code:addons/stock/stock.py:1663 #, python-format msgid "You cannot move product %s from a location of type view %s." -msgstr "" +msgstr "Bu %s ürününü %s görünüm türündeki konumdan taşıyamazsınız." #. module: stock #: model:stock.location,name:stock.stock_location_company @@ -3509,7 +3573,7 @@ msgstr "Stok hareketleri olmadan seçim listesi işleyemiyor." #. module: stock #: field:stock.production.lot,move_ids:0 msgid "Moves for this serial number" -msgstr "" +msgstr "Bu seri numarasındaki hareketler" #. module: stock #: field:stock.move,product_uos:0 @@ -3930,6 +3994,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir depo tanımlamak için tıklayın.\n" +"

\n" +" " #. module: stock #: selection:report.stock.inventory,state:0 @@ -3971,7 +4039,7 @@ msgstr "" #. module: stock #: model:stock.location,name:stock.stock_location_shop0 msgid "Your Company, Chicago shop" -msgstr "" +msgstr "Firmanızi Chicago mağazası" #. module: stock #: selection:report.stock.move,type:0 @@ -4014,6 +4082,8 @@ msgid "" "By changing this quantity here, you accept the new quantity as complete: " "OpenERP will not automatically generate a back order." msgstr "" +"Burada miktarı değiştirerek, yeni miktarı tam olarak kebul ediyorsunuz: " +"OpenERP kendiliğinden bir Sipariş Bakiyesi oluşturmayacaktır." #. module: stock #: view:stock.production.lot.revision:0 @@ -4085,7 +4155,7 @@ msgstr "Takipçiler" #: code:addons/stock/stock.py:2585 #, python-format msgid "Cannot consume a move with negative or zero quantity." -msgstr "" +msgstr "Eksi ya da sıfır miktarlı bir hareket kullanılamıyor." #. module: stock #: help:stock.config.settings,decimal_precision:0 @@ -4174,6 +4244,10 @@ msgid "" " to be invoiced when you send or deliver goods.\n" " This installs the module stock_invoice_directly." msgstr "" +"Malları gönderirken ya da teslim ettiğinizde faturalanması gerekirse, " +"fatura\n" +" sihirbazı kendiliğinden çalıştırır.\n" +" Bu stock_invoice_directly modülünü kurar." #. module: stock #: field:stock.location,chained_journal_id:0 @@ -4291,13 +4365,13 @@ msgstr "" #. module: stock #: help:stock.production.lot,name:0 msgid "Unique Serial Number, will be displayed as: PREFIX/SERIAL [INT_REF]" -msgstr "" +msgstr "Eşsiz Seri Numarası böyle gösterilecektir: ÖNEK/SERİ [INT_REF]" #. module: stock #: code:addons/stock/product.py:142 #, python-format msgid "Please define stock input account for this product: \"%s\" (id: %d)." -msgstr "" +msgstr "Bu ürün için lütfen stok giriş hesabı tanımlayın: \"%s\" (id: %d)." #. module: stock #: model:ir.actions.act_window,name:stock.action_reception_picking_move @@ -4347,7 +4421,7 @@ msgstr "Bilgisi" #: code:addons/stock/stock.py:1199 #, python-format msgid "You cannot remove the picking which is in %s state!" -msgstr "" +msgstr "Bu %s durumundaki toplamayı kaldıramazsınız!" #. module: stock #: help:res.partner,property_stock_customer:0 @@ -4471,12 +4545,14 @@ msgid "" "Adds a Claim link to the delivery order.\n" " This installs the module claim_from_delivery." msgstr "" +"Teslimat emrine bir Şikayet ekler.\n" +" Bu, claim_from_delivery modülünü kurar." #. module: stock #: code:addons/stock/wizard/stock_return_picking.py:208 #, python-format msgid "Please specify at least one non-zero quantity." -msgstr "" +msgstr "Lütfencsıfır olmayan enaz bir miktar girin." #. module: stock #: field:stock.fill.inventory,set_stock_zero:0 From 6a8da249e642514b25aab41e083989b22243d354 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Wed, 27 Mar 2013 10:40:17 +0100 Subject: [PATCH 13/35] [FIX] Chatter: when displaying a message title without subject, do not finish by a ':'. bzr revid: tde@openerp.com-20130327094017-a77mdmkmo919yr08 --- addons/mail/static/src/xml/mail.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/addons/mail/static/src/xml/mail.xml b/addons/mail/static/src/xml/mail.xml index b26ef06f5e4..2b3e0129959 100644 --- a/addons/mail/static/src/xml/mail.xml +++ b/addons/mail/static/src/xml/mail.xml @@ -246,7 +246,11 @@

- : + + + + + :

From 6b893e4a1a589ae98f28ac0c0aa16a06b3a982aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Wed, 27 Mar 2013 10:58:22 +0100 Subject: [PATCH 14/35] [FIX] mail_group: fixed client action, no more Unread messages, send or log -> composition box with a correct message. bzr revid: tde@openerp.com-20130327095822-m3m2jiwpsa6y5qvi --- addons/mail/mail_group.py | 16 ++++++++++++---- addons/mail/mail_group_view.xml | 1 - 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/addons/mail/mail_group.py b/addons/mail/mail_group.py index 24aed942b1b..f8873ab90c5 100644 --- a/addons/mail/mail_group.py +++ b/addons/mail/mail_group.py @@ -133,7 +133,7 @@ class mail_group(osv.Model): menu_id = mobj.create(cr, SUPERUSER_ID, {'name': vals['name'], 'parent_id': menu_parent}, context=context) vals['menu_id'] = menu_id - # Create group and alias + # Create group and alias, without creation note mail_group_id = super(mail_group, self).create(cr, uid, vals, context=context) mail_alias.write(cr, uid, [vals['alias_id']], {"alias_force_thread_id": mail_group_id}, context) group = self.browse(cr, uid, mail_group_id, context=context) @@ -144,11 +144,19 @@ class mail_group(osv.Model): search_ref = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'mail', 'view_message_search') params = { 'search_view_id': search_ref and search_ref[1] or False, - 'domain': [('model', '=', 'mail.group'), ('res_id', '=', mail_group_id)], - 'context': {'default_model': 'mail.group', 'default_res_id': mail_group_id, 'search_default_message_unread': True}, + 'domain': [ + ('model', '=', 'mail.group'), + ('res_id', '=', mail_group_id), + ], + 'context': { + 'default_model': 'mail.group', + 'default_res_id': mail_group_id, + }, 'res_model': 'mail.message', 'thread_level': 1, - 'header_description': self._generate_header_description(cr, uid, group, context=context) + 'header_description': self._generate_header_description(cr, uid, group, context=context), + 'view_mailbox': True, + 'compose_placeholder': 'Send a message to the group', } cobj = self.pool.get('ir.actions.client') newref = cobj.copy(cr, SUPERUSER_ID, ref[1], default={'params': str(params), 'name': vals['name']}, context=context) diff --git a/addons/mail/mail_group_view.xml b/addons/mail/mail_group_view.xml index 77c0b8f6c86..5ccee40d5c7 100644 --- a/addons/mail/mail_group_view.xml +++ b/addons/mail/mail_group_view.xml @@ -7,7 +7,6 @@ mail.wall mail.message { - 'search_default_message_unread': True } { 'read_action': 'read' From 305615c40f5bb71a0adc297ad5a147a401625bc7 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Wed, 27 Mar 2013 11:21:19 +0100 Subject: [PATCH 15/35] [FIX] document: make Documents first submenu, so FTP wizard does not open every time when document_ftp is installed bzr revid: odo@openerp.com-20130327102119-aytyslv2yg05k8j3 --- addons/document/document_view.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/document/document_view.xml b/addons/document/document_view.xml index 68f294b251c..c3bd5ad3f56 100644 --- a/addons/document/document_view.xml +++ b/addons/document/document_view.xml @@ -258,7 +258,9 @@ name="Documents" action="action_document_file_form" id="menu_document_files" - parent="menu_document_doc"/> + parent="menu_document_doc" + sequence="0" + /> ir.actions.act_window From 1f2518a64f3fe064b0fa6c1d4986a18597d09915 Mon Sep 17 00:00:00 2001 From: Christophe Matthieu Date: Wed, 27 Mar 2013 11:33:50 +0100 Subject: [PATCH 16/35] [FIX] mail_followers: ellipsis for long name, esc name to display bzr revid: chm@openerp.com-20130327103350-wdpigtwvtwm92ov1 --- addons/mail/static/src/css/mail.css | 2 ++ addons/mail/static/src/xml/mail_followers.xml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/mail/static/src/css/mail.css b/addons/mail/static/src/css/mail.css index 1e1142d592c..77dfb806f77 100644 --- a/addons/mail/static/src/css/mail.css +++ b/addons/mail/static/src/css/mail.css @@ -621,6 +621,8 @@ height: 32px; overflow: hidden; white-space: nowrap; + text-overflow: ellipsis; + margin-right: 10px; } .openerp .oe_followers .oe_partner img{ width: 32px; diff --git a/addons/mail/static/src/xml/mail_followers.xml b/addons/mail/static/src/xml/mail_followers.xml index 459f13155a0..48f302b014b 100644 --- a/addons/mail/static/src/xml/mail_followers.xml +++ b/addons/mail/static/src/xml/mail_followers.xml @@ -31,7 +31,7 @@ -->
- + X
From 5472b929e455afc21122e4e695bbf0e20bad1e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20van=20der=20Essen?= Date: Wed, 27 Mar 2013 11:45:51 +0100 Subject: [PATCH 17/35] [FIX] point_of_sale: clicking on the connection status should force sync bzr revid: fva@openerp.com-20130327104551-484p011pjqrmbtm8 --- addons/point_of_sale/static/src/js/widgets.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/point_of_sale/static/src/js/widgets.js b/addons/point_of_sale/static/src/js/widgets.js index 874c387ea23..cfc0dfc9b24 100644 --- a/addons/point_of_sale/static/src/js/widgets.js +++ b/addons/point_of_sale/static/src/js/widgets.js @@ -794,7 +794,7 @@ function openerp_pos_widgets(instance, module){ //module is instance.point_of_sa renderElement: function() { var self = this; this._super(); - this.$('.oe_pos_synch-notification-button').click(function(){ + this.$el.click(function(){ self.pos.flush(); }); }, From fd84a4dec44f46da0d4b786be041087196e0df2e Mon Sep 17 00:00:00 2001 From: Chris Biersbach Date: Wed, 27 Mar 2013 12:25:17 +0100 Subject: [PATCH 18/35] [FIX] the functionality to save the original mail fetched by the fetchmail module now correctly works bzr revid: cbi@openerp.com-20130327112517-evcxdkedguka6y8a --- addons/mail/mail_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index fb13ca2034d..5bdd7b93870 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -828,7 +828,7 @@ class mail_thread(osv.AbstractModel): if parent_ids: msg_dict['parent_id'] = parent_ids[0] - msg_dict['body'], msg_dict['attachments'] = self._message_extract_payload(message) + msg_dict['body'], msg_dict['attachments'] = self._message_extract_payload(message, save_original=save_original) return msg_dict #------------------------------------------------------ From 72dbae9ddf70a71a3079df1dc9a273c448d51655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20van=20der=20Essen?= Date: Wed, 27 Mar 2013 13:55:41 +0100 Subject: [PATCH 19/35] [FIX] point_of_sale: prevent from spinner to appear when we have a rpc timeout, and try to flush saved orders after loading bzr revid: fva@openerp.com-20130327125541-pbqkn764h6fngf33 --- addons/point_of_sale/static/src/js/models.js | 3 ++- addons/point_of_sale/static/src/js/widgets.js | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/addons/point_of_sale/static/src/js/models.js b/addons/point_of_sale/static/src/js/models.js index d2cf15b54f3..660434ba53e 100644 --- a/addons/point_of_sale/static/src/js/models.js +++ b/addons/point_of_sale/static/src/js/models.js @@ -295,7 +295,8 @@ function openerp_pos_models(instance, module){ //module is instance.point_of_sal return; } //try to push an order to the server - (new instance.web.Model('pos.order')).get_func('create_from_ui')([order]) + // shadow : true is to prevent a spinner to appear in case of timeout + (new instance.web.Model('pos.order')).call('create_from_ui',[[order]],undefined,{ shadow:true }) .fail(function(unused, event){ //don't show error popup if it fails event.preventDefault(); diff --git a/addons/point_of_sale/static/src/js/widgets.js b/addons/point_of_sale/static/src/js/widgets.js index cfc0dfc9b24..cec48dbe72f 100644 --- a/addons/point_of_sale/static/src/js/widgets.js +++ b/addons/point_of_sale/static/src/js/widgets.js @@ -879,6 +879,8 @@ function openerp_pos_widgets(instance, module){ //module is instance.point_of_sa instance.web.unblockUI(); self.$('.loader').animate({opacity:0},1500,'swing',function(){self.$('.loader').hide();}); + self.pos.flush(); + }).fail(function(){ // error when loading models data from the backend instance.web.unblockUI(); return new instance.web.Model("ir.model.data").get_func("search_read")([['name', '=', 'action_pos_session_opening']], ['res_id']) From f01f6e072c9fc169f82fd2fd4ee4f59c1cc22763 Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Wed, 27 Mar 2013 11:15:49 +0100 Subject: [PATCH 20/35] [FIX] hr_expense: raised errors when an account is missing for the accounting entries generation bzr revid: qdp-launchpad@openerp.com-20130327101549-jefamzxljupbrte9 --- addons/hr_expense/hr_expense.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/addons/hr_expense/hr_expense.py b/addons/hr_expense/hr_expense.py index cf6f14b2fc0..0c3421ddd72 100644 --- a/addons/hr_expense/hr_expense.py +++ b/addons/hr_expense/hr_expense.py @@ -231,6 +231,8 @@ class hr_expense_expense(osv.osv): for exp in self.browse(cr, uid, ids, context=context): if not exp.employee_id.address_home_id: raise osv.except_osv(_('Error!'), _('The employee must have a home address.')) + if not exp.employee_id.address_home_id.property_account_payable.id: + raise osv.except_osv(_('Error!'), _('The employee must have a payable account set on his home address.')) company_currency = exp.company_id.currency_id.id diff_currency_p = exp.currency_id.id <> company_currency @@ -336,6 +338,8 @@ class hr_expense_expense(osv.osv): acc = line.product_id.property_account_expense if not acc: acc = line.product_id.categ_id.property_account_expense_categ + if not acc: + raise osv.except_osv(_('Error!'), _('No purchase account found for the product %s (or for his category), please configure one.') % (line.product_id.name)) else: acc = property_obj.get(cr, uid, 'property_account_expense_categ', 'product.category', context={'force_company': company.id}) if not acc: From ec6cbc8f4a53d4f7a78730913b6890a1d3ba287a Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Wed, 27 Mar 2013 11:54:05 +0100 Subject: [PATCH 21/35] [FIX] account: fixed missing context passing in account_invoice_refund wizard bzr revid: qdp-launchpad@openerp.com-20130327105405-x2gmid38lhfnk40q --- addons/account/wizard/account_invoice_refund.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/account/wizard/account_invoice_refund.py b/addons/account/wizard/account_invoice_refund.py index 2d95687ff2d..d62fd331774 100644 --- a/addons/account/wizard/account_invoice_refund.py +++ b/addons/account/wizard/account_invoice_refund.py @@ -184,9 +184,9 @@ class account_invoice_refund(osv.osv_memory): invoice = invoice[0] del invoice['id'] invoice_lines = inv_line_obj.browse(cr, uid, invoice['invoice_line'], context=context) - invoice_lines = inv_obj._refund_cleanup_lines(cr, uid, invoice_lines) + invoice_lines = inv_obj._refund_cleanup_lines(cr, uid, invoice_lines, context=context) tax_lines = inv_tax_obj.browse(cr, uid, invoice['tax_line'], context=context) - tax_lines = inv_obj._refund_cleanup_lines(cr, uid, tax_lines) + tax_lines = inv_obj._refund_cleanup_lines(cr, uid, tax_lines, context=context) invoice.update({ 'type': inv.type, 'date_invoice': date, From 15bd42f5e5328de66086ea36bf34847600113de9 Mon Sep 17 00:00:00 2001 From: Chris Biersbach Date: Wed, 27 Mar 2013 14:23:35 +0100 Subject: [PATCH 22/35] [FIX] Removes the limit of 64 characters from additional text fields added via the interface lp bug: https://launchpad.net/bugs/1053511 fixed bzr revid: cbi@openerp.com-20130327132335-tro1p1n5at042jfb --- openerp/addons/base/ir/ir_model.py | 5 ++--- openerp/addons/base/ir/ir_model_view.xml | 2 +- openerp/osv/orm.py | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/openerp/addons/base/ir/ir_model.py b/openerp/addons/base/ir/ir_model.py index 70056383090..9e7697c1bbb 100644 --- a/openerp/addons/base/ir/ir_model.py +++ b/openerp/addons/base/ir/ir_model.py @@ -263,7 +263,6 @@ class ir_model_fields(osv.osv): 'state': lambda self,cr,uid,ctx=None: (ctx and ctx.get('manual',False)) and 'manual' or 'base', 'on_delete': 'set null', 'select_level': '0', - 'size': 64, 'field_description': '', 'selectable': 1, } @@ -293,10 +292,10 @@ class ir_model_fields(osv.osv): return True def _size_gt_zero_msg(self, cr, user, ids, context=None): - return _('Size of the field can never be less than 1 !') + return _('Size of the field can never be less than 0 !') _sql_constraints = [ - ('size_gt_zero', 'CHECK (size>0)',_size_gt_zero_msg ), + ('size_gt_zero', 'CHECK (size>=0)',_size_gt_zero_msg ), ] def _drop_column(self, cr, uid, ids, context=None): diff --git a/openerp/addons/base/ir/ir_model_view.xml b/openerp/addons/base/ir/ir_model_view.xml index 0f13837a65a..15052e6e5c5 100644 --- a/openerp/addons/base/ir/ir_model_view.xml +++ b/openerp/addons/base/ir/ir_model_view.xml @@ -151,7 +151,7 @@ 'readonly': [('ttype','not in', ['many2one','one2many','many2many'])]}"/> - + diff --git a/openerp/osv/orm.py b/openerp/osv/orm.py index 61f1a83c040..63892297578 100644 --- a/openerp/osv/orm.py +++ b/openerp/osv/orm.py @@ -1029,7 +1029,7 @@ class BaseModel(object): 'required': bool(field['required']), 'readonly': bool(field['readonly']), 'domain': eval(field['domain']) if field['domain'] else None, - 'size': field['size'], + 'size': field['size'] or None, 'ondelete': field['on_delete'], 'translate': (field['translate']), 'manual': True, From 72efeaa44fb33b541c646467f7d54ae1807a1459 Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Wed, 27 Mar 2013 17:02:58 +0100 Subject: [PATCH 23/35] [FIX] base, ir.ui.view: added a default value for 'type' field as it's a required functional field without fnct_inv (thus not possible to enter a value). This is needed in order to let people create their views manually via the menuitem bzr revid: qdp-launchpad@openerp.com-20130327160258-jev32y4t99vj6b5s --- openerp/addons/base/ir/ir_ui_view.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openerp/addons/base/ir/ir_ui_view.py b/openerp/addons/base/ir/ir_ui_view.py index 0b8ff4ee66f..09f73662070 100644 --- a/openerp/addons/base/ir/ir_ui_view.py +++ b/openerp/addons/base/ir/ir_ui_view.py @@ -83,7 +83,8 @@ class view(osv.osv): } _defaults = { 'arch': '\n\n\t\n', - 'priority': 16 + 'priority': 16, + 'type': 'tree', } _order = "priority,name" From fc04522286417198e1f19b010cbacd02f56f1c3b Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Thu, 28 Mar 2013 06:05:00 +0000 Subject: [PATCH 24/35] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130328060500-yc40z00ubsz154vw --- addons/account/i18n/ar.po | 4 +- addons/account/i18n/bg.po | 4 +- addons/account/i18n/br.po | 4 +- addons/account/i18n/bs.po | 4 +- addons/account/i18n/ca.po | 4 +- addons/account/i18n/cs.po | 4 +- addons/account/i18n/da.po | 4 +- addons/account/i18n/de.po | 4 +- addons/account/i18n/el.po | 4 +- addons/account/i18n/en_GB.po | 4 +- addons/account/i18n/en_US.po | 4 +- addons/account/i18n/es.po | 4 +- addons/account/i18n/es_AR.po | 4 +- addons/account/i18n/es_CL.po | 4 +- addons/account/i18n/es_CR.po | 4 +- addons/account/i18n/es_DO.po | 4 +- addons/account/i18n/es_EC.po | 4 +- addons/account/i18n/es_MX.po | 4 +- addons/account/i18n/es_PY.po | 4 +- addons/account/i18n/es_UY.po | 4 +- addons/account/i18n/es_VE.po | 4 +- addons/account/i18n/et.po | 4 +- addons/account/i18n/eu.po | 4 +- addons/account/i18n/fa.po | 4 +- addons/account/i18n/fa_AF.po | 4 +- addons/account/i18n/fi.po | 4 +- addons/account/i18n/fr.po | 4 +- addons/account/i18n/fr_BE.po | 4 +- addons/account/i18n/gl.po | 4 +- addons/account/i18n/gu.po | 4 +- addons/account/i18n/he.po | 4 +- addons/account/i18n/hi.po | 4 +- addons/account/i18n/hr.po | 4 +- addons/account/i18n/hu.po | 4 +- addons/account/i18n/id.po | 4 +- addons/account/i18n/it.po | 4 +- addons/account/i18n/ja.po | 4 +- addons/account/i18n/kab.po | 4 +- addons/account/i18n/kk.po | 4 +- addons/account/i18n/ko.po | 4 +- addons/account/i18n/lo.po | 4 +- addons/account/i18n/lt.po | 4 +- addons/account/i18n/lv.po | 4 +- addons/account/i18n/mk.po | 4 +- addons/account/i18n/mn.po | 4 +- addons/account/i18n/nb.po | 4 +- addons/account/i18n/nl.po | 4 +- addons/account/i18n/nl_BE.po | 4 +- addons/account/i18n/oc.po | 4 +- addons/account/i18n/pl.po | 4 +- addons/account/i18n/pt.po | 4 +- addons/account/i18n/pt_BR.po | 4 +- addons/account/i18n/ro.po | 4 +- addons/account/i18n/ru.po | 6 +- addons/account/i18n/si.po | 4 +- addons/account/i18n/sk.po | 4 +- addons/account/i18n/sl.po | 4 +- addons/account/i18n/sq.po | 4 +- addons/account/i18n/sr.po | 4 +- addons/account/i18n/sr@latin.po | 4 +- addons/account/i18n/sv.po | 4 +- addons/account/i18n/ta.po | 4 +- addons/account/i18n/te.po | 4 +- addons/account/i18n/th.po | 4 +- addons/account/i18n/tlh.po | 4 +- addons/account/i18n/tr.po | 4 +- addons/account/i18n/ug.po | 4 +- addons/account/i18n/uk.po | 4 +- addons/account/i18n/ur.po | 4 +- addons/account/i18n/vi.po | 4 +- addons/account/i18n/zh_CN.po | 4 +- addons/account/i18n/zh_HK.po | 4 +- addons/account/i18n/zh_TW.po | 4 +- addons/account_accountant/i18n/ar.po | 4 +- addons/account_accountant/i18n/az.po | 4 +- addons/account_accountant/i18n/bg.po | 4 +- addons/account_accountant/i18n/bn.po | 4 +- addons/account_accountant/i18n/bs.po | 4 +- addons/account_accountant/i18n/ca.po | 4 +- addons/account_accountant/i18n/cs.po | 4 +- addons/account_accountant/i18n/da.po | 4 +- addons/account_accountant/i18n/de.po | 4 +- addons/account_accountant/i18n/el.po | 4 +- addons/account_accountant/i18n/en_GB.po | 4 +- addons/account_accountant/i18n/es.po | 4 +- addons/account_accountant/i18n/es_CO.po | 4 +- addons/account_accountant/i18n/es_CR.po | 4 +- addons/account_accountant/i18n/es_DO.po | 4 +- addons/account_accountant/i18n/es_EC.po | 4 +- addons/account_accountant/i18n/es_MX.po | 4 +- addons/account_accountant/i18n/es_PY.po | 4 +- addons/account_accountant/i18n/et.po | 4 +- addons/account_accountant/i18n/fa.po | 4 +- addons/account_accountant/i18n/fi.po | 4 +- addons/account_accountant/i18n/fr.po | 4 +- addons/account_accountant/i18n/gl.po | 4 +- addons/account_accountant/i18n/he.po | 4 +- addons/account_accountant/i18n/hi.po | 4 +- addons/account_accountant/i18n/hr.po | 4 +- addons/account_accountant/i18n/hu.po | 4 +- addons/account_accountant/i18n/id.po | 4 +- addons/account_accountant/i18n/it.po | 4 +- addons/account_accountant/i18n/ja.po | 4 +- addons/account_accountant/i18n/ko.po | 4 +- addons/account_accountant/i18n/lo.po | 4 +- addons/account_accountant/i18n/lt.po | 4 +- addons/account_accountant/i18n/lv.po | 4 +- addons/account_accountant/i18n/mk.po | 4 +- addons/account_accountant/i18n/mn.po | 4 +- addons/account_accountant/i18n/nb.po | 4 +- addons/account_accountant/i18n/nl.po | 4 +- addons/account_accountant/i18n/nl_BE.po | 4 +- addons/account_accountant/i18n/oc.po | 4 +- addons/account_accountant/i18n/pl.po | 4 +- addons/account_accountant/i18n/pt.po | 4 +- addons/account_accountant/i18n/pt_BR.po | 4 +- addons/account_accountant/i18n/ro.po | 4 +- addons/account_accountant/i18n/ru.po | 4 +- addons/account_accountant/i18n/sk.po | 4 +- addons/account_accountant/i18n/sl.po | 4 +- addons/account_accountant/i18n/sq.po | 4 +- addons/account_accountant/i18n/sr.po | 4 +- addons/account_accountant/i18n/sr@latin.po | 4 +- addons/account_accountant/i18n/sv.po | 4 +- addons/account_accountant/i18n/ta.po | 4 +- addons/account_accountant/i18n/th.po | 4 +- addons/account_accountant/i18n/tr.po | 4 +- addons/account_accountant/i18n/uk.po | 4 +- addons/account_accountant/i18n/vi.po | 4 +- addons/account_accountant/i18n/zh_CN.po | 4 +- addons/account_accountant/i18n/zh_TW.po | 4 +- addons/account_analytic_analysis/i18n/ar.po | 4 +- addons/account_analytic_analysis/i18n/bg.po | 4 +- addons/account_analytic_analysis/i18n/bs.po | 4 +- addons/account_analytic_analysis/i18n/ca.po | 4 +- addons/account_analytic_analysis/i18n/cs.po | 4 +- addons/account_analytic_analysis/i18n/da.po | 4 +- addons/account_analytic_analysis/i18n/de.po | 4 +- addons/account_analytic_analysis/i18n/el.po | 4 +- .../account_analytic_analysis/i18n/en_GB.po | 4 +- addons/account_analytic_analysis/i18n/es.po | 4 +- .../account_analytic_analysis/i18n/es_AR.po | 4 +- .../account_analytic_analysis/i18n/es_CR.po | 4 +- .../account_analytic_analysis/i18n/es_EC.po | 4 +- .../account_analytic_analysis/i18n/es_MX.po | 4 +- .../account_analytic_analysis/i18n/es_PY.po | 4 +- addons/account_analytic_analysis/i18n/et.po | 4 +- addons/account_analytic_analysis/i18n/fa.po | 4 +- addons/account_analytic_analysis/i18n/fi.po | 4 +- addons/account_analytic_analysis/i18n/fr.po | 4 +- addons/account_analytic_analysis/i18n/gl.po | 4 +- addons/account_analytic_analysis/i18n/gu.po | 4 +- addons/account_analytic_analysis/i18n/hr.po | 4 +- addons/account_analytic_analysis/i18n/hu.po | 4 +- addons/account_analytic_analysis/i18n/id.po | 4 +- addons/account_analytic_analysis/i18n/it.po | 4 +- addons/account_analytic_analysis/i18n/ja.po | 4 +- addons/account_analytic_analysis/i18n/ko.po | 4 +- addons/account_analytic_analysis/i18n/lt.po | 4 +- addons/account_analytic_analysis/i18n/lv.po | 4 +- addons/account_analytic_analysis/i18n/mk.po | 4 +- addons/account_analytic_analysis/i18n/mn.po | 4 +- addons/account_analytic_analysis/i18n/nb.po | 4 +- addons/account_analytic_analysis/i18n/nl.po | 4 +- .../account_analytic_analysis/i18n/nl_BE.po | 4 +- addons/account_analytic_analysis/i18n/oc.po | 4 +- addons/account_analytic_analysis/i18n/pl.po | 4 +- addons/account_analytic_analysis/i18n/pt.po | 4 +- .../account_analytic_analysis/i18n/pt_BR.po | 4 +- addons/account_analytic_analysis/i18n/ro.po | 4 +- addons/account_analytic_analysis/i18n/ru.po | 4 +- addons/account_analytic_analysis/i18n/sl.po | 4 +- addons/account_analytic_analysis/i18n/sq.po | 4 +- addons/account_analytic_analysis/i18n/sr.po | 4 +- .../i18n/sr@latin.po | 4 +- addons/account_analytic_analysis/i18n/sv.po | 4 +- addons/account_analytic_analysis/i18n/tlh.po | 4 +- addons/account_analytic_analysis/i18n/tr.po | 4 +- addons/account_analytic_analysis/i18n/uk.po | 4 +- addons/account_analytic_analysis/i18n/vi.po | 4 +- .../account_analytic_analysis/i18n/zh_CN.po | 4 +- .../account_analytic_analysis/i18n/zh_TW.po | 4 +- addons/account_analytic_default/i18n/ar.po | 4 +- addons/account_analytic_default/i18n/bg.po | 4 +- addons/account_analytic_default/i18n/bs.po | 4 +- addons/account_analytic_default/i18n/ca.po | 4 +- addons/account_analytic_default/i18n/cs.po | 4 +- addons/account_analytic_default/i18n/da.po | 4 +- addons/account_analytic_default/i18n/de.po | 4 +- addons/account_analytic_default/i18n/el.po | 4 +- addons/account_analytic_default/i18n/en_GB.po | 4 +- addons/account_analytic_default/i18n/es.po | 4 +- addons/account_analytic_default/i18n/es_AR.po | 4 +- addons/account_analytic_default/i18n/es_CR.po | 4 +- addons/account_analytic_default/i18n/es_EC.po | 4 +- addons/account_analytic_default/i18n/es_MX.po | 4 +- addons/account_analytic_default/i18n/es_PY.po | 4 +- addons/account_analytic_default/i18n/et.po | 4 +- addons/account_analytic_default/i18n/fa.po | 4 +- addons/account_analytic_default/i18n/fi.po | 4 +- addons/account_analytic_default/i18n/fr.po | 4 +- addons/account_analytic_default/i18n/gl.po | 4 +- addons/account_analytic_default/i18n/gu.po | 4 +- addons/account_analytic_default/i18n/hr.po | 4 +- addons/account_analytic_default/i18n/hu.po | 4 +- addons/account_analytic_default/i18n/id.po | 4 +- addons/account_analytic_default/i18n/it.po | 4 +- addons/account_analytic_default/i18n/ja.po | 4 +- addons/account_analytic_default/i18n/ko.po | 4 +- addons/account_analytic_default/i18n/lt.po | 4 +- addons/account_analytic_default/i18n/lv.po | 4 +- addons/account_analytic_default/i18n/mk.po | 4 +- addons/account_analytic_default/i18n/mn.po | 4 +- addons/account_analytic_default/i18n/nb.po | 4 +- addons/account_analytic_default/i18n/nl.po | 4 +- addons/account_analytic_default/i18n/nl_BE.po | 4 +- addons/account_analytic_default/i18n/oc.po | 4 +- addons/account_analytic_default/i18n/pl.po | 4 +- addons/account_analytic_default/i18n/pt.po | 4 +- addons/account_analytic_default/i18n/pt_BR.po | 4 +- addons/account_analytic_default/i18n/ro.po | 4 +- addons/account_analytic_default/i18n/ru.po | 4 +- addons/account_analytic_default/i18n/sk.po | 4 +- addons/account_analytic_default/i18n/sl.po | 4 +- addons/account_analytic_default/i18n/sq.po | 4 +- addons/account_analytic_default/i18n/sr.po | 4 +- .../account_analytic_default/i18n/sr@latin.po | 4 +- addons/account_analytic_default/i18n/sv.po | 4 +- addons/account_analytic_default/i18n/tlh.po | 4 +- addons/account_analytic_default/i18n/tr.po | 4 +- addons/account_analytic_default/i18n/uk.po | 4 +- addons/account_analytic_default/i18n/vi.po | 4 +- addons/account_analytic_default/i18n/zh_CN.po | 4 +- addons/account_analytic_default/i18n/zh_TW.po | 4 +- addons/account_analytic_plans/i18n/ar.po | 4 +- addons/account_analytic_plans/i18n/bg.po | 4 +- addons/account_analytic_plans/i18n/bs.po | 4 +- addons/account_analytic_plans/i18n/ca.po | 4 +- addons/account_analytic_plans/i18n/cs.po | 4 +- addons/account_analytic_plans/i18n/da.po | 4 +- addons/account_analytic_plans/i18n/de.po | 4 +- addons/account_analytic_plans/i18n/el.po | 4 +- addons/account_analytic_plans/i18n/en_GB.po | 4 +- addons/account_analytic_plans/i18n/es.po | 4 +- addons/account_analytic_plans/i18n/es_AR.po | 4 +- addons/account_analytic_plans/i18n/es_CR.po | 4 +- addons/account_analytic_plans/i18n/es_EC.po | 4 +- addons/account_analytic_plans/i18n/es_MX.po | 4 +- addons/account_analytic_plans/i18n/es_PY.po | 4 +- addons/account_analytic_plans/i18n/et.po | 4 +- addons/account_analytic_plans/i18n/fa.po | 4 +- addons/account_analytic_plans/i18n/fi.po | 4 +- addons/account_analytic_plans/i18n/fr.po | 4 +- addons/account_analytic_plans/i18n/gl.po | 4 +- addons/account_analytic_plans/i18n/gu.po | 4 +- addons/account_analytic_plans/i18n/hr.po | 4 +- addons/account_analytic_plans/i18n/hu.po | 4 +- addons/account_analytic_plans/i18n/id.po | 4 +- addons/account_analytic_plans/i18n/it.po | 4 +- addons/account_analytic_plans/i18n/ja.po | 4 +- addons/account_analytic_plans/i18n/ko.po | 4 +- addons/account_analytic_plans/i18n/lt.po | 4 +- addons/account_analytic_plans/i18n/lv.po | 4 +- addons/account_analytic_plans/i18n/mk.po | 4 +- addons/account_analytic_plans/i18n/mn.po | 4 +- addons/account_analytic_plans/i18n/nb.po | 4 +- addons/account_analytic_plans/i18n/nl.po | 4 +- addons/account_analytic_plans/i18n/nl_BE.po | 4 +- addons/account_analytic_plans/i18n/oc.po | 4 +- addons/account_analytic_plans/i18n/pl.po | 4 +- addons/account_analytic_plans/i18n/pt.po | 4 +- addons/account_analytic_plans/i18n/pt_BR.po | 4 +- addons/account_analytic_plans/i18n/ro.po | 4 +- addons/account_analytic_plans/i18n/ru.po | 4 +- addons/account_analytic_plans/i18n/sl.po | 4 +- addons/account_analytic_plans/i18n/sq.po | 4 +- addons/account_analytic_plans/i18n/sr.po | 4 +- .../account_analytic_plans/i18n/sr@latin.po | 4 +- addons/account_analytic_plans/i18n/sv.po | 4 +- addons/account_analytic_plans/i18n/tlh.po | 4 +- addons/account_analytic_plans/i18n/tr.po | 4 +- addons/account_analytic_plans/i18n/uk.po | 4 +- addons/account_analytic_plans/i18n/vi.po | 4 +- addons/account_analytic_plans/i18n/zh_CN.po | 4 +- addons/account_analytic_plans/i18n/zh_TW.po | 4 +- addons/account_anglo_saxon/i18n/ar.po | 4 +- addons/account_anglo_saxon/i18n/bg.po | 4 +- addons/account_anglo_saxon/i18n/ca.po | 4 +- addons/account_anglo_saxon/i18n/cs.po | 4 +- addons/account_anglo_saxon/i18n/da.po | 4 +- addons/account_anglo_saxon/i18n/de.po | 4 +- addons/account_anglo_saxon/i18n/el.po | 4 +- addons/account_anglo_saxon/i18n/en_GB.po | 4 +- addons/account_anglo_saxon/i18n/es.po | 4 +- addons/account_anglo_saxon/i18n/es_CR.po | 4 +- addons/account_anglo_saxon/i18n/es_EC.po | 4 +- addons/account_anglo_saxon/i18n/es_MX.po | 4 +- addons/account_anglo_saxon/i18n/es_PY.po | 4 +- addons/account_anglo_saxon/i18n/et.po | 4 +- addons/account_anglo_saxon/i18n/fa.po | 4 +- addons/account_anglo_saxon/i18n/fi.po | 4 +- addons/account_anglo_saxon/i18n/fr.po | 4 +- addons/account_anglo_saxon/i18n/gl.po | 4 +- addons/account_anglo_saxon/i18n/gu.po | 4 +- addons/account_anglo_saxon/i18n/hi.po | 4 +- addons/account_anglo_saxon/i18n/hr.po | 4 +- addons/account_anglo_saxon/i18n/hu.po | 4 +- addons/account_anglo_saxon/i18n/id.po | 4 +- addons/account_anglo_saxon/i18n/it.po | 4 +- addons/account_anglo_saxon/i18n/ja.po | 4 +- addons/account_anglo_saxon/i18n/lv.po | 4 +- addons/account_anglo_saxon/i18n/mk.po | 4 +- addons/account_anglo_saxon/i18n/mn.po | 4 +- addons/account_anglo_saxon/i18n/nb.po | 4 +- addons/account_anglo_saxon/i18n/nl.po | 4 +- addons/account_anglo_saxon/i18n/nl_BE.po | 4 +- addons/account_anglo_saxon/i18n/oc.po | 4 +- addons/account_anglo_saxon/i18n/pl.po | 4 +- addons/account_anglo_saxon/i18n/pt.po | 4 +- addons/account_anglo_saxon/i18n/pt_BR.po | 4 +- addons/account_anglo_saxon/i18n/ro.po | 4 +- addons/account_anglo_saxon/i18n/ru.po | 4 +- addons/account_anglo_saxon/i18n/sl.po | 4 +- addons/account_anglo_saxon/i18n/sq.po | 4 +- addons/account_anglo_saxon/i18n/sr@latin.po | 4 +- addons/account_anglo_saxon/i18n/sv.po | 4 +- addons/account_anglo_saxon/i18n/ta.po | 4 +- addons/account_anglo_saxon/i18n/tr.po | 4 +- addons/account_anglo_saxon/i18n/zh_CN.po | 4 +- addons/account_anglo_saxon/i18n/zh_TW.po | 4 +- addons/account_asset/i18n/ar.po | 4 +- addons/account_asset/i18n/ca.po | 4 +- addons/account_asset/i18n/cs.po | 4 +- addons/account_asset/i18n/da.po | 4 +- addons/account_asset/i18n/de.po | 4 +- addons/account_asset/i18n/en_GB.po | 4 +- addons/account_asset/i18n/es.po | 4 +- addons/account_asset/i18n/es_AR.po | 4 +- addons/account_asset/i18n/es_CR.po | 4 +- addons/account_asset/i18n/es_EC.po | 4 +- addons/account_asset/i18n/es_MX.po | 4 +- addons/account_asset/i18n/et.po | 4 +- addons/account_asset/i18n/fi.po | 4 +- addons/account_asset/i18n/fr.po | 4 +- addons/account_asset/i18n/gu.po | 4 +- addons/account_asset/i18n/hr.po | 4 +- addons/account_asset/i18n/id.po | 4 +- addons/account_asset/i18n/it.po | 4 +- addons/account_asset/i18n/ja.po | 4 +- addons/account_asset/i18n/ko.po | 4 +- addons/account_asset/i18n/lt.po | 4 +- addons/account_asset/i18n/mk.po | 4 +- addons/account_asset/i18n/mn.po | 4 +- addons/account_asset/i18n/nb.po | 4 +- addons/account_asset/i18n/nl.po | 4 +- addons/account_asset/i18n/nl_BE.po | 4 +- addons/account_asset/i18n/pl.po | 4 +- addons/account_asset/i18n/pt.po | 4 +- addons/account_asset/i18n/pt_BR.po | 4 +- addons/account_asset/i18n/ro.po | 4 +- addons/account_asset/i18n/ru.po | 4 +- addons/account_asset/i18n/sl.po | 4 +- addons/account_asset/i18n/sr@latin.po | 4 +- addons/account_asset/i18n/sv.po | 4 +- addons/account_asset/i18n/tr.po | 4 +- addons/account_asset/i18n/vi.po | 4 +- addons/account_asset/i18n/zh_CN.po | 4 +- addons/account_asset/i18n/zh_TW.po | 4 +- .../i18n/ar.po | 4 +- .../i18n/de.po | 4 +- .../i18n/en_GB.po | 4 +- .../i18n/es.po | 4 +- .../i18n/es_CR.po | 4 +- .../i18n/es_EC.po | 4 +- .../i18n/es_MX.po | 4 +- .../i18n/fi.po | 4 +- .../i18n/fr.po | 4 +- .../i18n/gu.po | 4 +- .../i18n/hr.po | 4 +- .../i18n/it.po | 4 +- .../i18n/ja.po | 4 +- .../i18n/mk.po | 4 +- .../i18n/mn.po | 4 +- .../i18n/nb.po | 4 +- .../i18n/nl.po | 4 +- .../i18n/pl.po | 4 +- .../i18n/pt.po | 4 +- .../i18n/pt_BR.po | 4 +- .../i18n/ro.po | 4 +- .../i18n/sl.po | 4 +- .../i18n/sr@latin.po | 4 +- .../i18n/sv.po | 4 +- .../i18n/tr.po | 4 +- .../i18n/zh_CN.po | 4 +- .../i18n/zh_TW.po | 4 +- addons/account_budget/i18n/ar.po | 4 +- addons/account_budget/i18n/bg.po | 4 +- addons/account_budget/i18n/bs.po | 4 +- addons/account_budget/i18n/ca.po | 4 +- addons/account_budget/i18n/cs.po | 4 +- addons/account_budget/i18n/da.po | 4 +- addons/account_budget/i18n/de.po | 4 +- addons/account_budget/i18n/el.po | 4 +- addons/account_budget/i18n/en_GB.po | 4 +- addons/account_budget/i18n/es.po | 4 +- addons/account_budget/i18n/es_AR.po | 4 +- addons/account_budget/i18n/es_CR.po | 4 +- addons/account_budget/i18n/es_EC.po | 4 +- addons/account_budget/i18n/es_MX.po | 4 +- addons/account_budget/i18n/es_PY.po | 4 +- addons/account_budget/i18n/et.po | 4 +- addons/account_budget/i18n/fa.po | 4 +- addons/account_budget/i18n/fi.po | 4 +- addons/account_budget/i18n/fr.po | 4 +- addons/account_budget/i18n/gl.po | 4 +- addons/account_budget/i18n/gu.po | 4 +- addons/account_budget/i18n/he.po | 4 +- addons/account_budget/i18n/hi.po | 4 +- addons/account_budget/i18n/hr.po | 4 +- addons/account_budget/i18n/hu.po | 4 +- addons/account_budget/i18n/id.po | 4 +- addons/account_budget/i18n/it.po | 4 +- addons/account_budget/i18n/ja.po | 4 +- addons/account_budget/i18n/ko.po | 4 +- addons/account_budget/i18n/lo.po | 4 +- addons/account_budget/i18n/lt.po | 4 +- addons/account_budget/i18n/lv.po | 4 +- addons/account_budget/i18n/mk.po | 4 +- addons/account_budget/i18n/mn.po | 4 +- addons/account_budget/i18n/nb.po | 4 +- addons/account_budget/i18n/nl.po | 4 +- addons/account_budget/i18n/nl_BE.po | 4 +- addons/account_budget/i18n/oc.po | 4 +- addons/account_budget/i18n/pl.po | 4 +- addons/account_budget/i18n/pt.po | 4 +- addons/account_budget/i18n/pt_BR.po | 4 +- addons/account_budget/i18n/ro.po | 4 +- addons/account_budget/i18n/ru.po | 4 +- addons/account_budget/i18n/sl.po | 4 +- addons/account_budget/i18n/sq.po | 4 +- addons/account_budget/i18n/sr.po | 4 +- addons/account_budget/i18n/sr@latin.po | 4 +- addons/account_budget/i18n/sv.po | 4 +- addons/account_budget/i18n/tlh.po | 4 +- addons/account_budget/i18n/tr.po | 4 +- addons/account_budget/i18n/uk.po | 4 +- addons/account_budget/i18n/vi.po | 4 +- addons/account_budget/i18n/zh_CN.po | 4 +- addons/account_budget/i18n/zh_TW.po | 4 +- addons/account_cancel/i18n/ar.po | 4 +- addons/account_cancel/i18n/bg.po | 4 +- addons/account_cancel/i18n/bn.po | 4 +- addons/account_cancel/i18n/br.po | 4 +- addons/account_cancel/i18n/bs.po | 4 +- addons/account_cancel/i18n/ca.po | 4 +- addons/account_cancel/i18n/cs.po | 4 +- addons/account_cancel/i18n/da.po | 4 +- addons/account_cancel/i18n/de.po | 4 +- addons/account_cancel/i18n/el.po | 4 +- addons/account_cancel/i18n/en_GB.po | 4 +- addons/account_cancel/i18n/es.po | 4 +- addons/account_cancel/i18n/es_CL.po | 4 +- addons/account_cancel/i18n/es_CR.po | 4 +- addons/account_cancel/i18n/es_EC.po | 4 +- addons/account_cancel/i18n/es_MX.po | 4 +- addons/account_cancel/i18n/es_PY.po | 4 +- addons/account_cancel/i18n/fa.po | 4 +- addons/account_cancel/i18n/fi.po | 4 +- addons/account_cancel/i18n/fr.po | 4 +- addons/account_cancel/i18n/gl.po | 4 +- addons/account_cancel/i18n/gu.po | 4 +- addons/account_cancel/i18n/hi.po | 4 +- addons/account_cancel/i18n/hr.po | 4 +- addons/account_cancel/i18n/hu.po | 4 +- addons/account_cancel/i18n/id.po | 4 +- addons/account_cancel/i18n/it.po | 4 +- addons/account_cancel/i18n/ja.po | 4 +- addons/account_cancel/i18n/kk.po | 4 +- addons/account_cancel/i18n/lo.po | 4 +- addons/account_cancel/i18n/lt.po | 4 +- addons/account_cancel/i18n/lv.po | 4 +- addons/account_cancel/i18n/mk.po | 4 +- addons/account_cancel/i18n/mn.po | 4 +- addons/account_cancel/i18n/nb.po | 4 +- addons/account_cancel/i18n/nl.po | 4 +- addons/account_cancel/i18n/nl_BE.po | 4 +- addons/account_cancel/i18n/oc.po | 4 +- addons/account_cancel/i18n/pl.po | 4 +- addons/account_cancel/i18n/pt.po | 4 +- addons/account_cancel/i18n/pt_BR.po | 4 +- addons/account_cancel/i18n/ro.po | 4 +- addons/account_cancel/i18n/ru.po | 4 +- addons/account_cancel/i18n/sl.po | 4 +- addons/account_cancel/i18n/sq.po | 4 +- addons/account_cancel/i18n/sr.po | 4 +- addons/account_cancel/i18n/sr@latin.po | 4 +- addons/account_cancel/i18n/sv.po | 4 +- addons/account_cancel/i18n/ta.po | 4 +- addons/account_cancel/i18n/tr.po | 4 +- addons/account_cancel/i18n/vi.po | 4 +- addons/account_cancel/i18n/zh_CN.po | 4 +- addons/account_cancel/i18n/zh_TW.po | 4 +- addons/account_chart/i18n/ar.po | 4 +- addons/account_chart/i18n/bg.po | 4 +- addons/account_chart/i18n/bs.po | 4 +- addons/account_chart/i18n/ca.po | 4 +- addons/account_chart/i18n/cs.po | 4 +- addons/account_chart/i18n/da.po | 4 +- addons/account_chart/i18n/de.po | 4 +- addons/account_chart/i18n/el.po | 4 +- addons/account_chart/i18n/en_GB.po | 4 +- addons/account_chart/i18n/es.po | 4 +- addons/account_chart/i18n/es_AR.po | 4 +- addons/account_chart/i18n/es_CL.po | 4 +- addons/account_chart/i18n/es_CR.po | 4 +- addons/account_chart/i18n/es_EC.po | 4 +- addons/account_chart/i18n/es_MX.po | 4 +- addons/account_chart/i18n/es_PY.po | 4 +- addons/account_chart/i18n/et.po | 4 +- addons/account_chart/i18n/eu.po | 4 +- addons/account_chart/i18n/fa.po | 4 +- addons/account_chart/i18n/fi.po | 4 +- addons/account_chart/i18n/fr.po | 4 +- addons/account_chart/i18n/gl.po | 4 +- addons/account_chart/i18n/gu.po | 4 +- addons/account_chart/i18n/hi.po | 4 +- addons/account_chart/i18n/hr.po | 4 +- addons/account_chart/i18n/hu.po | 4 +- addons/account_chart/i18n/id.po | 4 +- addons/account_chart/i18n/it.po | 4 +- addons/account_chart/i18n/ja.po | 4 +- addons/account_chart/i18n/ko.po | 4 +- addons/account_chart/i18n/lo.po | 4 +- addons/account_chart/i18n/lt.po | 4 +- addons/account_chart/i18n/lv.po | 4 +- addons/account_chart/i18n/mk.po | 4 +- addons/account_chart/i18n/mn.po | 4 +- addons/account_chart/i18n/nb.po | 4 +- addons/account_chart/i18n/nl.po | 4 +- addons/account_chart/i18n/nl_BE.po | 4 +- addons/account_chart/i18n/oc.po | 4 +- addons/account_chart/i18n/pl.po | 4 +- addons/account_chart/i18n/pt.po | 4 +- addons/account_chart/i18n/pt_BR.po | 4 +- addons/account_chart/i18n/ro.po | 4 +- addons/account_chart/i18n/ru.po | 4 +- addons/account_chart/i18n/sk.po | 4 +- addons/account_chart/i18n/sl.po | 4 +- addons/account_chart/i18n/sq.po | 4 +- addons/account_chart/i18n/sr.po | 4 +- addons/account_chart/i18n/sr@latin.po | 4 +- addons/account_chart/i18n/sv.po | 4 +- addons/account_chart/i18n/ta.po | 4 +- addons/account_chart/i18n/th.po | 4 +- addons/account_chart/i18n/tr.po | 4 +- addons/account_chart/i18n/uk.po | 4 +- addons/account_chart/i18n/vi.po | 4 +- addons/account_chart/i18n/zh_CN.po | 4 +- addons/account_chart/i18n/zh_TW.po | 4 +- addons/account_check_writing/i18n/ar.po | 4 +- addons/account_check_writing/i18n/cs.po | 4 +- addons/account_check_writing/i18n/de.po | 4 +- addons/account_check_writing/i18n/en_GB.po | 4 +- addons/account_check_writing/i18n/es.po | 4 +- addons/account_check_writing/i18n/es_CR.po | 4 +- addons/account_check_writing/i18n/es_EC.po | 4 +- addons/account_check_writing/i18n/es_MX.po | 4 +- addons/account_check_writing/i18n/fi.po | 4 +- addons/account_check_writing/i18n/fr.po | 4 +- addons/account_check_writing/i18n/gu.po | 4 +- addons/account_check_writing/i18n/hr.po | 4 +- addons/account_check_writing/i18n/ja.po | 4 +- addons/account_check_writing/i18n/lt.po | 4 +- addons/account_check_writing/i18n/mk.po | 4 +- addons/account_check_writing/i18n/mn.po | 4 +- addons/account_check_writing/i18n/nb.po | 4 +- addons/account_check_writing/i18n/nl.po | 4 +- addons/account_check_writing/i18n/pl.po | 4 +- addons/account_check_writing/i18n/pt.po | 4 +- addons/account_check_writing/i18n/pt_BR.po | 4 +- addons/account_check_writing/i18n/ro.po | 4 +- addons/account_check_writing/i18n/ru.po | 4 +- addons/account_check_writing/i18n/sl.po | 4 +- addons/account_check_writing/i18n/sr@latin.po | 4 +- addons/account_check_writing/i18n/sv.po | 4 +- addons/account_check_writing/i18n/tr.po | 4 +- addons/account_check_writing/i18n/zh_CN.po | 4 +- addons/account_check_writing/i18n/zh_TW.po | 4 +- addons/account_followup/i18n/ar.po | 4 +- addons/account_followup/i18n/bg.po | 4 +- addons/account_followup/i18n/bs.po | 4 +- addons/account_followup/i18n/ca.po | 4 +- addons/account_followup/i18n/cs.po | 4 +- addons/account_followup/i18n/da.po | 4 +- addons/account_followup/i18n/de.po | 4 +- addons/account_followup/i18n/el.po | 4 +- addons/account_followup/i18n/en_GB.po | 4 +- addons/account_followup/i18n/es.po | 4 +- addons/account_followup/i18n/es_AR.po | 4 +- addons/account_followup/i18n/es_CR.po | 4 +- addons/account_followup/i18n/es_EC.po | 4 +- addons/account_followup/i18n/es_PY.po | 4 +- addons/account_followup/i18n/et.po | 4 +- addons/account_followup/i18n/fa.po | 4 +- addons/account_followup/i18n/fi.po | 4 +- addons/account_followup/i18n/fr.po | 4 +- addons/account_followup/i18n/gl.po | 4 +- addons/account_followup/i18n/hr.po | 4 +- addons/account_followup/i18n/hu.po | 4 +- addons/account_followup/i18n/id.po | 4 +- addons/account_followup/i18n/it.po | 4 +- addons/account_followup/i18n/ja.po | 4 +- addons/account_followup/i18n/ko.po | 4 +- addons/account_followup/i18n/lt.po | 4 +- addons/account_followup/i18n/mk.po | 4 +- addons/account_followup/i18n/mn.po | 24 +- addons/account_followup/i18n/nb.po | 4 +- addons/account_followup/i18n/nl.po | 4 +- addons/account_followup/i18n/nl_BE.po | 4 +- addons/account_followup/i18n/oc.po | 4 +- addons/account_followup/i18n/pl.po | 4 +- addons/account_followup/i18n/pt.po | 4 +- addons/account_followup/i18n/pt_BR.po | 4 +- addons/account_followup/i18n/ro.po | 4 +- addons/account_followup/i18n/ru.po | 4 +- addons/account_followup/i18n/sl.po | 4 +- addons/account_followup/i18n/sq.po | 4 +- addons/account_followup/i18n/sr.po | 4 +- addons/account_followup/i18n/sr@latin.po | 4 +- addons/account_followup/i18n/sv.po | 4 +- addons/account_followup/i18n/tlh.po | 4 +- addons/account_followup/i18n/tr.po | 4 +- addons/account_followup/i18n/uk.po | 4 +- addons/account_followup/i18n/vi.po | 4 +- addons/account_followup/i18n/zh_CN.po | 4 +- addons/account_followup/i18n/zh_TW.po | 4 +- addons/account_payment/i18n/am.po | 4 +- addons/account_payment/i18n/ar.po | 4 +- addons/account_payment/i18n/bg.po | 4 +- addons/account_payment/i18n/bs.po | 4 +- addons/account_payment/i18n/ca.po | 4 +- addons/account_payment/i18n/cs.po | 4 +- addons/account_payment/i18n/da.po | 4 +- addons/account_payment/i18n/de.po | 4 +- addons/account_payment/i18n/el.po | 4 +- addons/account_payment/i18n/en_GB.po | 4 +- addons/account_payment/i18n/es.po | 4 +- addons/account_payment/i18n/es_AR.po | 4 +- addons/account_payment/i18n/es_CL.po | 4 +- addons/account_payment/i18n/es_CR.po | 4 +- addons/account_payment/i18n/es_EC.po | 4 +- addons/account_payment/i18n/es_PY.po | 4 +- addons/account_payment/i18n/et.po | 4 +- addons/account_payment/i18n/fa.po | 4 +- addons/account_payment/i18n/fi.po | 4 +- addons/account_payment/i18n/fr.po | 4 +- addons/account_payment/i18n/gl.po | 4 +- addons/account_payment/i18n/hi.po | 4 +- addons/account_payment/i18n/hr.po | 4 +- addons/account_payment/i18n/hu.po | 48 +- addons/account_payment/i18n/id.po | 4 +- addons/account_payment/i18n/it.po | 4 +- addons/account_payment/i18n/ja.po | 4 +- addons/account_payment/i18n/ko.po | 4 +- addons/account_payment/i18n/lt.po | 4 +- addons/account_payment/i18n/lv.po | 4 +- addons/account_payment/i18n/mk.po | 4 +- addons/account_payment/i18n/mn.po | 4 +- addons/account_payment/i18n/nb.po | 4 +- addons/account_payment/i18n/nl.po | 4 +- addons/account_payment/i18n/nl_BE.po | 4 +- addons/account_payment/i18n/oc.po | 4 +- addons/account_payment/i18n/pl.po | 4 +- addons/account_payment/i18n/pt.po | 4 +- addons/account_payment/i18n/pt_BR.po | 4 +- addons/account_payment/i18n/ro.po | 4 +- addons/account_payment/i18n/ru.po | 4 +- addons/account_payment/i18n/sl.po | 4 +- addons/account_payment/i18n/sq.po | 4 +- addons/account_payment/i18n/sr.po | 4 +- addons/account_payment/i18n/sr@latin.po | 4 +- addons/account_payment/i18n/sv.po | 4 +- addons/account_payment/i18n/tlh.po | 4 +- addons/account_payment/i18n/tr.po | 4 +- addons/account_payment/i18n/uk.po | 4 +- addons/account_payment/i18n/vi.po | 4 +- addons/account_payment/i18n/zh_CN.po | 4 +- addons/account_payment/i18n/zh_TW.po | 4 +- addons/account_sequence/i18n/ar.po | 4 +- addons/account_sequence/i18n/bg.po | 4 +- addons/account_sequence/i18n/ca.po | 4 +- addons/account_sequence/i18n/da.po | 4 +- addons/account_sequence/i18n/de.po | 4 +- addons/account_sequence/i18n/el.po | 4 +- addons/account_sequence/i18n/en_GB.po | 4 +- addons/account_sequence/i18n/es.po | 4 +- addons/account_sequence/i18n/es_CR.po | 4 +- addons/account_sequence/i18n/es_EC.po | 4 +- addons/account_sequence/i18n/es_PY.po | 4 +- addons/account_sequence/i18n/fa.po | 4 +- addons/account_sequence/i18n/fr.po | 4 +- addons/account_sequence/i18n/gl.po | 4 +- addons/account_sequence/i18n/hr.po | 4 +- addons/account_sequence/i18n/hu.po | 4 +- addons/account_sequence/i18n/id.po | 4 +- addons/account_sequence/i18n/it.po | 4 +- addons/account_sequence/i18n/ja.po | 4 +- addons/account_sequence/i18n/lv.po | 4 +- addons/account_sequence/i18n/mk.po | 4 +- addons/account_sequence/i18n/mn.po | 4 +- addons/account_sequence/i18n/nb.po | 4 +- addons/account_sequence/i18n/nl.po | 4 +- addons/account_sequence/i18n/nl_BE.po | 4 +- addons/account_sequence/i18n/pl.po | 4 +- addons/account_sequence/i18n/pt.po | 4 +- addons/account_sequence/i18n/pt_BR.po | 4 +- addons/account_sequence/i18n/ro.po | 4 +- addons/account_sequence/i18n/ru.po | 4 +- addons/account_sequence/i18n/sl.po | 4 +- addons/account_sequence/i18n/sq.po | 4 +- addons/account_sequence/i18n/sr@latin.po | 4 +- addons/account_sequence/i18n/sv.po | 4 +- addons/account_sequence/i18n/tr.po | 4 +- addons/account_sequence/i18n/vi.po | 4 +- addons/account_sequence/i18n/zh_CN.po | 4 +- addons/account_sequence/i18n/zh_TW.po | 4 +- addons/account_test/i18n/ar.po | 4 +- addons/account_test/i18n/en_GB.po | 4 +- addons/account_test/i18n/es.po | 4 +- addons/account_test/i18n/fr.po | 4 +- addons/account_test/i18n/hr.po | 4 +- addons/account_test/i18n/it.po | 4 +- addons/account_test/i18n/mk.po | 4 +- addons/account_test/i18n/mn.po | 4 +- addons/account_test/i18n/nb.po | 4 +- addons/account_test/i18n/nl.po | 4 +- addons/account_test/i18n/pt.po | 4 +- addons/account_test/i18n/pt_BR.po | 4 +- addons/account_test/i18n/ro.po | 4 +- addons/account_test/i18n/sl.po | 4 +- addons/account_test/i18n/tr.po | 4 +- addons/account_test/i18n/zh_CN.po | 4 +- addons/account_voucher/i18n/ar.po | 4 +- addons/account_voucher/i18n/bg.po | 4 +- addons/account_voucher/i18n/bs.po | 4 +- addons/account_voucher/i18n/ca.po | 4 +- addons/account_voucher/i18n/cs.po | 4 +- addons/account_voucher/i18n/da.po | 4 +- addons/account_voucher/i18n/de.po | 4 +- addons/account_voucher/i18n/el.po | 4 +- addons/account_voucher/i18n/en_GB.po | 4 +- addons/account_voucher/i18n/es.po | 4 +- addons/account_voucher/i18n/es_AR.po | 4 +- addons/account_voucher/i18n/es_CR.po | 4 +- addons/account_voucher/i18n/es_EC.po | 4 +- addons/account_voucher/i18n/es_PY.po | 4 +- addons/account_voucher/i18n/et.po | 4 +- addons/account_voucher/i18n/fa.po | 4 +- addons/account_voucher/i18n/fr.po | 4 +- addons/account_voucher/i18n/gl.po | 4 +- addons/account_voucher/i18n/gu.po | 4 +- addons/account_voucher/i18n/hi.po | 4 +- addons/account_voucher/i18n/hr.po | 4 +- addons/account_voucher/i18n/hu.po | 45 +- addons/account_voucher/i18n/id.po | 4 +- addons/account_voucher/i18n/it.po | 4 +- addons/account_voucher/i18n/ja.po | 4 +- addons/account_voucher/i18n/ko.po | 4 +- addons/account_voucher/i18n/lt.po | 4 +- addons/account_voucher/i18n/mk.po | 4 +- addons/account_voucher/i18n/mn.po | 4 +- addons/account_voucher/i18n/nb.po | 4 +- addons/account_voucher/i18n/nl.po | 4 +- addons/account_voucher/i18n/nl_BE.po | 4 +- addons/account_voucher/i18n/oc.po | 4 +- addons/account_voucher/i18n/pl.po | 4 +- addons/account_voucher/i18n/pt.po | 4 +- addons/account_voucher/i18n/pt_BR.po | 4 +- addons/account_voucher/i18n/ro.po | 4 +- addons/account_voucher/i18n/ru.po | 4 +- addons/account_voucher/i18n/sl.po | 4 +- addons/account_voucher/i18n/sq.po | 4 +- addons/account_voucher/i18n/sr.po | 4 +- addons/account_voucher/i18n/sr@latin.po | 4 +- addons/account_voucher/i18n/sv.po | 4 +- addons/account_voucher/i18n/tlh.po | 4 +- addons/account_voucher/i18n/tr.po | 4 +- addons/account_voucher/i18n/uk.po | 4 +- addons/account_voucher/i18n/vi.po | 4 +- addons/account_voucher/i18n/zh_CN.po | 4 +- addons/account_voucher/i18n/zh_TW.po | 4 +- addons/analytic/i18n/ar.po | 4 +- addons/analytic/i18n/bg.po | 4 +- addons/analytic/i18n/bs.po | 4 +- addons/analytic/i18n/ca.po | 4 +- addons/analytic/i18n/cs.po | 4 +- addons/analytic/i18n/da.po | 4 +- addons/analytic/i18n/de.po | 4 +- addons/analytic/i18n/el.po | 4 +- addons/analytic/i18n/en_GB.po | 4 +- addons/analytic/i18n/es.po | 4 +- addons/analytic/i18n/es_CR.po | 4 +- addons/analytic/i18n/es_EC.po | 4 +- addons/analytic/i18n/es_PY.po | 4 +- addons/analytic/i18n/et.po | 4 +- addons/analytic/i18n/fa.po | 4 +- addons/analytic/i18n/fi.po | 4 +- addons/analytic/i18n/fr.po | 4 +- addons/analytic/i18n/gl.po | 4 +- addons/analytic/i18n/hr.po | 4 +- addons/analytic/i18n/hu.po | 72 +- addons/analytic/i18n/it.po | 4 +- addons/analytic/i18n/ja.po | 4 +- addons/analytic/i18n/lv.po | 4 +- addons/analytic/i18n/mk.po | 4 +- addons/analytic/i18n/mn.po | 4 +- addons/analytic/i18n/nb.po | 4 +- addons/analytic/i18n/nl.po | 4 +- addons/analytic/i18n/nl_BE.po | 4 +- addons/analytic/i18n/pl.po | 4 +- addons/analytic/i18n/pt.po | 4 +- addons/analytic/i18n/pt_BR.po | 4 +- addons/analytic/i18n/ro.po | 4 +- addons/analytic/i18n/ru.po | 4 +- addons/analytic/i18n/sl.po | 4 +- addons/analytic/i18n/sq.po | 4 +- addons/analytic/i18n/sr.po | 4 +- addons/analytic/i18n/sr@latin.po | 4 +- addons/analytic/i18n/sv.po | 4 +- addons/analytic/i18n/tr.po | 4 +- addons/analytic/i18n/vi.po | 4 +- addons/analytic/i18n/zh_CN.po | 4 +- addons/analytic/i18n/zh_TW.po | 4 +- .../analytic_contract_hr_expense/i18n/ar.po | 4 +- .../analytic_contract_hr_expense/i18n/de.po | 4 +- .../i18n/en_GB.po | 4 +- .../analytic_contract_hr_expense/i18n/es.po | 4 +- .../analytic_contract_hr_expense/i18n/fr.po | 4 +- .../analytic_contract_hr_expense/i18n/hr.po | 4 +- .../analytic_contract_hr_expense/i18n/hu.po | 4 +- .../analytic_contract_hr_expense/i18n/it.po | 4 +- .../analytic_contract_hr_expense/i18n/mk.po | 4 +- .../analytic_contract_hr_expense/i18n/mn.po | 4 +- .../analytic_contract_hr_expense/i18n/nb.po | 4 +- .../analytic_contract_hr_expense/i18n/nl.po | 4 +- .../analytic_contract_hr_expense/i18n/pl.po | 4 +- .../analytic_contract_hr_expense/i18n/pt.po | 4 +- .../i18n/pt_BR.po | 4 +- .../analytic_contract_hr_expense/i18n/ro.po | 4 +- .../analytic_contract_hr_expense/i18n/sl.po | 4 +- .../analytic_contract_hr_expense/i18n/tr.po | 4 +- .../i18n/zh_CN.po | 4 +- addons/analytic_user_function/i18n/ar.po | 4 +- addons/analytic_user_function/i18n/bg.po | 4 +- addons/analytic_user_function/i18n/bs.po | 4 +- addons/analytic_user_function/i18n/ca.po | 4 +- addons/analytic_user_function/i18n/cs.po | 4 +- addons/analytic_user_function/i18n/da.po | 4 +- addons/analytic_user_function/i18n/de.po | 4 +- addons/analytic_user_function/i18n/el.po | 4 +- addons/analytic_user_function/i18n/en_GB.po | 4 +- addons/analytic_user_function/i18n/es.po | 4 +- addons/analytic_user_function/i18n/es_AR.po | 4 +- addons/analytic_user_function/i18n/es_CR.po | 4 +- addons/analytic_user_function/i18n/es_EC.po | 4 +- addons/analytic_user_function/i18n/es_PY.po | 4 +- addons/analytic_user_function/i18n/et.po | 4 +- addons/analytic_user_function/i18n/fa.po | 4 +- addons/analytic_user_function/i18n/fi.po | 4 +- addons/analytic_user_function/i18n/fr.po | 4 +- addons/analytic_user_function/i18n/gl.po | 4 +- addons/analytic_user_function/i18n/gu.po | 4 +- addons/analytic_user_function/i18n/hr.po | 4 +- addons/analytic_user_function/i18n/hu.po | 34 +- addons/analytic_user_function/i18n/id.po | 4 +- addons/analytic_user_function/i18n/it.po | 4 +- addons/analytic_user_function/i18n/ja.po | 4 +- addons/analytic_user_function/i18n/ko.po | 4 +- addons/analytic_user_function/i18n/lt.po | 4 +- addons/analytic_user_function/i18n/mk.po | 4 +- addons/analytic_user_function/i18n/mn.po | 4 +- addons/analytic_user_function/i18n/nb.po | 4 +- addons/analytic_user_function/i18n/nl.po | 4 +- addons/analytic_user_function/i18n/nl_BE.po | 4 +- addons/analytic_user_function/i18n/oc.po | 4 +- addons/analytic_user_function/i18n/pl.po | 4 +- addons/analytic_user_function/i18n/pt.po | 4 +- addons/analytic_user_function/i18n/pt_BR.po | 4 +- addons/analytic_user_function/i18n/ro.po | 4 +- addons/analytic_user_function/i18n/ru.po | 4 +- addons/analytic_user_function/i18n/sk.po | 4 +- addons/analytic_user_function/i18n/sl.po | 4 +- addons/analytic_user_function/i18n/sq.po | 4 +- addons/analytic_user_function/i18n/sr.po | 4 +- .../analytic_user_function/i18n/sr@latin.po | 4 +- addons/analytic_user_function/i18n/sv.po | 4 +- addons/analytic_user_function/i18n/tlh.po | 4 +- addons/analytic_user_function/i18n/tr.po | 4 +- addons/analytic_user_function/i18n/uk.po | 4 +- addons/analytic_user_function/i18n/vi.po | 4 +- addons/analytic_user_function/i18n/zh_CN.po | 4 +- addons/analytic_user_function/i18n/zh_TW.po | 4 +- addons/anonymization/i18n/ar.po | 4 +- addons/anonymization/i18n/bg.po | 4 +- addons/anonymization/i18n/ca.po | 4 +- addons/anonymization/i18n/da.po | 4 +- addons/anonymization/i18n/de.po | 4 +- addons/anonymization/i18n/en_GB.po | 4 +- addons/anonymization/i18n/es.po | 4 +- addons/anonymization/i18n/es_CR.po | 4 +- addons/anonymization/i18n/es_EC.po | 4 +- addons/anonymization/i18n/es_PY.po | 4 +- addons/anonymization/i18n/et.po | 4 +- addons/anonymization/i18n/fa.po | 4 +- addons/anonymization/i18n/fi.po | 4 +- addons/anonymization/i18n/fr.po | 4 +- addons/anonymization/i18n/gl.po | 4 +- addons/anonymization/i18n/hr.po | 4 +- addons/anonymization/i18n/hu.po | 4 +- addons/anonymization/i18n/it.po | 4 +- addons/anonymization/i18n/ja.po | 4 +- addons/anonymization/i18n/lv.po | 4 +- addons/anonymization/i18n/mk.po | 4 +- addons/anonymization/i18n/mn.po | 4 +- addons/anonymization/i18n/nb.po | 4 +- addons/anonymization/i18n/nl.po | 4 +- addons/anonymization/i18n/pl.po | 4 +- addons/anonymization/i18n/pt.po | 4 +- addons/anonymization/i18n/pt_BR.po | 4 +- addons/anonymization/i18n/ro.po | 4 +- addons/anonymization/i18n/ru.po | 4 +- addons/anonymization/i18n/sl.po | 4 +- addons/anonymization/i18n/sq.po | 4 +- addons/anonymization/i18n/sr@latin.po | 4 +- addons/anonymization/i18n/sv.po | 4 +- addons/anonymization/i18n/tr.po | 4 +- addons/anonymization/i18n/zh_CN.po | 4 +- addons/anonymization/i18n/zh_TW.po | 4 +- addons/association/i18n/ar.po | 4 +- addons/association/i18n/bg.po | 4 +- addons/association/i18n/bs.po | 4 +- addons/association/i18n/ca.po | 4 +- addons/association/i18n/cs.po | 4 +- addons/association/i18n/da.po | 4 +- addons/association/i18n/de.po | 4 +- addons/association/i18n/el.po | 4 +- addons/association/i18n/en_GB.po | 4 +- addons/association/i18n/es.po | 4 +- addons/association/i18n/es_CR.po | 4 +- addons/association/i18n/es_EC.po | 4 +- addons/association/i18n/es_PY.po | 4 +- addons/association/i18n/et.po | 4 +- addons/association/i18n/fa.po | 4 +- addons/association/i18n/fi.po | 4 +- addons/association/i18n/fr.po | 4 +- addons/association/i18n/gl.po | 4 +- addons/association/i18n/gu.po | 4 +- addons/association/i18n/hr.po | 4 +- addons/association/i18n/hu.po | 8 +- addons/association/i18n/id.po | 4 +- addons/association/i18n/it.po | 4 +- addons/association/i18n/ja.po | 4 +- addons/association/i18n/ko.po | 4 +- addons/association/i18n/lo.po | 4 +- addons/association/i18n/lt.po | 4 +- addons/association/i18n/lv.po | 4 +- addons/association/i18n/mk.po | 4 +- addons/association/i18n/mn.po | 4 +- addons/association/i18n/nb.po | 4 +- addons/association/i18n/nl.po | 4 +- addons/association/i18n/pl.po | 4 +- addons/association/i18n/pt.po | 4 +- addons/association/i18n/pt_BR.po | 4 +- addons/association/i18n/ro.po | 4 +- addons/association/i18n/ru.po | 12 +- addons/association/i18n/sl.po | 4 +- addons/association/i18n/sq.po | 4 +- addons/association/i18n/sr.po | 4 +- addons/association/i18n/sr@latin.po | 4 +- addons/association/i18n/sv.po | 4 +- addons/association/i18n/tlh.po | 4 +- addons/association/i18n/tr.po | 4 +- addons/association/i18n/uk.po | 4 +- addons/association/i18n/vi.po | 4 +- addons/association/i18n/zh_CN.po | 4 +- addons/association/i18n/zh_TW.po | 4 +- addons/audittrail/i18n/ar.po | 4 +- addons/audittrail/i18n/bg.po | 4 +- addons/audittrail/i18n/bs.po | 4 +- addons/audittrail/i18n/ca.po | 4 +- addons/audittrail/i18n/cs.po | 4 +- addons/audittrail/i18n/da.po | 4 +- addons/audittrail/i18n/de.po | 4 +- addons/audittrail/i18n/el.po | 4 +- addons/audittrail/i18n/es.po | 4 +- addons/audittrail/i18n/es_AR.po | 4 +- addons/audittrail/i18n/es_CR.po | 4 +- addons/audittrail/i18n/es_EC.po | 4 +- addons/audittrail/i18n/es_PY.po | 4 +- addons/audittrail/i18n/et.po | 4 +- addons/audittrail/i18n/fa.po | 4 +- addons/audittrail/i18n/fa_AF.po | 4 +- addons/audittrail/i18n/fi.po | 4 +- addons/audittrail/i18n/fr.po | 4 +- addons/audittrail/i18n/gl.po | 4 +- addons/audittrail/i18n/gu.po | 4 +- addons/audittrail/i18n/hr.po | 4 +- addons/audittrail/i18n/hu.po | 101 +- addons/audittrail/i18n/id.po | 4 +- addons/audittrail/i18n/it.po | 4 +- addons/audittrail/i18n/ja.po | 4 +- addons/audittrail/i18n/ko.po | 4 +- addons/audittrail/i18n/lt.po | 4 +- addons/audittrail/i18n/lv.po | 4 +- addons/audittrail/i18n/mk.po | 4 +- addons/audittrail/i18n/mn.po | 4 +- addons/audittrail/i18n/nb.po | 4 +- addons/audittrail/i18n/nl.po | 4 +- addons/audittrail/i18n/nl_BE.po | 4 +- addons/audittrail/i18n/oc.po | 4 +- addons/audittrail/i18n/pl.po | 4 +- addons/audittrail/i18n/pt.po | 4 +- addons/audittrail/i18n/pt_BR.po | 4 +- addons/audittrail/i18n/ro.po | 4 +- addons/audittrail/i18n/ru.po | 4 +- addons/audittrail/i18n/sl.po | 4 +- addons/audittrail/i18n/sq.po | 4 +- addons/audittrail/i18n/sr@latin.po | 4 +- addons/audittrail/i18n/sv.po | 4 +- addons/audittrail/i18n/tlh.po | 4 +- addons/audittrail/i18n/tr.po | 4 +- addons/audittrail/i18n/uk.po | 4 +- addons/audittrail/i18n/vi.po | 4 +- addons/audittrail/i18n/zh_CN.po | 4 +- addons/audittrail/i18n/zh_TW.po | 4 +- addons/auth_crypt/i18n/ar.po | 4 +- addons/auth_crypt/i18n/de.po | 4 +- addons/auth_crypt/i18n/en_GB.po | 4 +- addons/auth_crypt/i18n/es.po | 4 +- addons/auth_crypt/i18n/fr.po | 4 +- addons/auth_crypt/i18n/hr.po | 4 +- addons/auth_crypt/i18n/hu.po | 4 +- addons/auth_crypt/i18n/it.po | 4 +- addons/auth_crypt/i18n/mk.po | 4 +- addons/auth_crypt/i18n/mn.po | 4 +- addons/auth_crypt/i18n/nl.po | 4 +- addons/auth_crypt/i18n/pt.po | 4 +- addons/auth_crypt/i18n/pt_BR.po | 4 +- addons/auth_crypt/i18n/ro.po | 4 +- addons/auth_crypt/i18n/ru.po | 4 +- addons/auth_crypt/i18n/sl.po | 4 +- addons/auth_crypt/i18n/sv.po | 4 +- addons/auth_crypt/i18n/tr.po | 4 +- addons/auth_crypt/i18n/zh_CN.po | 4 +- addons/auth_ldap/i18n/ar.po | 4 +- addons/auth_ldap/i18n/bg.po | 4 +- addons/auth_ldap/i18n/ca.po | 4 +- addons/auth_ldap/i18n/da.po | 4 +- addons/auth_ldap/i18n/de.po | 4 +- addons/auth_ldap/i18n/en_GB.po | 4 +- addons/auth_ldap/i18n/es.po | 4 +- addons/auth_ldap/i18n/es_CR.po | 4 +- addons/auth_ldap/i18n/fi.po | 4 +- addons/auth_ldap/i18n/fr.po | 4 +- addons/auth_ldap/i18n/gl.po | 4 +- addons/auth_ldap/i18n/hr.po | 4 +- addons/auth_ldap/i18n/hu.po | 4 +- addons/auth_ldap/i18n/it.po | 4 +- addons/auth_ldap/i18n/ja.po | 4 +- addons/auth_ldap/i18n/mk.po | 4 +- addons/auth_ldap/i18n/mn.po | 4 +- addons/auth_ldap/i18n/nb.po | 4 +- addons/auth_ldap/i18n/nl.po | 4 +- addons/auth_ldap/i18n/pl.po | 4 +- addons/auth_ldap/i18n/pt.po | 4 +- addons/auth_ldap/i18n/pt_BR.po | 4 +- addons/auth_ldap/i18n/ro.po | 4 +- addons/auth_ldap/i18n/ru.po | 4 +- addons/auth_ldap/i18n/sl.po | 4 +- addons/auth_ldap/i18n/sv.po | 4 +- addons/auth_ldap/i18n/tr.po | 4 +- addons/auth_ldap/i18n/zh_CN.po | 4 +- addons/auth_oauth/i18n/ar.po | 4 +- addons/auth_oauth/i18n/de.po | 4 +- addons/auth_oauth/i18n/en_GB.po | 4 +- addons/auth_oauth/i18n/es.po | 4 +- addons/auth_oauth/i18n/fr.po | 4 +- addons/auth_oauth/i18n/hr.po | 4 +- addons/auth_oauth/i18n/hu.po | 4 +- addons/auth_oauth/i18n/it.po | 4 +- addons/auth_oauth/i18n/mk.po | 4 +- addons/auth_oauth/i18n/nb.po | 4 +- addons/auth_oauth/i18n/nl.po | 4 +- addons/auth_oauth/i18n/pl.po | 4 +- addons/auth_oauth/i18n/pt.po | 4 +- addons/auth_oauth/i18n/pt_BR.po | 4 +- addons/auth_oauth/i18n/ro.po | 4 +- addons/auth_oauth/i18n/sl.po | 4 +- addons/auth_oauth/i18n/sv.po | 4 +- addons/auth_oauth/i18n/tr.po | 4 +- addons/auth_oauth/i18n/zh_CN.po | 4 +- addons/auth_oauth_signup/i18n/de.po | 4 +- addons/auth_oauth_signup/i18n/en_GB.po | 4 +- addons/auth_oauth_signup/i18n/es.po | 4 +- addons/auth_oauth_signup/i18n/fr.po | 4 +- addons/auth_oauth_signup/i18n/hr.po | 4 +- addons/auth_oauth_signup/i18n/hu.po | 4 +- addons/auth_oauth_signup/i18n/it.po | 4 +- addons/auth_oauth_signup/i18n/mk.po | 4 +- addons/auth_oauth_signup/i18n/mn.po | 4 +- addons/auth_oauth_signup/i18n/nl.po | 4 +- addons/auth_oauth_signup/i18n/pt.po | 4 +- addons/auth_oauth_signup/i18n/pt_BR.po | 4 +- addons/auth_oauth_signup/i18n/ro.po | 4 +- addons/auth_oauth_signup/i18n/ru.po | 4 +- addons/auth_oauth_signup/i18n/sl.po | 4 +- addons/auth_oauth_signup/i18n/sv.po | 4 +- addons/auth_oauth_signup/i18n/tr.po | 4 +- addons/auth_oauth_signup/i18n/zh_CN.po | 4 +- addons/auth_oauth_signup/i18n/zh_TW.po | 4 +- addons/auth_openid/i18n/ar.po | 4 +- addons/auth_openid/i18n/de.po | 4 +- addons/auth_openid/i18n/en_GB.po | 4 +- addons/auth_openid/i18n/es.po | 4 +- addons/auth_openid/i18n/es_CR.po | 4 +- addons/auth_openid/i18n/fi.po | 4 +- addons/auth_openid/i18n/fr.po | 4 +- addons/auth_openid/i18n/gu.po | 4 +- addons/auth_openid/i18n/hr.po | 4 +- addons/auth_openid/i18n/hu.po | 4 +- addons/auth_openid/i18n/it.po | 4 +- addons/auth_openid/i18n/ja.po | 4 +- addons/auth_openid/i18n/mk.po | 4 +- addons/auth_openid/i18n/mn.po | 4 +- addons/auth_openid/i18n/nb.po | 4 +- addons/auth_openid/i18n/nl.po | 4 +- addons/auth_openid/i18n/pl.po | 4 +- addons/auth_openid/i18n/pt.po | 4 +- addons/auth_openid/i18n/pt_BR.po | 4 +- addons/auth_openid/i18n/ro.po | 4 +- addons/auth_openid/i18n/ru.po | 4 +- addons/auth_openid/i18n/sk.po | 4 +- addons/auth_openid/i18n/sl.po | 4 +- addons/auth_openid/i18n/sr@latin.po | 4 +- addons/auth_openid/i18n/sv.po | 4 +- addons/auth_openid/i18n/tr.po | 4 +- addons/auth_openid/i18n/zh_CN.po | 4 +- addons/auth_signup/i18n/ar.po | 4 +- addons/auth_signup/i18n/de.po | 4 +- addons/auth_signup/i18n/en_GB.po | 4 +- addons/auth_signup/i18n/es.po | 4 +- addons/auth_signup/i18n/es_CO.po | 4 +- addons/auth_signup/i18n/fr.po | 4 +- addons/auth_signup/i18n/hr.po | 4 +- addons/auth_signup/i18n/hu.po | 14 +- addons/auth_signup/i18n/it.po | 4 +- addons/auth_signup/i18n/mk.po | 4 +- addons/auth_signup/i18n/mn.po | 4 +- addons/auth_signup/i18n/nb.po | 4 +- addons/auth_signup/i18n/nl.po | 4 +- addons/auth_signup/i18n/pl.po | 4 +- addons/auth_signup/i18n/pt.po | 4 +- addons/auth_signup/i18n/pt_BR.po | 4 +- addons/auth_signup/i18n/ro.po | 4 +- addons/auth_signup/i18n/ru.po | 4 +- addons/auth_signup/i18n/sl.po | 4 +- addons/auth_signup/i18n/tr.po | 4 +- addons/auth_signup/i18n/zh_CN.po | 4 +- addons/base_action_rule/i18n/ar.po | 4 +- addons/base_action_rule/i18n/bg.po | 4 +- addons/base_action_rule/i18n/bs.po | 4 +- addons/base_action_rule/i18n/ca.po | 4 +- addons/base_action_rule/i18n/cs.po | 4 +- addons/base_action_rule/i18n/da.po | 4 +- addons/base_action_rule/i18n/de.po | 4 +- addons/base_action_rule/i18n/el.po | 4 +- addons/base_action_rule/i18n/es.po | 4 +- addons/base_action_rule/i18n/es_CR.po | 4 +- addons/base_action_rule/i18n/es_EC.po | 4 +- addons/base_action_rule/i18n/es_PY.po | 4 +- addons/base_action_rule/i18n/fa.po | 4 +- addons/base_action_rule/i18n/fi.po | 4 +- addons/base_action_rule/i18n/fr.po | 4 +- addons/base_action_rule/i18n/gl.po | 4 +- addons/base_action_rule/i18n/gu.po | 4 +- addons/base_action_rule/i18n/hr.po | 4 +- addons/base_action_rule/i18n/hu.po | 4 +- addons/base_action_rule/i18n/it.po | 4 +- addons/base_action_rule/i18n/ja.po | 4 +- addons/base_action_rule/i18n/lt.po | 4 +- addons/base_action_rule/i18n/lv.po | 4 +- addons/base_action_rule/i18n/mk.po | 4 +- addons/base_action_rule/i18n/mn.po | 4 +- addons/base_action_rule/i18n/nb.po | 4 +- addons/base_action_rule/i18n/nl.po | 4 +- addons/base_action_rule/i18n/pl.po | 4 +- addons/base_action_rule/i18n/pt.po | 4 +- addons/base_action_rule/i18n/pt_BR.po | 4 +- addons/base_action_rule/i18n/ro.po | 4 +- addons/base_action_rule/i18n/ru.po | 4 +- addons/base_action_rule/i18n/sl.po | 4 +- addons/base_action_rule/i18n/sq.po | 4 +- addons/base_action_rule/i18n/sr.po | 4 +- addons/base_action_rule/i18n/sr@latin.po | 4 +- addons/base_action_rule/i18n/sv.po | 4 +- addons/base_action_rule/i18n/tr.po | 4 +- addons/base_action_rule/i18n/zh_CN.po | 4 +- addons/base_action_rule/i18n/zh_TW.po | 4 +- addons/base_calendar/i18n/af.po | 4 +- addons/base_calendar/i18n/ar.po | 4 +- addons/base_calendar/i18n/bg.po | 4 +- addons/base_calendar/i18n/bn.po | 4 +- addons/base_calendar/i18n/bs.po | 4 +- addons/base_calendar/i18n/ca.po | 4 +- addons/base_calendar/i18n/cs.po | 4 +- addons/base_calendar/i18n/da.po | 4 +- addons/base_calendar/i18n/de.po | 4 +- addons/base_calendar/i18n/el.po | 4 +- addons/base_calendar/i18n/es.po | 4 +- addons/base_calendar/i18n/es_CR.po | 4 +- addons/base_calendar/i18n/es_EC.po | 4 +- addons/base_calendar/i18n/es_PY.po | 4 +- addons/base_calendar/i18n/et.po | 4 +- addons/base_calendar/i18n/fa.po | 4 +- addons/base_calendar/i18n/fi.po | 4 +- addons/base_calendar/i18n/fr.po | 4 +- addons/base_calendar/i18n/gl.po | 4 +- addons/base_calendar/i18n/hr.po | 4 +- addons/base_calendar/i18n/hu.po | 4 +- addons/base_calendar/i18n/id.po | 4 +- addons/base_calendar/i18n/it.po | 4 +- addons/base_calendar/i18n/ja.po | 4 +- addons/base_calendar/i18n/ln.po | 4 +- addons/base_calendar/i18n/lt.po | 4 +- addons/base_calendar/i18n/lv.po | 4 +- addons/base_calendar/i18n/mk.po | 4 +- addons/base_calendar/i18n/mn.po | 4 +- addons/base_calendar/i18n/nb.po | 4 +- addons/base_calendar/i18n/nl.po | 4 +- addons/base_calendar/i18n/pl.po | 4 +- addons/base_calendar/i18n/pt.po | 4 +- addons/base_calendar/i18n/pt_BR.po | 4 +- addons/base_calendar/i18n/ro.po | 4 +- addons/base_calendar/i18n/ru.po | 4 +- addons/base_calendar/i18n/sk.po | 4 +- addons/base_calendar/i18n/sl.po | 4 +- addons/base_calendar/i18n/sq.po | 4 +- addons/base_calendar/i18n/sr.po | 4 +- addons/base_calendar/i18n/sr@latin.po | 4 +- addons/base_calendar/i18n/sv.po | 4 +- addons/base_calendar/i18n/th.po | 4 +- addons/base_calendar/i18n/tr.po | 4 +- addons/base_calendar/i18n/zh_CN.po | 4 +- addons/base_calendar/i18n/zh_TW.po | 4 +- addons/base_gengo/i18n/ar.po | 4 +- addons/base_gengo/i18n/de.po | 4 +- addons/base_gengo/i18n/es.po | 4 +- addons/base_gengo/i18n/fr.po | 4 +- addons/base_gengo/i18n/hr.po | 4 +- addons/base_gengo/i18n/hu.po | 4 +- addons/base_gengo/i18n/it.po | 4 +- addons/base_gengo/i18n/mk.po | 4 +- addons/base_gengo/i18n/mn.po | 4 +- addons/base_gengo/i18n/nb.po | 4 +- addons/base_gengo/i18n/nl.po | 4 +- addons/base_gengo/i18n/pt.po | 4 +- addons/base_gengo/i18n/pt_BR.po | 4 +- addons/base_gengo/i18n/ro.po | 4 +- addons/base_gengo/i18n/sl.po | 4 +- addons/base_gengo/i18n/tr.po | 4 +- addons/base_gengo/i18n/zh_CN.po | 4 +- addons/base_iban/i18n/ar.po | 4 +- addons/base_iban/i18n/bg.po | 4 +- addons/base_iban/i18n/bs.po | 4 +- addons/base_iban/i18n/ca.po | 4 +- addons/base_iban/i18n/cs.po | 4 +- addons/base_iban/i18n/da.po | 4 +- addons/base_iban/i18n/de.po | 4 +- addons/base_iban/i18n/el.po | 4 +- addons/base_iban/i18n/en_GB.po | 4 +- addons/base_iban/i18n/es.po | 4 +- addons/base_iban/i18n/es_AR.po | 4 +- addons/base_iban/i18n/es_CR.po | 4 +- addons/base_iban/i18n/es_EC.po | 4 +- addons/base_iban/i18n/es_PY.po | 4 +- addons/base_iban/i18n/et.po | 4 +- addons/base_iban/i18n/eu.po | 4 +- addons/base_iban/i18n/fa.po | 4 +- addons/base_iban/i18n/fi.po | 4 +- addons/base_iban/i18n/fr.po | 4 +- addons/base_iban/i18n/gl.po | 4 +- addons/base_iban/i18n/gu.po | 4 +- addons/base_iban/i18n/hr.po | 4 +- addons/base_iban/i18n/hu.po | 17 +- addons/base_iban/i18n/id.po | 4 +- addons/base_iban/i18n/it.po | 4 +- addons/base_iban/i18n/ja.po | 4 +- addons/base_iban/i18n/ko.po | 4 +- addons/base_iban/i18n/lt.po | 4 +- addons/base_iban/i18n/lv.po | 4 +- addons/base_iban/i18n/mk.po | 4 +- addons/base_iban/i18n/mn.po | 4 +- addons/base_iban/i18n/nb.po | 4 +- addons/base_iban/i18n/nl.po | 4 +- addons/base_iban/i18n/nl_BE.po | 4 +- addons/base_iban/i18n/oc.po | 4 +- addons/base_iban/i18n/pl.po | 4 +- addons/base_iban/i18n/pt.po | 4 +- addons/base_iban/i18n/pt_BR.po | 4 +- addons/base_iban/i18n/ro.po | 4 +- addons/base_iban/i18n/ru.po | 4 +- addons/base_iban/i18n/sk.po | 4 +- addons/base_iban/i18n/sl.po | 4 +- addons/base_iban/i18n/sq.po | 4 +- addons/base_iban/i18n/sr.po | 4 +- addons/base_iban/i18n/sr@latin.po | 4 +- addons/base_iban/i18n/sv.po | 4 +- addons/base_iban/i18n/ta.po | 4 +- addons/base_iban/i18n/tlh.po | 4 +- addons/base_iban/i18n/tr.po | 4 +- addons/base_iban/i18n/uk.po | 4 +- addons/base_iban/i18n/vi.po | 4 +- addons/base_iban/i18n/zh_CN.po | 4 +- addons/base_iban/i18n/zh_TW.po | 4 +- addons/base_import/i18n/ar.po | 4 +- addons/base_import/i18n/de.po | 4 +- addons/base_import/i18n/es.po | 4 +- addons/base_import/i18n/et.po | 4 +- addons/base_import/i18n/fr.po | 4 +- addons/base_import/i18n/hr.po | 4 +- addons/base_import/i18n/hu.po | 84 +- addons/base_import/i18n/it.po | 4 +- addons/base_import/i18n/mk.po | 4 +- addons/base_import/i18n/mn.po | 4 +- addons/base_import/i18n/nb.po | 4 +- addons/base_import/i18n/nl.po | 4 +- addons/base_import/i18n/pl.po | 4 +- addons/base_import/i18n/pt.po | 4 +- addons/base_import/i18n/pt_BR.po | 4 +- addons/base_import/i18n/ro.po | 4 +- addons/base_import/i18n/ru.po | 4 +- addons/base_import/i18n/sl.po | 4 +- addons/base_import/i18n/tr.po | 4 +- addons/base_import/i18n/zh_CN.po | 4 +- addons/base_report_designer/i18n/ar.po | 4 +- addons/base_report_designer/i18n/bg.po | 4 +- addons/base_report_designer/i18n/bs.po | 4 +- addons/base_report_designer/i18n/ca.po | 4 +- addons/base_report_designer/i18n/cs.po | 4 +- addons/base_report_designer/i18n/da.po | 4 +- addons/base_report_designer/i18n/de.po | 4 +- addons/base_report_designer/i18n/el.po | 4 +- addons/base_report_designer/i18n/en_GB.po | 4 +- addons/base_report_designer/i18n/es.po | 4 +- addons/base_report_designer/i18n/es_AR.po | 4 +- addons/base_report_designer/i18n/es_CR.po | 4 +- addons/base_report_designer/i18n/es_EC.po | 4 +- addons/base_report_designer/i18n/es_PY.po | 4 +- addons/base_report_designer/i18n/et.po | 4 +- addons/base_report_designer/i18n/fa.po | 4 +- addons/base_report_designer/i18n/fi.po | 4 +- addons/base_report_designer/i18n/fr.po | 4 +- addons/base_report_designer/i18n/gl.po | 4 +- addons/base_report_designer/i18n/hr.po | 4 +- addons/base_report_designer/i18n/hu.po | 16 +- addons/base_report_designer/i18n/id.po | 4 +- addons/base_report_designer/i18n/it.po | 4 +- addons/base_report_designer/i18n/ja.po | 4 +- addons/base_report_designer/i18n/ko.po | 4 +- addons/base_report_designer/i18n/lt.po | 4 +- addons/base_report_designer/i18n/mk.po | 4 +- addons/base_report_designer/i18n/mn.po | 4 +- addons/base_report_designer/i18n/nb.po | 4 +- addons/base_report_designer/i18n/nl.po | 4 +- addons/base_report_designer/i18n/nl_BE.po | 4 +- addons/base_report_designer/i18n/pl.po | 4 +- addons/base_report_designer/i18n/pt.po | 4 +- addons/base_report_designer/i18n/pt_BR.po | 4 +- addons/base_report_designer/i18n/ro.po | 4 +- addons/base_report_designer/i18n/ru.po | 4 +- addons/base_report_designer/i18n/sk.po | 4 +- addons/base_report_designer/i18n/sl.po | 4 +- addons/base_report_designer/i18n/sq.po | 4 +- addons/base_report_designer/i18n/sr.po | 4 +- addons/base_report_designer/i18n/sr@latin.po | 4 +- addons/base_report_designer/i18n/sv.po | 4 +- addons/base_report_designer/i18n/tlh.po | 4 +- addons/base_report_designer/i18n/tr.po | 4 +- addons/base_report_designer/i18n/uk.po | 4 +- addons/base_report_designer/i18n/vi.po | 4 +- addons/base_report_designer/i18n/zh_CN.po | 4 +- addons/base_report_designer/i18n/zh_TW.po | 4 +- addons/base_setup/i18n/ar.po | 4 +- addons/base_setup/i18n/bg.po | 4 +- addons/base_setup/i18n/bs.po | 4 +- addons/base_setup/i18n/ca.po | 4 +- addons/base_setup/i18n/cs.po | 4 +- addons/base_setup/i18n/da.po | 4 +- addons/base_setup/i18n/de.po | 4 +- addons/base_setup/i18n/el.po | 4 +- addons/base_setup/i18n/en_GB.po | 4 +- addons/base_setup/i18n/es.po | 4 +- addons/base_setup/i18n/es_AR.po | 4 +- addons/base_setup/i18n/es_CL.po | 4 +- addons/base_setup/i18n/es_CR.po | 4 +- addons/base_setup/i18n/es_EC.po | 4 +- addons/base_setup/i18n/es_MX.po | 4 +- addons/base_setup/i18n/es_PY.po | 4 +- addons/base_setup/i18n/et.po | 4 +- addons/base_setup/i18n/fa.po | 4 +- addons/base_setup/i18n/fi.po | 4 +- addons/base_setup/i18n/fr.po | 4 +- addons/base_setup/i18n/gl.po | 4 +- addons/base_setup/i18n/gu.po | 4 +- addons/base_setup/i18n/hr.po | 4 +- addons/base_setup/i18n/hu.po | 4 +- addons/base_setup/i18n/id.po | 4 +- addons/base_setup/i18n/it.po | 4 +- addons/base_setup/i18n/ja.po | 4 +- addons/base_setup/i18n/ko.po | 4 +- addons/base_setup/i18n/lt.po | 4 +- addons/base_setup/i18n/lv.po | 4 +- addons/base_setup/i18n/mk.po | 4 +- addons/base_setup/i18n/mn.po | 4 +- addons/base_setup/i18n/nb.po | 4 +- addons/base_setup/i18n/nl.po | 4 +- addons/base_setup/i18n/nl_BE.po | 4 +- addons/base_setup/i18n/pl.po | 4 +- addons/base_setup/i18n/pt.po | 4 +- addons/base_setup/i18n/pt_BR.po | 4 +- addons/base_setup/i18n/ro.po | 4 +- addons/base_setup/i18n/ru.po | 4 +- addons/base_setup/i18n/sk.po | 4 +- addons/base_setup/i18n/sl.po | 4 +- addons/base_setup/i18n/sq.po | 4 +- addons/base_setup/i18n/sr.po | 4 +- addons/base_setup/i18n/sr@latin.po | 4 +- addons/base_setup/i18n/sv.po | 4 +- addons/base_setup/i18n/th.po | 4 +- addons/base_setup/i18n/tlh.po | 4 +- addons/base_setup/i18n/tr.po | 4 +- addons/base_setup/i18n/uk.po | 4 +- addons/base_setup/i18n/vi.po | 4 +- addons/base_setup/i18n/zh_CN.po | 4 +- addons/base_setup/i18n/zh_TW.po | 4 +- addons/base_status/i18n/ar.po | 4 +- addons/base_status/i18n/de.po | 4 +- addons/base_status/i18n/en_GB.po | 4 +- addons/base_status/i18n/es.po | 4 +- addons/base_status/i18n/fr.po | 4 +- addons/base_status/i18n/hr.po | 4 +- addons/base_status/i18n/hu.po | 4 +- addons/base_status/i18n/id.po | 4 +- addons/base_status/i18n/it.po | 4 +- addons/base_status/i18n/mk.po | 4 +- addons/base_status/i18n/mn.po | 4 +- addons/base_status/i18n/nl.po | 4 +- addons/base_status/i18n/pl.po | 4 +- addons/base_status/i18n/pt.po | 4 +- addons/base_status/i18n/pt_BR.po | 4 +- addons/base_status/i18n/ro.po | 4 +- addons/base_status/i18n/ru.po | 4 +- addons/base_status/i18n/sl.po | 4 +- addons/base_status/i18n/tr.po | 4 +- addons/base_status/i18n/zh_CN.po | 4 +- addons/base_status/i18n/zh_TW.po | 4 +- addons/base_vat/i18n/ar.po | 4 +- addons/base_vat/i18n/bg.po | 4 +- addons/base_vat/i18n/bs.po | 4 +- addons/base_vat/i18n/ca.po | 4 +- addons/base_vat/i18n/cs.po | 4 +- addons/base_vat/i18n/da.po | 4 +- addons/base_vat/i18n/de.po | 4 +- addons/base_vat/i18n/el.po | 4 +- addons/base_vat/i18n/en_AU.po | 4 +- addons/base_vat/i18n/en_GB.po | 4 +- addons/base_vat/i18n/es.po | 4 +- addons/base_vat/i18n/es_AR.po | 4 +- addons/base_vat/i18n/es_CL.po | 4 +- addons/base_vat/i18n/es_CR.po | 4 +- addons/base_vat/i18n/es_EC.po | 4 +- addons/base_vat/i18n/es_MX.po | 4 +- addons/base_vat/i18n/es_PY.po | 4 +- addons/base_vat/i18n/et.po | 4 +- addons/base_vat/i18n/eu.po | 4 +- addons/base_vat/i18n/fa.po | 4 +- addons/base_vat/i18n/fi.po | 4 +- addons/base_vat/i18n/fr.po | 4 +- addons/base_vat/i18n/gl.po | 4 +- addons/base_vat/i18n/gu.po | 4 +- addons/base_vat/i18n/hr.po | 4 +- addons/base_vat/i18n/hu.po | 4 +- addons/base_vat/i18n/id.po | 4 +- addons/base_vat/i18n/it.po | 4 +- addons/base_vat/i18n/ja.po | 4 +- addons/base_vat/i18n/ko.po | 4 +- addons/base_vat/i18n/lt.po | 4 +- addons/base_vat/i18n/lv.po | 4 +- addons/base_vat/i18n/mk.po | 4 +- addons/base_vat/i18n/mn.po | 4 +- addons/base_vat/i18n/nb.po | 4 +- addons/base_vat/i18n/nl.po | 4 +- addons/base_vat/i18n/nl_BE.po | 4 +- addons/base_vat/i18n/oc.po | 4 +- addons/base_vat/i18n/pl.po | 4 +- addons/base_vat/i18n/pt.po | 4 +- addons/base_vat/i18n/pt_BR.po | 4 +- addons/base_vat/i18n/ro.po | 4 +- addons/base_vat/i18n/ru.po | 4 +- addons/base_vat/i18n/sk.po | 4 +- addons/base_vat/i18n/sl.po | 4 +- addons/base_vat/i18n/sq.po | 4 +- addons/base_vat/i18n/sr.po | 4 +- addons/base_vat/i18n/sr@latin.po | 4 +- addons/base_vat/i18n/sv.po | 4 +- addons/base_vat/i18n/th.po | 4 +- addons/base_vat/i18n/tlh.po | 4 +- addons/base_vat/i18n/tr.po | 4 +- addons/base_vat/i18n/uk.po | 4 +- addons/base_vat/i18n/vi.po | 4 +- addons/base_vat/i18n/zh_CN.po | 4 +- addons/base_vat/i18n/zh_TW.po | 4 +- addons/board/i18n/ar.po | 4 +- addons/board/i18n/bg.po | 4 +- addons/board/i18n/br.po | 4 +- addons/board/i18n/bs.po | 4 +- addons/board/i18n/ca.po | 4 +- addons/board/i18n/cs.po | 4 +- addons/board/i18n/da.po | 4 +- addons/board/i18n/de.po | 4 +- addons/board/i18n/el.po | 4 +- addons/board/i18n/en_GB.po | 4 +- addons/board/i18n/es.po | 4 +- addons/board/i18n/es_AR.po | 4 +- addons/board/i18n/es_CL.po | 4 +- addons/board/i18n/es_CR.po | 4 +- addons/board/i18n/es_EC.po | 4 +- addons/board/i18n/es_PY.po | 4 +- addons/board/i18n/et.po | 4 +- addons/board/i18n/fa.po | 4 +- addons/board/i18n/fi.po | 4 +- addons/board/i18n/fr.po | 4 +- addons/board/i18n/gl.po | 4 +- addons/board/i18n/gu.po | 4 +- addons/board/i18n/hr.po | 4 +- addons/board/i18n/hu.po | 4 +- addons/board/i18n/id.po | 4 +- addons/board/i18n/it.po | 4 +- addons/board/i18n/ja.po | 4 +- addons/board/i18n/ko.po | 4 +- addons/board/i18n/ln.po | 4 +- addons/board/i18n/lt.po | 4 +- addons/board/i18n/lv.po | 4 +- addons/board/i18n/mk.po | 4 +- addons/board/i18n/mn.po | 4 +- addons/board/i18n/nb.po | 4 +- addons/board/i18n/nl.po | 4 +- addons/board/i18n/nl_BE.po | 4 +- addons/board/i18n/pl.po | 4 +- addons/board/i18n/pt.po | 4 +- addons/board/i18n/pt_BR.po | 4 +- addons/board/i18n/ro.po | 4 +- addons/board/i18n/ru.po | 4 +- addons/board/i18n/sk.po | 4 +- addons/board/i18n/sl.po | 4 +- addons/board/i18n/sq.po | 4 +- addons/board/i18n/sr.po | 4 +- addons/board/i18n/sr@latin.po | 4 +- addons/board/i18n/sv.po | 4 +- addons/board/i18n/th.po | 4 +- addons/board/i18n/tlh.po | 4 +- addons/board/i18n/tr.po | 4 +- addons/board/i18n/uk.po | 4 +- addons/board/i18n/vi.po | 4 +- addons/board/i18n/zh_CN.po | 4 +- addons/board/i18n/zh_TW.po | 4 +- addons/claim_from_delivery/i18n/ar.po | 4 +- addons/claim_from_delivery/i18n/bg.po | 4 +- addons/claim_from_delivery/i18n/ca.po | 4 +- addons/claim_from_delivery/i18n/cs.po | 4 +- addons/claim_from_delivery/i18n/da.po | 4 +- addons/claim_from_delivery/i18n/de.po | 4 +- addons/claim_from_delivery/i18n/en_GB.po | 4 +- addons/claim_from_delivery/i18n/es.po | 4 +- addons/claim_from_delivery/i18n/es_AR.po | 4 +- addons/claim_from_delivery/i18n/es_CL.po | 4 +- addons/claim_from_delivery/i18n/es_CR.po | 4 +- addons/claim_from_delivery/i18n/es_EC.po | 4 +- addons/claim_from_delivery/i18n/es_PY.po | 4 +- addons/claim_from_delivery/i18n/fa.po | 4 +- addons/claim_from_delivery/i18n/fi.po | 4 +- addons/claim_from_delivery/i18n/fr.po | 4 +- addons/claim_from_delivery/i18n/gl.po | 4 +- addons/claim_from_delivery/i18n/gu.po | 4 +- addons/claim_from_delivery/i18n/hr.po | 4 +- addons/claim_from_delivery/i18n/hu.po | 4 +- addons/claim_from_delivery/i18n/id.po | 4 +- addons/claim_from_delivery/i18n/it.po | 4 +- addons/claim_from_delivery/i18n/ja.po | 4 +- addons/claim_from_delivery/i18n/lo.po | 4 +- addons/claim_from_delivery/i18n/lt.po | 4 +- addons/claim_from_delivery/i18n/mk.po | 4 +- addons/claim_from_delivery/i18n/mn.po | 4 +- addons/claim_from_delivery/i18n/nb.po | 4 +- addons/claim_from_delivery/i18n/nl.po | 4 +- addons/claim_from_delivery/i18n/nl_BE.po | 4 +- addons/claim_from_delivery/i18n/oc.po | 4 +- addons/claim_from_delivery/i18n/pl.po | 4 +- addons/claim_from_delivery/i18n/pt.po | 4 +- addons/claim_from_delivery/i18n/pt_BR.po | 4 +- addons/claim_from_delivery/i18n/ro.po | 4 +- addons/claim_from_delivery/i18n/ru.po | 4 +- addons/claim_from_delivery/i18n/sl.po | 4 +- addons/claim_from_delivery/i18n/sq.po | 4 +- addons/claim_from_delivery/i18n/sr.po | 4 +- addons/claim_from_delivery/i18n/sr@latin.po | 4 +- addons/claim_from_delivery/i18n/sv.po | 4 +- addons/claim_from_delivery/i18n/ta.po | 4 +- addons/claim_from_delivery/i18n/tr.po | 4 +- addons/claim_from_delivery/i18n/zh_CN.po | 4 +- addons/claim_from_delivery/i18n/zh_TW.po | 4 +- addons/contacts/i18n/ar.po | 4 +- addons/contacts/i18n/cs.po | 4 +- addons/contacts/i18n/de.po | 4 +- addons/contacts/i18n/en_GB.po | 4 +- addons/contacts/i18n/es.po | 4 +- addons/contacts/i18n/es_CO.po | 4 +- addons/contacts/i18n/et.po | 4 +- addons/contacts/i18n/fr.po | 4 +- addons/contacts/i18n/hr.po | 4 +- addons/contacts/i18n/hu.po | 4 +- addons/contacts/i18n/it.po | 4 +- addons/contacts/i18n/mk.po | 4 +- addons/contacts/i18n/mn.po | 4 +- addons/contacts/i18n/nl.po | 4 +- addons/contacts/i18n/pl.po | 4 +- addons/contacts/i18n/pt.po | 4 +- addons/contacts/i18n/pt_BR.po | 4 +- addons/contacts/i18n/ro.po | 4 +- addons/contacts/i18n/ru.po | 4 +- addons/contacts/i18n/sl.po | 4 +- addons/contacts/i18n/sv.po | 4 +- addons/contacts/i18n/tr.po | 4 +- addons/contacts/i18n/zh_CN.po | 4 +- addons/contacts/i18n/zh_TW.po | 4 +- addons/crm/i18n/ar.po | 4 +- addons/crm/i18n/bg.po | 4 +- addons/crm/i18n/bs.po | 4 +- addons/crm/i18n/ca.po | 4 +- addons/crm/i18n/cs.po | 789 ++- addons/crm/i18n/da.po | 4 +- addons/crm/i18n/de.po | 4 +- addons/crm/i18n/el.po | 4 +- addons/crm/i18n/es.po | 4 +- addons/crm/i18n/es_AR.po | 4 +- addons/crm/i18n/es_CR.po | 4 +- addons/crm/i18n/es_EC.po | 4 +- addons/crm/i18n/es_MX.po | 5141 ++++++----------- addons/crm/i18n/es_PY.po | 4 +- addons/crm/i18n/et.po | 4 +- addons/crm/i18n/fi.po | 4 +- addons/crm/i18n/fr.po | 4 +- addons/crm/i18n/gl.po | 4 +- addons/crm/i18n/gu.po | 4 +- addons/crm/i18n/hr.po | 4 +- addons/crm/i18n/hu.po | 54 +- addons/crm/i18n/id.po | 4 +- addons/crm/i18n/it.po | 4 +- addons/crm/i18n/ja.po | 4 +- addons/crm/i18n/ko.po | 276 +- addons/crm/i18n/lo.po | 4 +- addons/crm/i18n/lt.po | 4 +- addons/crm/i18n/lv.po | 4 +- addons/crm/i18n/mk.po | 4 +- addons/crm/i18n/mn.po | 4 +- addons/crm/i18n/nb.po | 4 +- addons/crm/i18n/nl.po | 4 +- addons/crm/i18n/nl_BE.po | 4 +- addons/crm/i18n/pl.po | 4 +- addons/crm/i18n/pt.po | 4 +- addons/crm/i18n/pt_BR.po | 4 +- addons/crm/i18n/ro.po | 4 +- addons/crm/i18n/ru.po | 4 +- addons/crm/i18n/sk.po | 4 +- addons/crm/i18n/sl.po | 4 +- addons/crm/i18n/sq.po | 4 +- addons/crm/i18n/sr.po | 4 +- addons/crm/i18n/sr@latin.po | 4 +- addons/crm/i18n/sv.po | 4 +- addons/crm/i18n/th.po | 4 +- addons/crm/i18n/tlh.po | 4 +- addons/crm/i18n/tr.po | 4 +- addons/crm/i18n/uk.po | 4 +- addons/crm/i18n/vi.po | 4 +- addons/crm/i18n/zh_CN.po | 4 +- addons/crm/i18n/zh_TW.po | 4 +- addons/crm_claim/i18n/ar.po | 4 +- addons/crm_claim/i18n/bg.po | 4 +- addons/crm_claim/i18n/ca.po | 4 +- addons/crm_claim/i18n/da.po | 4 +- addons/crm_claim/i18n/de.po | 4 +- addons/crm_claim/i18n/el.po | 4 +- addons/crm_claim/i18n/es.po | 4 +- addons/crm_claim/i18n/es_CR.po | 4 +- addons/crm_claim/i18n/es_EC.po | 4 +- addons/crm_claim/i18n/es_PY.po | 4 +- addons/crm_claim/i18n/fi.po | 4 +- addons/crm_claim/i18n/fr.po | 4 +- addons/crm_claim/i18n/gl.po | 4 +- addons/crm_claim/i18n/gu.po | 4 +- addons/crm_claim/i18n/hr.po | 4 +- addons/crm_claim/i18n/hu.po | 4 +- addons/crm_claim/i18n/it.po | 4 +- addons/crm_claim/i18n/ja.po | 4 +- addons/crm_claim/i18n/lt.po | 4 +- addons/crm_claim/i18n/mk.po | 4 +- addons/crm_claim/i18n/mn.po | 4 +- addons/crm_claim/i18n/nb.po | 4 +- addons/crm_claim/i18n/nl.po | 4 +- addons/crm_claim/i18n/pl.po | 4 +- addons/crm_claim/i18n/pt.po | 4 +- addons/crm_claim/i18n/pt_BR.po | 4 +- addons/crm_claim/i18n/ro.po | 4 +- addons/crm_claim/i18n/ru.po | 4 +- addons/crm_claim/i18n/sl.po | 4 +- addons/crm_claim/i18n/sq.po | 4 +- addons/crm_claim/i18n/sr.po | 4 +- addons/crm_claim/i18n/sr@latin.po | 4 +- addons/crm_claim/i18n/sv.po | 4 +- addons/crm_claim/i18n/tr.po | 4 +- addons/crm_claim/i18n/zh_CN.po | 4 +- addons/crm_claim/i18n/zh_TW.po | 4 +- addons/crm_helpdesk/i18n/ar.po | 4 +- addons/crm_helpdesk/i18n/bg.po | 4 +- addons/crm_helpdesk/i18n/ca.po | 4 +- addons/crm_helpdesk/i18n/da.po | 4 +- addons/crm_helpdesk/i18n/de.po | 4 +- addons/crm_helpdesk/i18n/el.po | 4 +- addons/crm_helpdesk/i18n/es.po | 4 +- addons/crm_helpdesk/i18n/es_CR.po | 4 +- addons/crm_helpdesk/i18n/es_PY.po | 4 +- addons/crm_helpdesk/i18n/fi.po | 4 +- addons/crm_helpdesk/i18n/fr.po | 4 +- addons/crm_helpdesk/i18n/gl.po | 4 +- addons/crm_helpdesk/i18n/gu.po | 4 +- addons/crm_helpdesk/i18n/hr.po | 4 +- addons/crm_helpdesk/i18n/hu.po | 4 +- addons/crm_helpdesk/i18n/it.po | 4 +- addons/crm_helpdesk/i18n/ja.po | 4 +- addons/crm_helpdesk/i18n/lt.po | 4 +- addons/crm_helpdesk/i18n/lv.po | 4 +- addons/crm_helpdesk/i18n/mk.po | 4 +- addons/crm_helpdesk/i18n/mn.po | 4 +- addons/crm_helpdesk/i18n/nb.po | 4 +- addons/crm_helpdesk/i18n/nl.po | 4 +- addons/crm_helpdesk/i18n/pl.po | 4 +- addons/crm_helpdesk/i18n/pt.po | 4 +- addons/crm_helpdesk/i18n/pt_BR.po | 4 +- addons/crm_helpdesk/i18n/ro.po | 4 +- addons/crm_helpdesk/i18n/ru.po | 4 +- addons/crm_helpdesk/i18n/sl.po | 4 +- addons/crm_helpdesk/i18n/sq.po | 4 +- addons/crm_helpdesk/i18n/sr.po | 4 +- addons/crm_helpdesk/i18n/sr@latin.po | 4 +- addons/crm_helpdesk/i18n/sv.po | 4 +- addons/crm_helpdesk/i18n/tr.po | 4 +- addons/crm_helpdesk/i18n/zh_CN.po | 4 +- addons/crm_helpdesk/i18n/zh_TW.po | 4 +- addons/crm_partner_assign/i18n/ar.po | 4 +- addons/crm_partner_assign/i18n/bg.po | 4 +- addons/crm_partner_assign/i18n/ca.po | 4 +- addons/crm_partner_assign/i18n/da.po | 4 +- addons/crm_partner_assign/i18n/de.po | 4 +- addons/crm_partner_assign/i18n/el.po | 4 +- addons/crm_partner_assign/i18n/es.po | 4 +- addons/crm_partner_assign/i18n/es_CR.po | 4 +- addons/crm_partner_assign/i18n/es_PY.po | 4 +- addons/crm_partner_assign/i18n/fi.po | 4 +- addons/crm_partner_assign/i18n/fr.po | 4 +- addons/crm_partner_assign/i18n/gl.po | 4 +- addons/crm_partner_assign/i18n/hr.po | 4 +- addons/crm_partner_assign/i18n/hu.po | 4 +- addons/crm_partner_assign/i18n/it.po | 4 +- addons/crm_partner_assign/i18n/ja.po | 4 +- addons/crm_partner_assign/i18n/lt.po | 4 +- addons/crm_partner_assign/i18n/lv.po | 4 +- addons/crm_partner_assign/i18n/mk.po | 8 +- addons/crm_partner_assign/i18n/mn.po | 4 +- addons/crm_partner_assign/i18n/nb.po | 4 +- addons/crm_partner_assign/i18n/nl.po | 4 +- addons/crm_partner_assign/i18n/pl.po | 4 +- addons/crm_partner_assign/i18n/pt.po | 4 +- addons/crm_partner_assign/i18n/pt_BR.po | 4 +- addons/crm_partner_assign/i18n/ro.po | 4 +- addons/crm_partner_assign/i18n/ru.po | 4 +- addons/crm_partner_assign/i18n/sl.po | 4 +- addons/crm_partner_assign/i18n/sq.po | 4 +- addons/crm_partner_assign/i18n/sr@latin.po | 4 +- addons/crm_partner_assign/i18n/sv.po | 4 +- addons/crm_partner_assign/i18n/tr.po | 4 +- addons/crm_partner_assign/i18n/zh_CN.po | 4 +- addons/crm_partner_assign/i18n/zh_TW.po | 4 +- addons/crm_profiling/i18n/ar.po | 4 +- addons/crm_profiling/i18n/bg.po | 4 +- addons/crm_profiling/i18n/bs.po | 4 +- addons/crm_profiling/i18n/ca.po | 4 +- addons/crm_profiling/i18n/cs.po | 4 +- addons/crm_profiling/i18n/da.po | 4 +- addons/crm_profiling/i18n/de.po | 4 +- addons/crm_profiling/i18n/el.po | 4 +- addons/crm_profiling/i18n/en_GB.po | 4 +- addons/crm_profiling/i18n/es.po | 4 +- addons/crm_profiling/i18n/es_AR.po | 4 +- addons/crm_profiling/i18n/es_CR.po | 4 +- addons/crm_profiling/i18n/es_EC.po | 4 +- addons/crm_profiling/i18n/es_PY.po | 4 +- addons/crm_profiling/i18n/et.po | 4 +- addons/crm_profiling/i18n/fi.po | 4 +- addons/crm_profiling/i18n/fr.po | 4 +- addons/crm_profiling/i18n/gl.po | 4 +- addons/crm_profiling/i18n/gu.po | 4 +- addons/crm_profiling/i18n/hr.po | 4 +- addons/crm_profiling/i18n/hu.po | 4 +- addons/crm_profiling/i18n/id.po | 4 +- addons/crm_profiling/i18n/it.po | 4 +- addons/crm_profiling/i18n/ja.po | 4 +- addons/crm_profiling/i18n/ko.po | 4 +- addons/crm_profiling/i18n/lt.po | 4 +- addons/crm_profiling/i18n/lv.po | 4 +- addons/crm_profiling/i18n/mk.po | 4 +- addons/crm_profiling/i18n/mn.po | 4 +- addons/crm_profiling/i18n/nb.po | 4 +- addons/crm_profiling/i18n/nl.po | 4 +- addons/crm_profiling/i18n/nl_BE.po | 4 +- addons/crm_profiling/i18n/pl.po | 4 +- addons/crm_profiling/i18n/pt.po | 4 +- addons/crm_profiling/i18n/pt_BR.po | 4 +- addons/crm_profiling/i18n/ro.po | 4 +- addons/crm_profiling/i18n/ru.po | 4 +- addons/crm_profiling/i18n/sk.po | 4 +- addons/crm_profiling/i18n/sl.po | 4 +- addons/crm_profiling/i18n/sq.po | 4 +- addons/crm_profiling/i18n/sr.po | 4 +- addons/crm_profiling/i18n/sr@latin.po | 4 +- addons/crm_profiling/i18n/sv.po | 4 +- addons/crm_profiling/i18n/tlh.po | 4 +- addons/crm_profiling/i18n/tr.po | 4 +- addons/crm_profiling/i18n/uk.po | 4 +- addons/crm_profiling/i18n/vi.po | 4 +- addons/crm_profiling/i18n/zh_CN.po | 4 +- addons/crm_profiling/i18n/zh_TW.po | 4 +- addons/crm_todo/i18n/ar.po | 4 +- addons/crm_todo/i18n/de.po | 4 +- addons/crm_todo/i18n/en_GB.po | 4 +- addons/crm_todo/i18n/es.po | 4 +- addons/crm_todo/i18n/es_CR.po | 4 +- addons/crm_todo/i18n/fi.po | 4 +- addons/crm_todo/i18n/fr.po | 4 +- addons/crm_todo/i18n/gu.po | 4 +- addons/crm_todo/i18n/hr.po | 4 +- addons/crm_todo/i18n/hu.po | 4 +- addons/crm_todo/i18n/it.po | 4 +- addons/crm_todo/i18n/ja.po | 4 +- addons/crm_todo/i18n/lt.po | 4 +- addons/crm_todo/i18n/mk.po | 4 +- addons/crm_todo/i18n/mn.po | 4 +- addons/crm_todo/i18n/nb.po | 4 +- addons/crm_todo/i18n/nl.po | 4 +- addons/crm_todo/i18n/pl.po | 4 +- addons/crm_todo/i18n/pt.po | 4 +- addons/crm_todo/i18n/pt_BR.po | 4 +- addons/crm_todo/i18n/ro.po | 4 +- addons/crm_todo/i18n/ru.po | 4 +- addons/crm_todo/i18n/sl.po | 4 +- addons/crm_todo/i18n/sr@latin.po | 4 +- addons/crm_todo/i18n/sv.po | 4 +- addons/crm_todo/i18n/tr.po | 4 +- addons/crm_todo/i18n/zh_CN.po | 4 +- addons/crm_todo/i18n/zh_TW.po | 4 +- addons/decimal_precision/i18n/ar.po | 4 +- addons/decimal_precision/i18n/bg.po | 4 +- addons/decimal_precision/i18n/ca.po | 4 +- addons/decimal_precision/i18n/cs.po | 4 +- addons/decimal_precision/i18n/da.po | 4 +- addons/decimal_precision/i18n/de.po | 4 +- addons/decimal_precision/i18n/el.po | 4 +- addons/decimal_precision/i18n/en_GB.po | 4 +- addons/decimal_precision/i18n/es.po | 4 +- addons/decimal_precision/i18n/es_CR.po | 4 +- addons/decimal_precision/i18n/es_EC.po | 4 +- addons/decimal_precision/i18n/es_MX.po | 4 +- addons/decimal_precision/i18n/es_PY.po | 4 +- addons/decimal_precision/i18n/fi.po | 4 +- addons/decimal_precision/i18n/fr.po | 4 +- addons/decimal_precision/i18n/gl.po | 4 +- addons/decimal_precision/i18n/gu.po | 4 +- addons/decimal_precision/i18n/hr.po | 4 +- addons/decimal_precision/i18n/hu.po | 4 +- addons/decimal_precision/i18n/id.po | 4 +- addons/decimal_precision/i18n/it.po | 4 +- addons/decimal_precision/i18n/ja.po | 4 +- addons/decimal_precision/i18n/lt.po | 4 +- addons/decimal_precision/i18n/lv.po | 4 +- addons/decimal_precision/i18n/mk.po | 4 +- addons/decimal_precision/i18n/mn.po | 4 +- addons/decimal_precision/i18n/nb.po | 4 +- addons/decimal_precision/i18n/nl.po | 4 +- addons/decimal_precision/i18n/nl_BE.po | 4 +- addons/decimal_precision/i18n/pl.po | 4 +- addons/decimal_precision/i18n/pt.po | 4 +- addons/decimal_precision/i18n/pt_BR.po | 4 +- addons/decimal_precision/i18n/ro.po | 4 +- addons/decimal_precision/i18n/ru.po | 4 +- addons/decimal_precision/i18n/sk.po | 4 +- addons/decimal_precision/i18n/sl.po | 4 +- addons/decimal_precision/i18n/sr.po | 4 +- addons/decimal_precision/i18n/sr@latin.po | 4 +- addons/decimal_precision/i18n/sv.po | 4 +- addons/decimal_precision/i18n/tr.po | 4 +- addons/decimal_precision/i18n/vi.po | 4 +- addons/decimal_precision/i18n/zh_CN.po | 4 +- addons/decimal_precision/i18n/zh_TW.po | 4 +- addons/delivery/i18n/ar.po | 4 +- addons/delivery/i18n/bg.po | 4 +- addons/delivery/i18n/bs.po | 4 +- addons/delivery/i18n/ca.po | 4 +- addons/delivery/i18n/cs.po | 4 +- addons/delivery/i18n/da.po | 4 +- addons/delivery/i18n/de.po | 4 +- addons/delivery/i18n/el.po | 4 +- addons/delivery/i18n/es.po | 4 +- addons/delivery/i18n/es_AR.po | 4 +- addons/delivery/i18n/es_CR.po | 4 +- addons/delivery/i18n/es_EC.po | 4 +- addons/delivery/i18n/es_MX.po | 4 +- addons/delivery/i18n/es_PY.po | 4 +- addons/delivery/i18n/et.po | 4 +- addons/delivery/i18n/fi.po | 4 +- addons/delivery/i18n/fr.po | 4 +- addons/delivery/i18n/gl.po | 4 +- addons/delivery/i18n/hi.po | 4 +- addons/delivery/i18n/hr.po | 4 +- addons/delivery/i18n/hu.po | 4 +- addons/delivery/i18n/id.po | 4 +- addons/delivery/i18n/it.po | 4 +- addons/delivery/i18n/ja.po | 4 +- addons/delivery/i18n/ko.po | 4 +- addons/delivery/i18n/lt.po | 4 +- addons/delivery/i18n/lv.po | 4 +- addons/delivery/i18n/mk.po | 4 +- addons/delivery/i18n/mn.po | 4 +- addons/delivery/i18n/nb.po | 4 +- addons/delivery/i18n/nl.po | 4 +- addons/delivery/i18n/nl_BE.po | 4 +- addons/delivery/i18n/pl.po | 4 +- addons/delivery/i18n/pt.po | 4 +- addons/delivery/i18n/pt_BR.po | 4 +- addons/delivery/i18n/ro.po | 4 +- addons/delivery/i18n/ru.po | 4 +- addons/delivery/i18n/sl.po | 4 +- addons/delivery/i18n/sq.po | 4 +- addons/delivery/i18n/sr.po | 4 +- addons/delivery/i18n/sr@latin.po | 4 +- addons/delivery/i18n/sv.po | 4 +- addons/delivery/i18n/th.po | 4 +- addons/delivery/i18n/tlh.po | 4 +- addons/delivery/i18n/tr.po | 4 +- addons/delivery/i18n/uk.po | 4 +- addons/delivery/i18n/vi.po | 4 +- addons/delivery/i18n/zh_CN.po | 4 +- addons/delivery/i18n/zh_TW.po | 4 +- addons/document/i18n/ar.po | 4 +- addons/document/i18n/bg.po | 4 +- addons/document/i18n/bs.po | 4 +- addons/document/i18n/ca.po | 4 +- addons/document/i18n/cs.po | 4 +- addons/document/i18n/da.po | 4 +- addons/document/i18n/de.po | 4 +- addons/document/i18n/el.po | 4 +- addons/document/i18n/es.po | 4 +- addons/document/i18n/es_AR.po | 4 +- addons/document/i18n/es_CR.po | 4 +- addons/document/i18n/es_EC.po | 4 +- addons/document/i18n/es_PY.po | 4 +- addons/document/i18n/et.po | 4 +- addons/document/i18n/fi.po | 4 +- addons/document/i18n/fr.po | 4 +- addons/document/i18n/gl.po | 4 +- addons/document/i18n/gu.po | 4 +- addons/document/i18n/hi.po | 4 +- addons/document/i18n/hr.po | 4 +- addons/document/i18n/hu.po | 4 +- addons/document/i18n/id.po | 4 +- addons/document/i18n/it.po | 4 +- addons/document/i18n/ja.po | 4 +- addons/document/i18n/ko.po | 4 +- addons/document/i18n/lt.po | 4 +- addons/document/i18n/lv.po | 4 +- addons/document/i18n/mk.po | 4 +- addons/document/i18n/mn.po | 4 +- addons/document/i18n/nb.po | 4 +- addons/document/i18n/nl.po | 4 +- addons/document/i18n/nl_BE.po | 4 +- addons/document/i18n/pl.po | 4 +- addons/document/i18n/pt.po | 4 +- addons/document/i18n/pt_BR.po | 4 +- addons/document/i18n/ro.po | 4 +- addons/document/i18n/ru.po | 4 +- addons/document/i18n/sk.po | 4 +- addons/document/i18n/sl.po | 4 +- addons/document/i18n/sq.po | 4 +- addons/document/i18n/sr.po | 4 +- addons/document/i18n/sr@latin.po | 4 +- addons/document/i18n/sv.po | 4 +- addons/document/i18n/tlh.po | 4 +- addons/document/i18n/tr.po | 4 +- addons/document/i18n/uk.po | 4 +- addons/document/i18n/vi.po | 4 +- addons/document/i18n/zh_CN.po | 4 +- addons/document/i18n/zh_HK.po | 4 +- addons/document/i18n/zh_TW.po | 4 +- addons/document_ftp/i18n/ar.po | 4 +- addons/document_ftp/i18n/bg.po | 4 +- addons/document_ftp/i18n/ca.po | 4 +- addons/document_ftp/i18n/cs.po | 4 +- addons/document_ftp/i18n/da.po | 4 +- addons/document_ftp/i18n/de.po | 4 +- addons/document_ftp/i18n/el.po | 4 +- addons/document_ftp/i18n/en_GB.po | 4 +- addons/document_ftp/i18n/es.po | 4 +- addons/document_ftp/i18n/es_CR.po | 4 +- addons/document_ftp/i18n/es_EC.po | 4 +- addons/document_ftp/i18n/es_PY.po | 4 +- addons/document_ftp/i18n/et.po | 4 +- addons/document_ftp/i18n/fi.po | 4 +- addons/document_ftp/i18n/fr.po | 4 +- addons/document_ftp/i18n/gl.po | 4 +- addons/document_ftp/i18n/hr.po | 4 +- addons/document_ftp/i18n/hu.po | 4 +- addons/document_ftp/i18n/it.po | 4 +- addons/document_ftp/i18n/ja.po | 4 +- addons/document_ftp/i18n/mk.po | 4 +- addons/document_ftp/i18n/mn.po | 4 +- addons/document_ftp/i18n/nb.po | 4 +- addons/document_ftp/i18n/nl.po | 4 +- addons/document_ftp/i18n/pl.po | 4 +- addons/document_ftp/i18n/pt.po | 4 +- addons/document_ftp/i18n/pt_BR.po | 4 +- addons/document_ftp/i18n/ro.po | 4 +- addons/document_ftp/i18n/ru.po | 4 +- addons/document_ftp/i18n/sk.po | 4 +- addons/document_ftp/i18n/sl.po | 4 +- addons/document_ftp/i18n/sr.po | 4 +- addons/document_ftp/i18n/sr@latin.po | 4 +- addons/document_ftp/i18n/sv.po | 4 +- addons/document_ftp/i18n/tr.po | 4 +- addons/document_ftp/i18n/vi.po | 4 +- addons/document_ftp/i18n/zh_CN.po | 4 +- addons/document_ftp/i18n/zh_TW.po | 4 +- addons/document_page/i18n/ar.po | 4 +- addons/document_page/i18n/bg.po | 4 +- addons/document_page/i18n/bs.po | 4 +- addons/document_page/i18n/ca.po | 4 +- addons/document_page/i18n/cs.po | 4 +- addons/document_page/i18n/da.po | 4 +- addons/document_page/i18n/de.po | 4 +- addons/document_page/i18n/el.po | 4 +- addons/document_page/i18n/es.po | 4 +- addons/document_page/i18n/et.po | 4 +- addons/document_page/i18n/fi.po | 4 +- addons/document_page/i18n/fr.po | 4 +- addons/document_page/i18n/gl.po | 4 +- addons/document_page/i18n/hr.po | 4 +- addons/document_page/i18n/hu.po | 4 +- addons/document_page/i18n/id.po | 4 +- addons/document_page/i18n/it.po | 4 +- addons/document_page/i18n/ja.po | 4 +- addons/document_page/i18n/ko.po | 4 +- addons/document_page/i18n/lt.po | 4 +- addons/document_page/i18n/lv.po | 4 +- addons/document_page/i18n/mk.po | 4 +- addons/document_page/i18n/mn.po | 4 +- addons/document_page/i18n/nb.po | 4 +- addons/document_page/i18n/nl.po | 4 +- addons/document_page/i18n/pl.po | 4 +- addons/document_page/i18n/pt.po | 4 +- addons/document_page/i18n/pt_BR.po | 4 +- addons/document_page/i18n/ro.po | 4 +- addons/document_page/i18n/ru.po | 4 +- addons/document_page/i18n/sk.po | 4 +- addons/document_page/i18n/sl.po | 4 +- addons/document_page/i18n/sq.po | 4 +- addons/document_page/i18n/sr.po | 4 +- addons/document_page/i18n/sr@latin.po | 4 +- addons/document_page/i18n/sv.po | 4 +- addons/document_page/i18n/tlh.po | 4 +- addons/document_page/i18n/tr.po | 4 +- addons/document_page/i18n/uk.po | 4 +- addons/document_page/i18n/vi.po | 4 +- addons/document_page/i18n/zh_CN.po | 4 +- addons/document_page/i18n/zh_TW.po | 4 +- addons/document_webdav/i18n/ar.po | 4 +- addons/document_webdav/i18n/bg.po | 4 +- addons/document_webdav/i18n/ca.po | 4 +- addons/document_webdav/i18n/cs.po | 4 +- addons/document_webdav/i18n/da.po | 4 +- addons/document_webdav/i18n/de.po | 4 +- addons/document_webdav/i18n/el.po | 4 +- addons/document_webdav/i18n/en_GB.po | 4 +- addons/document_webdav/i18n/es.po | 4 +- addons/document_webdav/i18n/es_CR.po | 4 +- addons/document_webdav/i18n/es_EC.po | 4 +- addons/document_webdav/i18n/es_PY.po | 4 +- addons/document_webdav/i18n/et.po | 4 +- addons/document_webdav/i18n/eu.po | 4 +- addons/document_webdav/i18n/fi.po | 4 +- addons/document_webdav/i18n/fr.po | 4 +- addons/document_webdav/i18n/gl.po | 4 +- addons/document_webdav/i18n/gu.po | 4 +- addons/document_webdav/i18n/hr.po | 4 +- addons/document_webdav/i18n/hu.po | 4 +- addons/document_webdav/i18n/id.po | 4 +- addons/document_webdav/i18n/it.po | 4 +- addons/document_webdav/i18n/ja.po | 4 +- addons/document_webdav/i18n/mk.po | 4 +- addons/document_webdav/i18n/mn.po | 4 +- addons/document_webdav/i18n/nb.po | 4 +- addons/document_webdav/i18n/nl.po | 4 +- addons/document_webdav/i18n/pl.po | 4 +- addons/document_webdav/i18n/pt.po | 4 +- addons/document_webdav/i18n/pt_BR.po | 4 +- addons/document_webdav/i18n/ro.po | 4 +- addons/document_webdav/i18n/ru.po | 4 +- addons/document_webdav/i18n/sl.po | 4 +- addons/document_webdav/i18n/sr.po | 4 +- addons/document_webdav/i18n/sr@latin.po | 4 +- addons/document_webdav/i18n/sv.po | 4 +- addons/document_webdav/i18n/tr.po | 4 +- addons/document_webdav/i18n/zh_CN.po | 4 +- addons/document_webdav/i18n/zh_TW.po | 4 +- addons/edi/i18n/ar.po | 4 +- addons/edi/i18n/de.po | 4 +- addons/edi/i18n/es.po | 4 +- addons/edi/i18n/es_CR.po | 4 +- addons/edi/i18n/fi.po | 4 +- addons/edi/i18n/fr.po | 4 +- addons/edi/i18n/hr.po | 4 +- addons/edi/i18n/hu.po | 4 +- addons/edi/i18n/it.po | 4 +- addons/edi/i18n/ja.po | 4 +- addons/edi/i18n/mk.po | 4 +- addons/edi/i18n/ml.po | 4 +- addons/edi/i18n/mn.po | 4 +- addons/edi/i18n/nb.po | 4 +- addons/edi/i18n/nl.po | 4 +- addons/edi/i18n/nl_BE.po | 4 +- addons/edi/i18n/pl.po | 4 +- addons/edi/i18n/pt.po | 4 +- addons/edi/i18n/pt_BR.po | 4 +- addons/edi/i18n/ro.po | 4 +- addons/edi/i18n/ru.po | 4 +- addons/edi/i18n/sl.po | 4 +- addons/edi/i18n/sv.po | 4 +- addons/edi/i18n/tr.po | 4 +- addons/edi/i18n/zh_CN.po | 4 +- addons/edi/i18n/zh_TW.po | 4 +- addons/email_template/i18n/ar.po | 4 +- addons/email_template/i18n/bg.po | 4 +- addons/email_template/i18n/ca.po | 4 +- addons/email_template/i18n/cs.po | 4 +- addons/email_template/i18n/da.po | 4 +- addons/email_template/i18n/de.po | 4 +- addons/email_template/i18n/es.po | 4 +- addons/email_template/i18n/es_CL.po | 4 +- addons/email_template/i18n/es_CR.po | 4 +- addons/email_template/i18n/es_EC.po | 4 +- addons/email_template/i18n/et.po | 4 +- addons/email_template/i18n/fa_AF.po | 4 +- addons/email_template/i18n/fi.po | 4 +- addons/email_template/i18n/fr.po | 4 +- addons/email_template/i18n/hr.po | 4 +- addons/email_template/i18n/hu.po | 4 +- addons/email_template/i18n/it.po | 4 +- addons/email_template/i18n/ja.po | 4 +- addons/email_template/i18n/mk.po | 4 +- addons/email_template/i18n/mn.po | 4 +- addons/email_template/i18n/nb.po | 4 +- addons/email_template/i18n/nl.po | 4 +- addons/email_template/i18n/pl.po | 4 +- addons/email_template/i18n/pt.po | 4 +- addons/email_template/i18n/pt_BR.po | 4 +- addons/email_template/i18n/ro.po | 4 +- addons/email_template/i18n/ru.po | 4 +- addons/email_template/i18n/sl.po | 4 +- addons/email_template/i18n/sr.po | 4 +- addons/email_template/i18n/sr@latin.po | 4 +- addons/email_template/i18n/sv.po | 4 +- addons/email_template/i18n/tr.po | 4 +- addons/email_template/i18n/zh_CN.po | 4 +- addons/email_template/i18n/zh_TW.po | 4 +- addons/event/i18n/ar.po | 4 +- addons/event/i18n/bg.po | 4 +- addons/event/i18n/bs.po | 4 +- addons/event/i18n/ca.po | 4 +- addons/event/i18n/cs.po | 4 +- addons/event/i18n/da.po | 4 +- addons/event/i18n/de.po | 4 +- addons/event/i18n/el.po | 4 +- addons/event/i18n/es.po | 4 +- addons/event/i18n/es_AR.po | 4 +- addons/event/i18n/es_CR.po | 4 +- addons/event/i18n/es_EC.po | 4 +- addons/event/i18n/et.po | 4 +- addons/event/i18n/fi.po | 4 +- addons/event/i18n/fr.po | 4 +- addons/event/i18n/gu.po | 4 +- addons/event/i18n/hi.po | 4 +- addons/event/i18n/hr.po | 4 +- addons/event/i18n/hu.po | 4 +- addons/event/i18n/id.po | 4 +- addons/event/i18n/it.po | 4 +- addons/event/i18n/ja.po | 4 +- addons/event/i18n/ko.po | 4 +- addons/event/i18n/lt.po | 4 +- addons/event/i18n/mk.po | 4 +- addons/event/i18n/mn.po | 4 +- addons/event/i18n/nb.po | 4 +- addons/event/i18n/nl.po | 4 +- addons/event/i18n/nl_BE.po | 4 +- addons/event/i18n/pl.po | 4 +- addons/event/i18n/pt.po | 4 +- addons/event/i18n/pt_BR.po | 4 +- addons/event/i18n/ro.po | 4 +- addons/event/i18n/ru.po | 4 +- addons/event/i18n/sk.po | 4 +- addons/event/i18n/sl.po | 4 +- addons/event/i18n/sq.po | 4 +- addons/event/i18n/sr.po | 4 +- addons/event/i18n/sr@latin.po | 4 +- addons/event/i18n/sv.po | 4 +- addons/event/i18n/tlh.po | 4 +- addons/event/i18n/tr.po | 4 +- addons/event/i18n/uk.po | 4 +- addons/event/i18n/vi.po | 4 +- addons/event/i18n/zh_CN.po | 4 +- addons/event/i18n/zh_TW.po | 4 +- addons/event_moodle/i18n/de.po | 4 +- addons/event_moodle/i18n/es.po | 4 +- addons/event_moodle/i18n/fr.po | 4 +- addons/event_moodle/i18n/hr.po | 4 +- addons/event_moodle/i18n/hu.po | 4 +- addons/event_moodle/i18n/mk.po | 4 +- addons/event_moodle/i18n/mn.po | 4 +- addons/event_moodle/i18n/nl.po | 4 +- addons/event_moodle/i18n/pt.po | 4 +- addons/event_moodle/i18n/pt_BR.po | 4 +- addons/event_moodle/i18n/ro.po | 4 +- addons/event_moodle/i18n/sl.po | 4 +- addons/event_moodle/i18n/tr.po | 4 +- addons/event_moodle/i18n/zh_CN.po | 4 +- addons/event_sale/i18n/ar.po | 4 +- addons/event_sale/i18n/de.po | 4 +- addons/event_sale/i18n/es.po | 4 +- addons/event_sale/i18n/fr.po | 4 +- addons/event_sale/i18n/hr.po | 4 +- addons/event_sale/i18n/hu.po | 4 +- addons/event_sale/i18n/it.po | 4 +- addons/event_sale/i18n/mk.po | 4 +- addons/event_sale/i18n/mn.po | 4 +- addons/event_sale/i18n/nl.po | 4 +- addons/event_sale/i18n/pl.po | 4 +- addons/event_sale/i18n/pt.po | 4 +- addons/event_sale/i18n/pt_BR.po | 4 +- addons/event_sale/i18n/ro.po | 4 +- addons/event_sale/i18n/sl.po | 4 +- addons/event_sale/i18n/tr.po | 4 +- addons/event_sale/i18n/zh_CN.po | 4 +- addons/fetchmail/i18n/ar.po | 4 +- addons/fetchmail/i18n/bg.po | 4 +- addons/fetchmail/i18n/ca.po | 4 +- addons/fetchmail/i18n/cs.po | 335 ++ addons/fetchmail/i18n/da.po | 4 +- addons/fetchmail/i18n/de.po | 4 +- addons/fetchmail/i18n/el.po | 4 +- addons/fetchmail/i18n/en_GB.po | 4 +- addons/fetchmail/i18n/es.po | 4 +- addons/fetchmail/i18n/es_CR.po | 4 +- addons/fetchmail/i18n/et.po | 4 +- addons/fetchmail/i18n/fi.po | 4 +- addons/fetchmail/i18n/fr.po | 4 +- addons/fetchmail/i18n/gl.po | 4 +- addons/fetchmail/i18n/hr.po | 4 +- addons/fetchmail/i18n/hu.po | 4 +- addons/fetchmail/i18n/it.po | 4 +- addons/fetchmail/i18n/ja.po | 4 +- addons/fetchmail/i18n/lt.po | 4 +- addons/fetchmail/i18n/lv.po | 4 +- addons/fetchmail/i18n/mk.po | 4 +- addons/fetchmail/i18n/mn.po | 4 +- addons/fetchmail/i18n/nb.po | 4 +- addons/fetchmail/i18n/nl.po | 4 +- addons/fetchmail/i18n/pl.po | 4 +- addons/fetchmail/i18n/pt.po | 4 +- addons/fetchmail/i18n/pt_BR.po | 4 +- addons/fetchmail/i18n/ro.po | 4 +- addons/fetchmail/i18n/ru.po | 4 +- addons/fetchmail/i18n/sl.po | 4 +- addons/fetchmail/i18n/sr.po | 4 +- addons/fetchmail/i18n/sr@latin.po | 4 +- addons/fetchmail/i18n/sv.po | 4 +- addons/fetchmail/i18n/tr.po | 4 +- addons/fetchmail/i18n/vi.po | 4 +- addons/fetchmail/i18n/zh_CN.po | 4 +- addons/fleet/i18n/ar.po | 4 +- addons/fleet/i18n/cs.po | 4 +- addons/fleet/i18n/de.po | 4 +- addons/fleet/i18n/es.po | 4 +- addons/fleet/i18n/es_MX.po | 4 +- addons/fleet/i18n/fr.po | 4 +- addons/fleet/i18n/hr.po | 4 +- addons/fleet/i18n/it.po | 4 +- addons/fleet/i18n/lv.po | 4 +- addons/fleet/i18n/mk.po | 4 +- addons/fleet/i18n/mn.po | 4 +- addons/fleet/i18n/nl.po | 4 +- addons/fleet/i18n/pl.po | 4 +- addons/fleet/i18n/pt.po | 4 +- addons/fleet/i18n/pt_BR.po | 4 +- addons/fleet/i18n/ro.po | 4 +- addons/fleet/i18n/ru.po | 4 +- addons/fleet/i18n/sl.po | 4 +- addons/fleet/i18n/sv.po | 4 +- addons/fleet/i18n/tr.po | 4 +- addons/fleet/i18n/zh_CN.po | 4 +- addons/google_base_account/i18n/ar.po | 4 +- addons/google_base_account/i18n/de.po | 4 +- addons/google_base_account/i18n/es.po | 4 +- addons/google_base_account/i18n/es_CR.po | 4 +- addons/google_base_account/i18n/fi.po | 4 +- addons/google_base_account/i18n/fr.po | 4 +- addons/google_base_account/i18n/hr.po | 4 +- addons/google_base_account/i18n/hu.po | 4 +- addons/google_base_account/i18n/it.po | 4 +- addons/google_base_account/i18n/ja.po | 4 +- addons/google_base_account/i18n/mk.po | 4 +- addons/google_base_account/i18n/mn.po | 4 +- addons/google_base_account/i18n/nb.po | 4 +- addons/google_base_account/i18n/nl.po | 4 +- addons/google_base_account/i18n/pl.po | 4 +- addons/google_base_account/i18n/pt.po | 4 +- addons/google_base_account/i18n/pt_BR.po | 4 +- addons/google_base_account/i18n/ro.po | 4 +- addons/google_base_account/i18n/ru.po | 4 +- addons/google_base_account/i18n/sl.po | 4 +- addons/google_base_account/i18n/sr@latin.po | 4 +- addons/google_base_account/i18n/sv.po | 4 +- addons/google_base_account/i18n/tr.po | 4 +- addons/google_base_account/i18n/zh_CN.po | 4 +- addons/google_docs/i18n/ar.po | 4 +- addons/google_docs/i18n/de.po | 4 +- addons/google_docs/i18n/es.po | 4 +- addons/google_docs/i18n/fr.po | 4 +- addons/google_docs/i18n/hr.po | 4 +- addons/google_docs/i18n/hu.po | 4 +- addons/google_docs/i18n/it.po | 4 +- addons/google_docs/i18n/mk.po | 4 +- addons/google_docs/i18n/mn.po | 4 +- addons/google_docs/i18n/nl.po | 4 +- addons/google_docs/i18n/pl.po | 4 +- addons/google_docs/i18n/pt.po | 4 +- addons/google_docs/i18n/pt_BR.po | 4 +- addons/google_docs/i18n/ro.po | 4 +- addons/google_docs/i18n/ru.po | 4 +- addons/google_docs/i18n/sl.po | 4 +- addons/google_docs/i18n/sv.po | 4 +- addons/google_docs/i18n/tr.po | 4 +- addons/google_docs/i18n/zh_CN.po | 4 +- addons/hr/i18n/ar.po | 4 +- addons/hr/i18n/bg.po | 4 +- addons/hr/i18n/bn.po | 4 +- addons/hr/i18n/bs.po | 4 +- addons/hr/i18n/ca.po | 4 +- addons/hr/i18n/cs.po | 4 +- addons/hr/i18n/da.po | 4 +- addons/hr/i18n/de.po | 4 +- addons/hr/i18n/el.po | 4 +- addons/hr/i18n/en_AU.po | 4 +- addons/hr/i18n/en_GB.po | 4 +- addons/hr/i18n/es.po | 4 +- addons/hr/i18n/es_AR.po | 4 +- addons/hr/i18n/es_CL.po | 4 +- addons/hr/i18n/es_CR.po | 4 +- addons/hr/i18n/es_EC.po | 4 +- addons/hr/i18n/et.po | 4 +- addons/hr/i18n/fi.po | 4 +- addons/hr/i18n/fr.po | 4 +- addons/hr/i18n/fr_BE.po | 4 +- addons/hr/i18n/gl.po | 4 +- addons/hr/i18n/gu.po | 4 +- addons/hr/i18n/hi.po | 4 +- addons/hr/i18n/hr.po | 4 +- addons/hr/i18n/hu.po | 4 +- addons/hr/i18n/id.po | 4 +- addons/hr/i18n/it.po | 4 +- addons/hr/i18n/ja.po | 4 +- addons/hr/i18n/ko.po | 4 +- addons/hr/i18n/lo.po | 4 +- addons/hr/i18n/lt.po | 4 +- addons/hr/i18n/lv.po | 4 +- addons/hr/i18n/mk.po | 4 +- addons/hr/i18n/mn.po | 4 +- addons/hr/i18n/nb.po | 4 +- addons/hr/i18n/nl.po | 4 +- addons/hr/i18n/nl_BE.po | 4 +- addons/hr/i18n/pl.po | 4 +- addons/hr/i18n/pt.po | 4 +- addons/hr/i18n/pt_BR.po | 4 +- addons/hr/i18n/ro.po | 4 +- addons/hr/i18n/ru.po | 4 +- addons/hr/i18n/sk.po | 4 +- addons/hr/i18n/sl.po | 4 +- addons/hr/i18n/sq.po | 4 +- addons/hr/i18n/sr.po | 4 +- addons/hr/i18n/sr@latin.po | 4 +- addons/hr/i18n/sv.po | 4 +- addons/hr/i18n/th.po | 4 +- addons/hr/i18n/tlh.po | 4 +- addons/hr/i18n/tr.po | 4 +- addons/hr/i18n/uk.po | 4 +- addons/hr/i18n/vi.po | 4 +- addons/hr/i18n/zh_CN.po | 4 +- addons/hr/i18n/zh_TW.po | 4 +- addons/hr_attendance/i18n/ar.po | 4 +- addons/hr_attendance/i18n/bg.po | 4 +- addons/hr_attendance/i18n/bs.po | 4 +- addons/hr_attendance/i18n/ca.po | 4 +- addons/hr_attendance/i18n/cs.po | 4 +- addons/hr_attendance/i18n/da.po | 4 +- addons/hr_attendance/i18n/de.po | 4 +- addons/hr_attendance/i18n/el.po | 4 +- addons/hr_attendance/i18n/en_GB.po | 4 +- addons/hr_attendance/i18n/es.po | 4 +- addons/hr_attendance/i18n/es_AR.po | 4 +- addons/hr_attendance/i18n/es_CL.po | 4 +- addons/hr_attendance/i18n/es_CR.po | 4 +- addons/hr_attendance/i18n/es_EC.po | 4 +- addons/hr_attendance/i18n/es_PY.po | 4 +- addons/hr_attendance/i18n/et.po | 4 +- addons/hr_attendance/i18n/fi.po | 4 +- addons/hr_attendance/i18n/fr.po | 4 +- addons/hr_attendance/i18n/gl.po | 4 +- addons/hr_attendance/i18n/he.po | 4 +- addons/hr_attendance/i18n/hr.po | 4 +- addons/hr_attendance/i18n/hu.po | 4 +- addons/hr_attendance/i18n/id.po | 4 +- addons/hr_attendance/i18n/it.po | 4 +- addons/hr_attendance/i18n/ja.po | 4 +- addons/hr_attendance/i18n/ko.po | 4 +- addons/hr_attendance/i18n/lt.po | 4 +- addons/hr_attendance/i18n/lv.po | 4 +- addons/hr_attendance/i18n/mk.po | 4 +- addons/hr_attendance/i18n/mn.po | 4 +- addons/hr_attendance/i18n/nb.po | 4 +- addons/hr_attendance/i18n/nl.po | 4 +- addons/hr_attendance/i18n/nl_BE.po | 4 +- addons/hr_attendance/i18n/pl.po | 4 +- addons/hr_attendance/i18n/pt.po | 4 +- addons/hr_attendance/i18n/pt_BR.po | 4 +- addons/hr_attendance/i18n/ro.po | 4 +- addons/hr_attendance/i18n/ru.po | 4 +- addons/hr_attendance/i18n/sl.po | 4 +- addons/hr_attendance/i18n/sq.po | 4 +- addons/hr_attendance/i18n/sr.po | 4 +- addons/hr_attendance/i18n/sr@latin.po | 4 +- addons/hr_attendance/i18n/sv.po | 4 +- addons/hr_attendance/i18n/tlh.po | 4 +- addons/hr_attendance/i18n/tr.po | 4 +- addons/hr_attendance/i18n/uk.po | 4 +- addons/hr_attendance/i18n/vi.po | 4 +- addons/hr_attendance/i18n/zh_CN.po | 4 +- addons/hr_attendance/i18n/zh_TW.po | 4 +- addons/hr_contract/i18n/ar.po | 4 +- addons/hr_contract/i18n/bg.po | 4 +- addons/hr_contract/i18n/bs.po | 4 +- addons/hr_contract/i18n/ca.po | 4 +- addons/hr_contract/i18n/cs.po | 4 +- addons/hr_contract/i18n/da.po | 4 +- addons/hr_contract/i18n/de.po | 4 +- addons/hr_contract/i18n/el.po | 4 +- addons/hr_contract/i18n/en_GB.po | 4 +- addons/hr_contract/i18n/es.po | 4 +- addons/hr_contract/i18n/es_AR.po | 4 +- addons/hr_contract/i18n/es_CR.po | 4 +- addons/hr_contract/i18n/es_EC.po | 4 +- addons/hr_contract/i18n/es_PY.po | 4 +- addons/hr_contract/i18n/et.po | 4 +- addons/hr_contract/i18n/fi.po | 4 +- addons/hr_contract/i18n/fr.po | 4 +- addons/hr_contract/i18n/gl.po | 4 +- addons/hr_contract/i18n/gu.po | 4 +- addons/hr_contract/i18n/hi.po | 4 +- addons/hr_contract/i18n/hr.po | 4 +- addons/hr_contract/i18n/hu.po | 4 +- addons/hr_contract/i18n/id.po | 4 +- addons/hr_contract/i18n/it.po | 4 +- addons/hr_contract/i18n/ja.po | 4 +- addons/hr_contract/i18n/ko.po | 4 +- addons/hr_contract/i18n/lo.po | 4 +- addons/hr_contract/i18n/lt.po | 4 +- addons/hr_contract/i18n/lv.po | 4 +- addons/hr_contract/i18n/mk.po | 4 +- addons/hr_contract/i18n/mn.po | 4 +- addons/hr_contract/i18n/nb.po | 4 +- addons/hr_contract/i18n/nl.po | 4 +- addons/hr_contract/i18n/nl_BE.po | 4 +- addons/hr_contract/i18n/pl.po | 4 +- addons/hr_contract/i18n/pt.po | 4 +- addons/hr_contract/i18n/pt_BR.po | 4 +- addons/hr_contract/i18n/ro.po | 4 +- addons/hr_contract/i18n/ru.po | 4 +- addons/hr_contract/i18n/sl.po | 4 +- addons/hr_contract/i18n/sq.po | 4 +- addons/hr_contract/i18n/sr.po | 4 +- addons/hr_contract/i18n/sr@latin.po | 4 +- addons/hr_contract/i18n/sv.po | 4 +- addons/hr_contract/i18n/tlh.po | 4 +- addons/hr_contract/i18n/tr.po | 4 +- addons/hr_contract/i18n/uk.po | 4 +- addons/hr_contract/i18n/vi.po | 4 +- addons/hr_contract/i18n/zh_CN.po | 4 +- addons/hr_contract/i18n/zh_TW.po | 4 +- addons/hr_evaluation/i18n/ar.po | 4 +- addons/hr_evaluation/i18n/bg.po | 4 +- addons/hr_evaluation/i18n/ca.po | 4 +- addons/hr_evaluation/i18n/da.po | 4 +- addons/hr_evaluation/i18n/de.po | 4 +- addons/hr_evaluation/i18n/es.po | 4 +- addons/hr_evaluation/i18n/es_CR.po | 4 +- addons/hr_evaluation/i18n/es_EC.po | 4 +- addons/hr_evaluation/i18n/et.po | 4 +- addons/hr_evaluation/i18n/fi.po | 4 +- addons/hr_evaluation/i18n/fr.po | 4 +- addons/hr_evaluation/i18n/gl.po | 4 +- addons/hr_evaluation/i18n/hr.po | 4 +- addons/hr_evaluation/i18n/hu.po | 4 +- addons/hr_evaluation/i18n/id.po | 4 +- addons/hr_evaluation/i18n/it.po | 4 +- addons/hr_evaluation/i18n/ja.po | 4 +- addons/hr_evaluation/i18n/mk.po | 4 +- addons/hr_evaluation/i18n/mn.po | 4 +- addons/hr_evaluation/i18n/nl.po | 4 +- addons/hr_evaluation/i18n/pt.po | 4 +- addons/hr_evaluation/i18n/pt_BR.po | 4 +- addons/hr_evaluation/i18n/ro.po | 4 +- addons/hr_evaluation/i18n/ru.po | 4 +- addons/hr_evaluation/i18n/sl.po | 4 +- addons/hr_evaluation/i18n/sr.po | 4 +- addons/hr_evaluation/i18n/sr@latin.po | 4 +- addons/hr_evaluation/i18n/sv.po | 4 +- addons/hr_evaluation/i18n/tr.po | 4 +- addons/hr_evaluation/i18n/zh_CN.po | 4 +- addons/hr_expense/i18n/ar.po | 4 +- addons/hr_expense/i18n/bg.po | 4 +- addons/hr_expense/i18n/bs.po | 4 +- addons/hr_expense/i18n/ca.po | 4 +- addons/hr_expense/i18n/cs.po | 4 +- addons/hr_expense/i18n/da.po | 4 +- addons/hr_expense/i18n/de.po | 4 +- addons/hr_expense/i18n/el.po | 4 +- addons/hr_expense/i18n/es.po | 4 +- addons/hr_expense/i18n/es_AR.po | 4 +- addons/hr_expense/i18n/es_CR.po | 4 +- addons/hr_expense/i18n/es_EC.po | 4 +- addons/hr_expense/i18n/et.po | 4 +- addons/hr_expense/i18n/fi.po | 4 +- addons/hr_expense/i18n/fr.po | 4 +- addons/hr_expense/i18n/hr.po | 4 +- addons/hr_expense/i18n/hu.po | 4 +- addons/hr_expense/i18n/id.po | 4 +- addons/hr_expense/i18n/it.po | 4 +- addons/hr_expense/i18n/ja.po | 4 +- addons/hr_expense/i18n/ko.po | 4 +- addons/hr_expense/i18n/lt.po | 4 +- addons/hr_expense/i18n/lv.po | 4 +- addons/hr_expense/i18n/mk.po | 4 +- addons/hr_expense/i18n/mn.po | 4 +- addons/hr_expense/i18n/nb.po | 4 +- addons/hr_expense/i18n/nl.po | 4 +- addons/hr_expense/i18n/nl_BE.po | 4 +- addons/hr_expense/i18n/pl.po | 4 +- addons/hr_expense/i18n/pt.po | 4 +- addons/hr_expense/i18n/pt_BR.po | 4 +- addons/hr_expense/i18n/ro.po | 4 +- addons/hr_expense/i18n/ru.po | 4 +- addons/hr_expense/i18n/sl.po | 4 +- addons/hr_expense/i18n/sq.po | 4 +- addons/hr_expense/i18n/sr.po | 4 +- addons/hr_expense/i18n/sr@latin.po | 4 +- addons/hr_expense/i18n/sv.po | 4 +- addons/hr_expense/i18n/tlh.po | 4 +- addons/hr_expense/i18n/tr.po | 4 +- addons/hr_expense/i18n/uk.po | 4 +- addons/hr_expense/i18n/vi.po | 4 +- addons/hr_expense/i18n/zh_CN.po | 4 +- addons/hr_expense/i18n/zh_TW.po | 4 +- addons/hr_holidays/i18n/ar.po | 4 +- addons/hr_holidays/i18n/bg.po | 4 +- addons/hr_holidays/i18n/bs.po | 4 +- addons/hr_holidays/i18n/ca.po | 4 +- addons/hr_holidays/i18n/cs.po | 4 +- addons/hr_holidays/i18n/da.po | 4 +- addons/hr_holidays/i18n/de.po | 4 +- addons/hr_holidays/i18n/el.po | 4 +- addons/hr_holidays/i18n/es.po | 4 +- addons/hr_holidays/i18n/es_AR.po | 4 +- addons/hr_holidays/i18n/es_CR.po | 4 +- addons/hr_holidays/i18n/es_EC.po | 4 +- addons/hr_holidays/i18n/et.po | 4 +- addons/hr_holidays/i18n/fi.po | 4 +- addons/hr_holidays/i18n/fr.po | 4 +- addons/hr_holidays/i18n/gu.po | 4 +- addons/hr_holidays/i18n/hi.po | 4 +- addons/hr_holidays/i18n/hr.po | 4 +- addons/hr_holidays/i18n/hu.po | 4 +- addons/hr_holidays/i18n/id.po | 4 +- addons/hr_holidays/i18n/it.po | 4 +- addons/hr_holidays/i18n/ja.po | 4 +- addons/hr_holidays/i18n/ko.po | 4 +- addons/hr_holidays/i18n/lt.po | 4 +- addons/hr_holidays/i18n/lv.po | 4 +- addons/hr_holidays/i18n/mk.po | 4 +- addons/hr_holidays/i18n/mn.po | 4 +- addons/hr_holidays/i18n/nb.po | 4 +- addons/hr_holidays/i18n/nl.po | 4 +- addons/hr_holidays/i18n/nl_BE.po | 4 +- addons/hr_holidays/i18n/pl.po | 4 +- addons/hr_holidays/i18n/pt.po | 4 +- addons/hr_holidays/i18n/pt_BR.po | 4 +- addons/hr_holidays/i18n/ro.po | 4 +- addons/hr_holidays/i18n/ru.po | 4 +- addons/hr_holidays/i18n/sl.po | 4 +- addons/hr_holidays/i18n/sq.po | 4 +- addons/hr_holidays/i18n/sr.po | 4 +- addons/hr_holidays/i18n/sr@latin.po | 4 +- addons/hr_holidays/i18n/sv.po | 4 +- addons/hr_holidays/i18n/th.po | 4 +- addons/hr_holidays/i18n/tlh.po | 4 +- addons/hr_holidays/i18n/tr.po | 4 +- addons/hr_holidays/i18n/uk.po | 4 +- addons/hr_holidays/i18n/vi.po | 4 +- addons/hr_holidays/i18n/zh_CN.po | 4 +- addons/hr_holidays/i18n/zh_TW.po | 4 +- addons/hr_payroll/i18n/ar.po | 4 +- addons/hr_payroll/i18n/bg.po | 4 +- addons/hr_payroll/i18n/ca.po | 4 +- addons/hr_payroll/i18n/cs.po | 4 +- addons/hr_payroll/i18n/da.po | 4 +- addons/hr_payroll/i18n/de.po | 4 +- addons/hr_payroll/i18n/en_GB.po | 4 +- addons/hr_payroll/i18n/es.po | 4 +- addons/hr_payroll/i18n/es_CR.po | 4 +- addons/hr_payroll/i18n/es_EC.po | 4 +- addons/hr_payroll/i18n/es_MX.po | 4 +- addons/hr_payroll/i18n/et.po | 4 +- addons/hr_payroll/i18n/fi.po | 4 +- addons/hr_payroll/i18n/fr.po | 4 +- addons/hr_payroll/i18n/gl.po | 4 +- addons/hr_payroll/i18n/gu.po | 4 +- addons/hr_payroll/i18n/he.po | 4 +- addons/hr_payroll/i18n/hr.po | 4 +- addons/hr_payroll/i18n/hu.po | 4 +- addons/hr_payroll/i18n/id.po | 4 +- addons/hr_payroll/i18n/it.po | 4 +- addons/hr_payroll/i18n/ja.po | 4 +- addons/hr_payroll/i18n/lo.po | 4 +- addons/hr_payroll/i18n/lt.po | 4 +- addons/hr_payroll/i18n/lv.po | 4 +- addons/hr_payroll/i18n/mk.po | 4 +- addons/hr_payroll/i18n/mn.po | 4 +- addons/hr_payroll/i18n/nb.po | 4 +- addons/hr_payroll/i18n/nl.po | 4 +- addons/hr_payroll/i18n/pl.po | 4 +- addons/hr_payroll/i18n/pt.po | 4 +- addons/hr_payroll/i18n/pt_BR.po | 4 +- addons/hr_payroll/i18n/ro.po | 4 +- addons/hr_payroll/i18n/ru.po | 4 +- addons/hr_payroll/i18n/sl.po | 4 +- addons/hr_payroll/i18n/sr.po | 4 +- addons/hr_payroll/i18n/sr@latin.po | 4 +- addons/hr_payroll/i18n/sv.po | 4 +- addons/hr_payroll/i18n/tr.po | 4 +- addons/hr_payroll/i18n/vi.po | 4 +- addons/hr_payroll/i18n/zh_CN.po | 4 +- addons/hr_payroll_account/i18n/ar.po | 4 +- addons/hr_payroll_account/i18n/bg.po | 4 +- addons/hr_payroll_account/i18n/ca.po | 4 +- addons/hr_payroll_account/i18n/da.po | 4 +- addons/hr_payroll_account/i18n/de.po | 4 +- addons/hr_payroll_account/i18n/en_GB.po | 4 +- addons/hr_payroll_account/i18n/es.po | 4 +- addons/hr_payroll_account/i18n/es_CR.po | 4 +- addons/hr_payroll_account/i18n/es_EC.po | 4 +- addons/hr_payroll_account/i18n/es_PY.po | 4 +- addons/hr_payroll_account/i18n/fr.po | 4 +- addons/hr_payroll_account/i18n/gl.po | 4 +- addons/hr_payroll_account/i18n/gu.po | 4 +- addons/hr_payroll_account/i18n/hr.po | 4 +- addons/hr_payroll_account/i18n/hu.po | 4 +- addons/hr_payroll_account/i18n/id.po | 4 +- addons/hr_payroll_account/i18n/it.po | 4 +- addons/hr_payroll_account/i18n/ja.po | 4 +- addons/hr_payroll_account/i18n/lv.po | 4 +- addons/hr_payroll_account/i18n/mk.po | 4 +- addons/hr_payroll_account/i18n/mn.po | 4 +- addons/hr_payroll_account/i18n/nb.po | 4 +- addons/hr_payroll_account/i18n/nl.po | 4 +- addons/hr_payroll_account/i18n/pl.po | 4 +- addons/hr_payroll_account/i18n/pt.po | 4 +- addons/hr_payroll_account/i18n/pt_BR.po | 4 +- addons/hr_payroll_account/i18n/ro.po | 4 +- addons/hr_payroll_account/i18n/ru.po | 4 +- addons/hr_payroll_account/i18n/sl.po | 4 +- addons/hr_payroll_account/i18n/sr@latin.po | 4 +- addons/hr_payroll_account/i18n/sv.po | 4 +- addons/hr_payroll_account/i18n/tr.po | 4 +- addons/hr_payroll_account/i18n/zh_CN.po | 4 +- addons/hr_recruitment/i18n/ar.po | 4 +- addons/hr_recruitment/i18n/bg.po | 4 +- addons/hr_recruitment/i18n/ca.po | 4 +- addons/hr_recruitment/i18n/da.po | 4 +- addons/hr_recruitment/i18n/de.po | 4 +- addons/hr_recruitment/i18n/es.po | 4 +- addons/hr_recruitment/i18n/es_CR.po | 4 +- addons/hr_recruitment/i18n/fr.po | 4 +- addons/hr_recruitment/i18n/hi.po | 4 +- addons/hr_recruitment/i18n/hr.po | 4 +- addons/hr_recruitment/i18n/hu.po | 4 +- addons/hr_recruitment/i18n/id.po | 4 +- addons/hr_recruitment/i18n/it.po | 4 +- addons/hr_recruitment/i18n/ja.po | 4 +- addons/hr_recruitment/i18n/mk.po | 4 +- addons/hr_recruitment/i18n/mn.po | 4 +- addons/hr_recruitment/i18n/nb.po | 4 +- addons/hr_recruitment/i18n/nl.po | 4 +- addons/hr_recruitment/i18n/pl.po | 4 +- addons/hr_recruitment/i18n/pt.po | 4 +- addons/hr_recruitment/i18n/pt_BR.po | 4 +- addons/hr_recruitment/i18n/ro.po | 4 +- addons/hr_recruitment/i18n/ru.po | 4 +- addons/hr_recruitment/i18n/sl.po | 4 +- addons/hr_recruitment/i18n/sr.po | 4 +- addons/hr_recruitment/i18n/sr@latin.po | 4 +- addons/hr_recruitment/i18n/sv.po | 4 +- addons/hr_recruitment/i18n/tr.po | 4 +- addons/hr_recruitment/i18n/vi.po | 4 +- addons/hr_recruitment/i18n/zh_CN.po | 4 +- addons/hr_timesheet/i18n/ar.po | 4 +- addons/hr_timesheet/i18n/bg.po | 4 +- addons/hr_timesheet/i18n/bs.po | 4 +- addons/hr_timesheet/i18n/ca.po | 4 +- addons/hr_timesheet/i18n/cs.po | 4 +- addons/hr_timesheet/i18n/da.po | 4 +- addons/hr_timesheet/i18n/de.po | 4 +- addons/hr_timesheet/i18n/el.po | 4 +- addons/hr_timesheet/i18n/en_GB.po | 4 +- addons/hr_timesheet/i18n/es.po | 4 +- addons/hr_timesheet/i18n/es_AR.po | 4 +- addons/hr_timesheet/i18n/es_CR.po | 4 +- addons/hr_timesheet/i18n/es_EC.po | 4 +- addons/hr_timesheet/i18n/et.po | 4 +- addons/hr_timesheet/i18n/fi.po | 4 +- addons/hr_timesheet/i18n/fr.po | 4 +- addons/hr_timesheet/i18n/gl.po | 4 +- addons/hr_timesheet/i18n/hr.po | 4 +- addons/hr_timesheet/i18n/hu.po | 4 +- addons/hr_timesheet/i18n/id.po | 4 +- addons/hr_timesheet/i18n/it.po | 4 +- addons/hr_timesheet/i18n/ja.po | 4 +- addons/hr_timesheet/i18n/ko.po | 4 +- addons/hr_timesheet/i18n/lt.po | 4 +- addons/hr_timesheet/i18n/lv.po | 4 +- addons/hr_timesheet/i18n/mk.po | 4 +- addons/hr_timesheet/i18n/mn.po | 4 +- addons/hr_timesheet/i18n/nb.po | 4 +- addons/hr_timesheet/i18n/nl.po | 4 +- addons/hr_timesheet/i18n/pl.po | 4 +- addons/hr_timesheet/i18n/pt.po | 4 +- addons/hr_timesheet/i18n/pt_BR.po | 4 +- addons/hr_timesheet/i18n/ro.po | 4 +- addons/hr_timesheet/i18n/ru.po | 4 +- addons/hr_timesheet/i18n/sl.po | 4 +- addons/hr_timesheet/i18n/sq.po | 4 +- addons/hr_timesheet/i18n/sr@latin.po | 4 +- addons/hr_timesheet/i18n/sv.po | 4 +- addons/hr_timesheet/i18n/tlh.po | 4 +- addons/hr_timesheet/i18n/tr.po | 4 +- addons/hr_timesheet/i18n/uk.po | 4 +- addons/hr_timesheet/i18n/vi.po | 4 +- addons/hr_timesheet/i18n/zh_CN.po | 4 +- addons/hr_timesheet/i18n/zh_TW.po | 4 +- addons/hr_timesheet_invoice/i18n/ar.po | 4 +- addons/hr_timesheet_invoice/i18n/bg.po | 4 +- addons/hr_timesheet_invoice/i18n/bs.po | 4 +- addons/hr_timesheet_invoice/i18n/ca.po | 4 +- addons/hr_timesheet_invoice/i18n/cs.po | 4 +- addons/hr_timesheet_invoice/i18n/da.po | 4 +- addons/hr_timesheet_invoice/i18n/de.po | 4 +- addons/hr_timesheet_invoice/i18n/el.po | 4 +- addons/hr_timesheet_invoice/i18n/es.po | 4 +- addons/hr_timesheet_invoice/i18n/es_AR.po | 4 +- addons/hr_timesheet_invoice/i18n/es_CR.po | 4 +- addons/hr_timesheet_invoice/i18n/es_EC.po | 4 +- addons/hr_timesheet_invoice/i18n/et.po | 4 +- addons/hr_timesheet_invoice/i18n/fi.po | 4 +- addons/hr_timesheet_invoice/i18n/fr.po | 4 +- addons/hr_timesheet_invoice/i18n/hr.po | 4 +- addons/hr_timesheet_invoice/i18n/hu.po | 4 +- addons/hr_timesheet_invoice/i18n/id.po | 4 +- addons/hr_timesheet_invoice/i18n/it.po | 4 +- addons/hr_timesheet_invoice/i18n/ja.po | 4 +- addons/hr_timesheet_invoice/i18n/ko.po | 4 +- addons/hr_timesheet_invoice/i18n/lt.po | 4 +- addons/hr_timesheet_invoice/i18n/lv.po | 4 +- addons/hr_timesheet_invoice/i18n/mk.po | 4 +- addons/hr_timesheet_invoice/i18n/mn.po | 4 +- addons/hr_timesheet_invoice/i18n/nl.po | 4 +- addons/hr_timesheet_invoice/i18n/nl_BE.po | 4 +- addons/hr_timesheet_invoice/i18n/pl.po | 4 +- addons/hr_timesheet_invoice/i18n/pt.po | 4 +- addons/hr_timesheet_invoice/i18n/pt_BR.po | 4 +- addons/hr_timesheet_invoice/i18n/ro.po | 4 +- addons/hr_timesheet_invoice/i18n/ru.po | 4 +- addons/hr_timesheet_invoice/i18n/sl.po | 4 +- addons/hr_timesheet_invoice/i18n/sq.po | 4 +- addons/hr_timesheet_invoice/i18n/sr@latin.po | 4 +- addons/hr_timesheet_invoice/i18n/sv.po | 4 +- addons/hr_timesheet_invoice/i18n/tlh.po | 4 +- addons/hr_timesheet_invoice/i18n/tr.po | 4 +- addons/hr_timesheet_invoice/i18n/uk.po | 4 +- addons/hr_timesheet_invoice/i18n/vi.po | 4 +- addons/hr_timesheet_invoice/i18n/zh_CN.po | 4 +- addons/hr_timesheet_invoice/i18n/zh_TW.po | 4 +- addons/hr_timesheet_sheet/i18n/ar.po | 4 +- addons/hr_timesheet_sheet/i18n/bg.po | 4 +- addons/hr_timesheet_sheet/i18n/bs.po | 4 +- addons/hr_timesheet_sheet/i18n/ca.po | 4 +- addons/hr_timesheet_sheet/i18n/cs.po | 4 +- addons/hr_timesheet_sheet/i18n/da.po | 4 +- addons/hr_timesheet_sheet/i18n/de.po | 4 +- addons/hr_timesheet_sheet/i18n/el.po | 4 +- addons/hr_timesheet_sheet/i18n/es.po | 4 +- addons/hr_timesheet_sheet/i18n/es_AR.po | 4 +- addons/hr_timesheet_sheet/i18n/es_CR.po | 4 +- addons/hr_timesheet_sheet/i18n/es_EC.po | 4 +- addons/hr_timesheet_sheet/i18n/et.po | 4 +- addons/hr_timesheet_sheet/i18n/fi.po | 4 +- addons/hr_timesheet_sheet/i18n/fr.po | 4 +- addons/hr_timesheet_sheet/i18n/hr.po | 4 +- addons/hr_timesheet_sheet/i18n/hu.po | 4 +- addons/hr_timesheet_sheet/i18n/id.po | 4 +- addons/hr_timesheet_sheet/i18n/it.po | 4 +- addons/hr_timesheet_sheet/i18n/ja.po | 4 +- addons/hr_timesheet_sheet/i18n/ko.po | 4 +- addons/hr_timesheet_sheet/i18n/lt.po | 4 +- addons/hr_timesheet_sheet/i18n/lv.po | 4 +- addons/hr_timesheet_sheet/i18n/mk.po | 4 +- addons/hr_timesheet_sheet/i18n/mn.po | 4 +- addons/hr_timesheet_sheet/i18n/nl.po | 4 +- addons/hr_timesheet_sheet/i18n/nl_BE.po | 4 +- addons/hr_timesheet_sheet/i18n/pl.po | 4 +- addons/hr_timesheet_sheet/i18n/pt.po | 4 +- addons/hr_timesheet_sheet/i18n/pt_BR.po | 4 +- addons/hr_timesheet_sheet/i18n/ro.po | 4 +- addons/hr_timesheet_sheet/i18n/ru.po | 4 +- addons/hr_timesheet_sheet/i18n/sk.po | 4 +- addons/hr_timesheet_sheet/i18n/sl.po | 4 +- addons/hr_timesheet_sheet/i18n/sq.po | 4 +- addons/hr_timesheet_sheet/i18n/sv.po | 4 +- addons/hr_timesheet_sheet/i18n/tlh.po | 4 +- addons/hr_timesheet_sheet/i18n/tr.po | 4 +- addons/hr_timesheet_sheet/i18n/uk.po | 4 +- addons/hr_timesheet_sheet/i18n/vi.po | 4 +- addons/hr_timesheet_sheet/i18n/zh_CN.po | 4 +- addons/hr_timesheet_sheet/i18n/zh_TW.po | 4 +- addons/idea/i18n/ar.po | 4 +- addons/idea/i18n/bg.po | 4 +- addons/idea/i18n/bs.po | 4 +- addons/idea/i18n/ca.po | 4 +- addons/idea/i18n/cs.po | 4 +- addons/idea/i18n/da.po | 4 +- addons/idea/i18n/de.po | 4 +- addons/idea/i18n/el.po | 4 +- addons/idea/i18n/en_GB.po | 4 +- addons/idea/i18n/es.po | 4 +- addons/idea/i18n/es_AR.po | 4 +- addons/idea/i18n/es_CR.po | 4 +- addons/idea/i18n/et.po | 4 +- addons/idea/i18n/fi.po | 4 +- addons/idea/i18n/fr.po | 4 +- addons/idea/i18n/gl.po | 4 +- addons/idea/i18n/gu.po | 4 +- addons/idea/i18n/hi.po | 4 +- addons/idea/i18n/hr.po | 4 +- addons/idea/i18n/hu.po | 4 +- addons/idea/i18n/id.po | 4 +- addons/idea/i18n/it.po | 4 +- addons/idea/i18n/ja.po | 4 +- addons/idea/i18n/ko.po | 4 +- addons/idea/i18n/lt.po | 4 +- addons/idea/i18n/lv.po | 4 +- addons/idea/i18n/mk.po | 4 +- addons/idea/i18n/mn.po | 4 +- addons/idea/i18n/nl.po | 4 +- addons/idea/i18n/pl.po | 4 +- addons/idea/i18n/pt.po | 4 +- addons/idea/i18n/pt_BR.po | 4 +- addons/idea/i18n/ro.po | 4 +- addons/idea/i18n/ru.po | 4 +- addons/idea/i18n/sk.po | 4 +- addons/idea/i18n/sl.po | 4 +- addons/idea/i18n/sq.po | 4 +- addons/idea/i18n/sr@latin.po | 4 +- addons/idea/i18n/sv.po | 4 +- addons/idea/i18n/tlh.po | 4 +- addons/idea/i18n/tr.po | 4 +- addons/idea/i18n/uk.po | 4 +- addons/idea/i18n/vi.po | 4 +- addons/idea/i18n/zh_CN.po | 4 +- addons/idea/i18n/zh_TW.po | 4 +- addons/knowledge/i18n/ar.po | 4 +- addons/knowledge/i18n/bg.po | 4 +- addons/knowledge/i18n/ca.po | 4 +- addons/knowledge/i18n/cs.po | 4 +- addons/knowledge/i18n/da.po | 4 +- addons/knowledge/i18n/de.po | 4 +- addons/knowledge/i18n/en_GB.po | 4 +- addons/knowledge/i18n/es.po | 4 +- addons/knowledge/i18n/es_AR.po | 4 +- addons/knowledge/i18n/es_CR.po | 4 +- addons/knowledge/i18n/et.po | 4 +- addons/knowledge/i18n/fi.po | 4 +- addons/knowledge/i18n/fr.po | 4 +- addons/knowledge/i18n/gl.po | 4 +- addons/knowledge/i18n/hi.po | 4 +- addons/knowledge/i18n/hr.po | 4 +- addons/knowledge/i18n/hu.po | 4 +- addons/knowledge/i18n/it.po | 4 +- addons/knowledge/i18n/ja.po | 4 +- addons/knowledge/i18n/lo.po | 4 +- addons/knowledge/i18n/lv.po | 4 +- addons/knowledge/i18n/mk.po | 4 +- addons/knowledge/i18n/mn.po | 4 +- addons/knowledge/i18n/nb.po | 4 +- addons/knowledge/i18n/nl.po | 4 +- addons/knowledge/i18n/nl_BE.po | 4 +- addons/knowledge/i18n/pl.po | 4 +- addons/knowledge/i18n/pt.po | 4 +- addons/knowledge/i18n/pt_BR.po | 4 +- addons/knowledge/i18n/ro.po | 4 +- addons/knowledge/i18n/ru.po | 4 +- addons/knowledge/i18n/sk.po | 4 +- addons/knowledge/i18n/sl.po | 4 +- addons/knowledge/i18n/sr.po | 4 +- addons/knowledge/i18n/sr@latin.po | 4 +- addons/knowledge/i18n/sv.po | 4 +- addons/knowledge/i18n/tr.po | 4 +- addons/knowledge/i18n/zh_CN.po | 4 +- addons/knowledge/i18n/zh_TW.po | 4 +- addons/l10n_ar/i18n/es.po | 4 +- addons/l10n_ar/i18n/es_AR.po | 4 +- addons/l10n_ar/i18n/pt.po | 4 +- addons/l10n_ar/i18n/pt_BR.po | 4 +- addons/l10n_ar/i18n/sl.po | 4 +- addons/l10n_ar/i18n/tr.po | 4 +- addons/l10n_ar/i18n/zh_CN.po | 4 +- addons/l10n_be/i18n/ar.po | 4 +- addons/l10n_be/i18n/bg.po | 4 +- addons/l10n_be/i18n/bs.po | 4 +- addons/l10n_be/i18n/ca.po | 4 +- addons/l10n_be/i18n/cs.po | 4 +- addons/l10n_be/i18n/da.po | 4 +- addons/l10n_be/i18n/de.po | 4 +- addons/l10n_be/i18n/en_GB.po | 4 +- addons/l10n_be/i18n/es.po | 4 +- addons/l10n_be/i18n/es_AR.po | 4 +- addons/l10n_be/i18n/es_CR.po | 4 +- addons/l10n_be/i18n/et.po | 4 +- addons/l10n_be/i18n/fi.po | 4 +- addons/l10n_be/i18n/fr.po | 4 +- addons/l10n_be/i18n/gl.po | 4 +- addons/l10n_be/i18n/hr.po | 4 +- addons/l10n_be/i18n/hu.po | 4 +- addons/l10n_be/i18n/id.po | 4 +- addons/l10n_be/i18n/it.po | 4 +- addons/l10n_be/i18n/ja.po | 4 +- addons/l10n_be/i18n/ko.po | 4 +- addons/l10n_be/i18n/lt.po | 4 +- addons/l10n_be/i18n/mk.po | 4 +- addons/l10n_be/i18n/nl.po | 4 +- addons/l10n_be/i18n/nl_BE.po | 4 +- addons/l10n_be/i18n/pl.po | 4 +- addons/l10n_be/i18n/pt.po | 4 +- addons/l10n_be/i18n/pt_BR.po | 4 +- addons/l10n_be/i18n/ro.po | 4 +- addons/l10n_be/i18n/ru.po | 4 +- addons/l10n_be/i18n/sl.po | 4 +- addons/l10n_be/i18n/sq.po | 4 +- addons/l10n_be/i18n/sr@latin.po | 4 +- addons/l10n_be/i18n/sv.po | 4 +- addons/l10n_be/i18n/tlh.po | 4 +- addons/l10n_be/i18n/tr.po | 4 +- addons/l10n_be/i18n/uk.po | 4 +- addons/l10n_be/i18n/vi.po | 4 +- addons/l10n_be/i18n/zh_CN.po | 4 +- addons/l10n_be/i18n/zh_TW.po | 4 +- addons/l10n_be_coda/i18n/ar.po | 4 +- addons/l10n_be_coda/i18n/bg.po | 4 +- addons/l10n_be_coda/i18n/ca.po | 4 +- addons/l10n_be_coda/i18n/da.po | 4 +- addons/l10n_be_coda/i18n/de.po | 4 +- addons/l10n_be_coda/i18n/el.po | 4 +- addons/l10n_be_coda/i18n/en_AU.po | 4 +- addons/l10n_be_coda/i18n/en_GB.po | 4 +- addons/l10n_be_coda/i18n/es.po | 4 +- addons/l10n_be_coda/i18n/es_CR.po | 4 +- addons/l10n_be_coda/i18n/es_EC.po | 4 +- addons/l10n_be_coda/i18n/es_PY.po | 4 +- addons/l10n_be_coda/i18n/et.po | 4 +- addons/l10n_be_coda/i18n/fa.po | 4 +- addons/l10n_be_coda/i18n/fi.po | 4 +- addons/l10n_be_coda/i18n/fr.po | 4 +- addons/l10n_be_coda/i18n/gl.po | 4 +- addons/l10n_be_coda/i18n/hr.po | 4 +- addons/l10n_be_coda/i18n/hu.po | 4 +- addons/l10n_be_coda/i18n/it.po | 4 +- addons/l10n_be_coda/i18n/ja.po | 4 +- addons/l10n_be_coda/i18n/lv.po | 4 +- addons/l10n_be_coda/i18n/mk.po | 4 +- addons/l10n_be_coda/i18n/mn.po | 4 +- addons/l10n_be_coda/i18n/nb.po | 4 +- addons/l10n_be_coda/i18n/nl.po | 4 +- addons/l10n_be_coda/i18n/nl_BE.po | 4 +- addons/l10n_be_coda/i18n/pl.po | 4 +- addons/l10n_be_coda/i18n/pt.po | 4 +- addons/l10n_be_coda/i18n/pt_BR.po | 4 +- addons/l10n_be_coda/i18n/ro.po | 4 +- addons/l10n_be_coda/i18n/ru.po | 4 +- addons/l10n_be_coda/i18n/sl.po | 4 +- addons/l10n_be_coda/i18n/sq.po | 4 +- addons/l10n_be_coda/i18n/sr.po | 4 +- addons/l10n_be_coda/i18n/sr@latin.po | 4 +- addons/l10n_be_coda/i18n/sv.po | 4 +- addons/l10n_be_coda/i18n/tr.po | 4 +- addons/l10n_be_coda/i18n/vi.po | 4 +- addons/l10n_be_coda/i18n/zh_CN.po | 4 +- addons/l10n_be_coda/i18n/zh_TW.po | 4 +- addons/l10n_be_hr_payroll/i18n/de.po | 4 +- addons/l10n_be_hr_payroll/i18n/es.po | 4 +- addons/l10n_be_hr_payroll/i18n/es_CR.po | 4 +- addons/l10n_be_hr_payroll/i18n/pt.po | 4 +- addons/l10n_be_hr_payroll/i18n/pt_BR.po | 4 +- addons/l10n_be_hr_payroll/i18n/sl.po | 4 +- addons/l10n_be_hr_payroll/i18n/sr@latin.po | 4 +- addons/l10n_be_hr_payroll/i18n/tr.po | 4 +- addons/l10n_be_invoice_bba/i18n/ar.po | 4 +- addons/l10n_be_invoice_bba/i18n/es.po | 4 +- addons/l10n_be_invoice_bba/i18n/es_CR.po | 4 +- addons/l10n_be_invoice_bba/i18n/fr.po | 4 +- addons/l10n_be_invoice_bba/i18n/nb.po | 4 +- addons/l10n_be_invoice_bba/i18n/nl.po | 4 +- addons/l10n_be_invoice_bba/i18n/nl_BE.po | 4 +- addons/l10n_be_invoice_bba/i18n/pt.po | 4 +- addons/l10n_be_invoice_bba/i18n/pt_BR.po | 4 +- addons/l10n_be_invoice_bba/i18n/sl.po | 4 +- addons/l10n_be_invoice_bba/i18n/sr@latin.po | 4 +- addons/l10n_be_invoice_bba/i18n/tr.po | 4 +- addons/l10n_bo/i18n/es.po | 4 +- addons/l10n_bo/i18n/it.po | 4 +- addons/l10n_bo/i18n/pt.po | 4 +- addons/l10n_bo/i18n/pt_BR.po | 4 +- addons/l10n_bo/i18n/sl.po | 4 +- addons/l10n_bo/i18n/tr.po | 4 +- addons/l10n_br/i18n/ar.po | 4 +- addons/l10n_br/i18n/bg.po | 4 +- addons/l10n_br/i18n/ca.po | 4 +- addons/l10n_br/i18n/da.po | 4 +- addons/l10n_br/i18n/en_GB.po | 4 +- addons/l10n_br/i18n/es.po | 4 +- addons/l10n_br/i18n/es_CR.po | 4 +- addons/l10n_br/i18n/es_PY.po | 4 +- addons/l10n_br/i18n/fr.po | 4 +- addons/l10n_br/i18n/gl.po | 4 +- addons/l10n_br/i18n/hi.po | 4 +- addons/l10n_br/i18n/it.po | 4 +- addons/l10n_br/i18n/nb.po | 4 +- addons/l10n_br/i18n/oc.po | 4 +- addons/l10n_br/i18n/pt.po | 4 +- addons/l10n_br/i18n/pt_BR.po | 4 +- addons/l10n_br/i18n/ru.po | 4 +- addons/l10n_br/i18n/sl.po | 4 +- addons/l10n_br/i18n/sq.po | 4 +- addons/l10n_br/i18n/sr@latin.po | 4 +- addons/l10n_br/i18n/tr.po | 4 +- addons/l10n_ca/i18n/ar.po | 4 +- addons/l10n_ca/i18n/ca.po | 4 +- addons/l10n_ca/i18n/da.po | 4 +- addons/l10n_ca/i18n/de.po | 4 +- addons/l10n_ca/i18n/en_GB.po | 4 +- addons/l10n_ca/i18n/es.po | 4 +- addons/l10n_ca/i18n/es_CR.po | 4 +- addons/l10n_ca/i18n/es_PY.po | 4 +- addons/l10n_ca/i18n/fr.po | 4 +- addons/l10n_ca/i18n/gl.po | 4 +- addons/l10n_ca/i18n/hu.po | 4 +- addons/l10n_ca/i18n/it.po | 4 +- addons/l10n_ca/i18n/nb.po | 4 +- addons/l10n_ca/i18n/pt.po | 4 +- addons/l10n_ca/i18n/pt_BR.po | 4 +- addons/l10n_ca/i18n/sl.po | 4 +- addons/l10n_ca/i18n/sr@latin.po | 4 +- addons/l10n_ca/i18n/tr.po | 4 +- addons/l10n_ca/i18n/zh_CN.po | 4 +- addons/l10n_cl/i18n/es.po | 4 +- addons/l10n_cl/i18n/pt_BR.po | 4 +- addons/l10n_cl/i18n/sl.po | 4 +- addons/l10n_cl/i18n/tr.po | 4 +- addons/l10n_cl/i18n/zh_CN.po | 4 +- addons/l10n_cn/i18n/ar.po | 4 +- addons/l10n_cn/i18n/ca.po | 4 +- addons/l10n_cn/i18n/da.po | 4 +- addons/l10n_cn/i18n/es.po | 4 +- addons/l10n_cn/i18n/es_CR.po | 4 +- addons/l10n_cn/i18n/es_PY.po | 4 +- addons/l10n_cn/i18n/gl.po | 4 +- addons/l10n_cn/i18n/it.po | 4 +- addons/l10n_cn/i18n/nb.po | 4 +- addons/l10n_cn/i18n/pt_BR.po | 4 +- addons/l10n_cn/i18n/sl.po | 4 +- addons/l10n_cn/i18n/sr@latin.po | 4 +- addons/l10n_cn/i18n/tr.po | 4 +- addons/l10n_cn/i18n/zh_CN.po | 4 +- addons/l10n_cn/i18n/zh_TW.po | 4 +- addons/l10n_cr/i18n/ar.po | 4 +- addons/l10n_cr/i18n/ca.po | 4 +- addons/l10n_cr/i18n/da.po | 4 +- addons/l10n_cr/i18n/es.po | 4 +- addons/l10n_cr/i18n/es_CR.po | 4 +- addons/l10n_cr/i18n/es_PY.po | 4 +- addons/l10n_cr/i18n/fr.po | 4 +- addons/l10n_cr/i18n/gl.po | 4 +- addons/l10n_cr/i18n/it.po | 4 +- addons/l10n_cr/i18n/mn.po | 4 +- addons/l10n_cr/i18n/pt.po | 4 +- addons/l10n_cr/i18n/pt_BR.po | 4 +- addons/l10n_cr/i18n/sl.po | 4 +- addons/l10n_cr/i18n/tr.po | 4 +- addons/l10n_de/i18n/ar.po | 4 +- addons/l10n_de/i18n/bg.po | 4 +- addons/l10n_de/i18n/bs.po | 4 +- addons/l10n_de/i18n/ca.po | 4 +- addons/l10n_de/i18n/cs.po | 4 +- addons/l10n_de/i18n/da.po | 4 +- addons/l10n_de/i18n/de.po | 4 +- addons/l10n_de/i18n/es.po | 4 +- addons/l10n_de/i18n/es_CR.po | 4 +- addons/l10n_de/i18n/es_PY.po | 4 +- addons/l10n_de/i18n/et.po | 4 +- addons/l10n_de/i18n/fr.po | 4 +- addons/l10n_de/i18n/gl.po | 4 +- addons/l10n_de/i18n/hr.po | 4 +- addons/l10n_de/i18n/hu.po | 4 +- addons/l10n_de/i18n/id.po | 4 +- addons/l10n_de/i18n/it.po | 4 +- addons/l10n_de/i18n/ko.po | 4 +- addons/l10n_de/i18n/lt.po | 4 +- addons/l10n_de/i18n/nb.po | 4 +- addons/l10n_de/i18n/nl.po | 4 +- addons/l10n_de/i18n/pl.po | 4 +- addons/l10n_de/i18n/pt.po | 4 +- addons/l10n_de/i18n/pt_BR.po | 4 +- addons/l10n_de/i18n/ro.po | 4 +- addons/l10n_de/i18n/ru.po | 4 +- addons/l10n_de/i18n/sl.po | 4 +- addons/l10n_de/i18n/sr@latin.po | 4 +- addons/l10n_de/i18n/sv.po | 4 +- addons/l10n_de/i18n/tr.po | 4 +- addons/l10n_de/i18n/vi.po | 4 +- addons/l10n_de/i18n/zh_CN.po | 4 +- addons/l10n_de/i18n/zh_TW.po | 4 +- addons/l10n_ec/i18n/ar.po | 4 +- addons/l10n_ec/i18n/ca.po | 4 +- addons/l10n_ec/i18n/da.po | 4 +- addons/l10n_ec/i18n/es.po | 4 +- addons/l10n_ec/i18n/es_CR.po | 4 +- addons/l10n_ec/i18n/es_EC.po | 4 +- addons/l10n_ec/i18n/es_PY.po | 4 +- addons/l10n_ec/i18n/fr.po | 4 +- addons/l10n_ec/i18n/gl.po | 4 +- addons/l10n_ec/i18n/it.po | 4 +- addons/l10n_ec/i18n/pt.po | 4 +- addons/l10n_ec/i18n/pt_BR.po | 4 +- addons/l10n_ec/i18n/sl.po | 4 +- addons/l10n_ec/i18n/tr.po | 4 +- addons/l10n_es/i18n/ar.po | 4 +- addons/l10n_es/i18n/ca.po | 4 +- addons/l10n_es/i18n/da.po | 4 +- addons/l10n_es/i18n/de.po | 4 +- addons/l10n_es/i18n/es.po | 4 +- addons/l10n_es/i18n/es_CR.po | 4 +- addons/l10n_es/i18n/es_PY.po | 4 +- addons/l10n_es/i18n/fr.po | 4 +- addons/l10n_es/i18n/gl.po | 4 +- addons/l10n_es/i18n/hu.po | 4 +- addons/l10n_es/i18n/it.po | 4 +- addons/l10n_es/i18n/oc.po | 4 +- addons/l10n_es/i18n/pt.po | 4 +- addons/l10n_es/i18n/pt_BR.po | 4 +- addons/l10n_es/i18n/sl.po | 4 +- addons/l10n_es/i18n/sr@latin.po | 4 +- addons/l10n_es/i18n/tr.po | 4 +- addons/l10n_fr/i18n/ar.po | 4 +- addons/l10n_fr/i18n/bg.po | 4 +- addons/l10n_fr/i18n/bs.po | 4 +- addons/l10n_fr/i18n/ca.po | 4 +- addons/l10n_fr/i18n/cs.po | 4 +- addons/l10n_fr/i18n/da.po | 4 +- addons/l10n_fr/i18n/de.po | 4 +- addons/l10n_fr/i18n/es.po | 4 +- addons/l10n_fr/i18n/es_AR.po | 4 +- addons/l10n_fr/i18n/es_CR.po | 4 +- addons/l10n_fr/i18n/es_PY.po | 4 +- addons/l10n_fr/i18n/et.po | 4 +- addons/l10n_fr/i18n/fr.po | 4 +- addons/l10n_fr/i18n/gl.po | 4 +- addons/l10n_fr/i18n/hr.po | 4 +- addons/l10n_fr/i18n/hu.po | 4 +- addons/l10n_fr/i18n/id.po | 4 +- addons/l10n_fr/i18n/it.po | 4 +- addons/l10n_fr/i18n/ko.po | 4 +- addons/l10n_fr/i18n/lt.po | 4 +- addons/l10n_fr/i18n/nl.po | 4 +- addons/l10n_fr/i18n/nl_BE.po | 4 +- addons/l10n_fr/i18n/oc.po | 4 +- addons/l10n_fr/i18n/pl.po | 4 +- addons/l10n_fr/i18n/pt.po | 4 +- addons/l10n_fr/i18n/pt_BR.po | 4 +- addons/l10n_fr/i18n/ro.po | 4 +- addons/l10n_fr/i18n/ru.po | 4 +- addons/l10n_fr/i18n/sl.po | 4 +- addons/l10n_fr/i18n/sq.po | 4 +- addons/l10n_fr/i18n/sr@latin.po | 4 +- addons/l10n_fr/i18n/sv.po | 4 +- addons/l10n_fr/i18n/tlh.po | 4 +- addons/l10n_fr/i18n/tr.po | 4 +- addons/l10n_fr/i18n/uk.po | 4 +- addons/l10n_fr/i18n/vi.po | 4 +- addons/l10n_fr/i18n/zh_CN.po | 4 +- addons/l10n_fr/i18n/zh_TW.po | 4 +- addons/l10n_fr_rib/i18n/ar.po | 4 +- addons/l10n_fr_rib/i18n/es.po | 4 +- addons/l10n_fr_rib/i18n/es_CR.po | 4 +- addons/l10n_fr_rib/i18n/fr.po | 4 +- addons/l10n_fr_rib/i18n/pt.po | 4 +- addons/l10n_fr_rib/i18n/pt_BR.po | 4 +- addons/l10n_fr_rib/i18n/sl.po | 4 +- addons/l10n_fr_rib/i18n/tr.po | 4 +- addons/l10n_gr/i18n/ar.po | 4 +- addons/l10n_gr/i18n/ca.po | 4 +- addons/l10n_gr/i18n/da.po | 4 +- addons/l10n_gr/i18n/de.po | 4 +- addons/l10n_gr/i18n/el.po | 4 +- addons/l10n_gr/i18n/es.po | 4 +- addons/l10n_gr/i18n/es_CR.po | 4 +- addons/l10n_gr/i18n/es_PY.po | 4 +- addons/l10n_gr/i18n/fr.po | 4 +- addons/l10n_gr/i18n/gl.po | 4 +- addons/l10n_gr/i18n/hu.po | 4 +- addons/l10n_gr/i18n/it.po | 4 +- addons/l10n_gr/i18n/nl.po | 4 +- addons/l10n_gr/i18n/pt.po | 4 +- addons/l10n_gr/i18n/pt_BR.po | 4 +- addons/l10n_gr/i18n/sl.po | 4 +- addons/l10n_gr/i18n/sr@latin.po | 4 +- addons/l10n_gr/i18n/tr.po | 4 +- addons/l10n_gt/i18n/ar.po | 4 +- addons/l10n_gt/i18n/ca.po | 4 +- addons/l10n_gt/i18n/da.po | 4 +- addons/l10n_gt/i18n/es.po | 4 +- addons/l10n_gt/i18n/es_CR.po | 4 +- addons/l10n_gt/i18n/es_PY.po | 4 +- addons/l10n_gt/i18n/fr.po | 4 +- addons/l10n_gt/i18n/gl.po | 4 +- addons/l10n_gt/i18n/hu.po | 4 +- addons/l10n_gt/i18n/it.po | 4 +- addons/l10n_gt/i18n/oc.po | 4 +- addons/l10n_gt/i18n/pt.po | 4 +- addons/l10n_gt/i18n/pt_BR.po | 4 +- addons/l10n_gt/i18n/sl.po | 4 +- addons/l10n_gt/i18n/sr@latin.po | 4 +- addons/l10n_gt/i18n/tr.po | 4 +- addons/l10n_hn/i18n/ca.po | 4 +- addons/l10n_hn/i18n/es.po | 4 +- addons/l10n_hn/i18n/es_CR.po | 4 +- addons/l10n_hn/i18n/fr.po | 4 +- addons/l10n_hn/i18n/gl.po | 4 +- addons/l10n_hn/i18n/hu.po | 4 +- addons/l10n_hn/i18n/it.po | 4 +- addons/l10n_hn/i18n/pt.po | 4 +- addons/l10n_hn/i18n/pt_BR.po | 4 +- addons/l10n_hn/i18n/sl.po | 4 +- addons/l10n_hn/i18n/sr@latin.po | 4 +- addons/l10n_hn/i18n/tr.po | 4 +- addons/l10n_in/i18n/ar.po | 4 +- addons/l10n_in/i18n/br.po | 4 +- addons/l10n_in/i18n/ca.po | 4 +- addons/l10n_in/i18n/da.po | 4 +- addons/l10n_in/i18n/de.po | 4 +- addons/l10n_in/i18n/es.po | 4 +- addons/l10n_in/i18n/es_CR.po | 4 +- addons/l10n_in/i18n/es_PY.po | 4 +- addons/l10n_in/i18n/et.po | 4 +- addons/l10n_in/i18n/fr.po | 4 +- addons/l10n_in/i18n/gl.po | 4 +- addons/l10n_in/i18n/hu.po | 4 +- addons/l10n_in/i18n/it.po | 4 +- addons/l10n_in/i18n/oc.po | 4 +- addons/l10n_in/i18n/pt.po | 4 +- addons/l10n_in/i18n/pt_BR.po | 4 +- addons/l10n_in/i18n/ru.po | 4 +- addons/l10n_in/i18n/sl.po | 4 +- addons/l10n_in/i18n/sr@latin.po | 4 +- addons/l10n_in/i18n/sv.po | 4 +- addons/l10n_in/i18n/tr.po | 4 +- addons/l10n_in_hr_payroll/i18n/bn.po | 4 +- addons/l10n_in_hr_payroll/i18n/es.po | 4 +- addons/l10n_in_hr_payroll/i18n/gu.po | 4 +- addons/l10n_in_hr_payroll/i18n/hi.po | 4 +- addons/l10n_in_hr_payroll/i18n/pl.po | 4 +- addons/l10n_in_hr_payroll/i18n/pt.po | 4 +- addons/l10n_in_hr_payroll/i18n/pt_BR.po | 4 +- addons/l10n_in_hr_payroll/i18n/sl.po | 4 +- addons/l10n_in_hr_payroll/i18n/ta.po | 4 +- addons/l10n_in_hr_payroll/i18n/te.po | 4 +- addons/l10n_in_hr_payroll/i18n/tr.po | 4 +- addons/l10n_it/i18n/ar.po | 4 +- addons/l10n_it/i18n/ca.po | 4 +- addons/l10n_it/i18n/da.po | 4 +- addons/l10n_it/i18n/es.po | 4 +- addons/l10n_it/i18n/es_CR.po | 4 +- addons/l10n_it/i18n/es_PY.po | 4 +- addons/l10n_it/i18n/fr.po | 4 +- addons/l10n_it/i18n/gl.po | 4 +- addons/l10n_it/i18n/it.po | 4 +- addons/l10n_it/i18n/pt_BR.po | 4 +- addons/l10n_it/i18n/sl.po | 4 +- addons/l10n_it/i18n/tr.po | 4 +- addons/l10n_lu/i18n/ar.po | 4 +- addons/l10n_lu/i18n/bg.po | 4 +- addons/l10n_lu/i18n/bs.po | 4 +- addons/l10n_lu/i18n/ca.po | 4 +- addons/l10n_lu/i18n/cs.po | 4 +- addons/l10n_lu/i18n/da.po | 4 +- addons/l10n_lu/i18n/de.po | 4 +- addons/l10n_lu/i18n/es.po | 4 +- addons/l10n_lu/i18n/es_AR.po | 4 +- addons/l10n_lu/i18n/es_CR.po | 4 +- addons/l10n_lu/i18n/es_PY.po | 4 +- addons/l10n_lu/i18n/et.po | 4 +- addons/l10n_lu/i18n/fr.po | 4 +- addons/l10n_lu/i18n/gl.po | 4 +- addons/l10n_lu/i18n/hr.po | 4 +- addons/l10n_lu/i18n/hu.po | 4 +- addons/l10n_lu/i18n/id.po | 4 +- addons/l10n_lu/i18n/it.po | 4 +- addons/l10n_lu/i18n/ko.po | 4 +- addons/l10n_lu/i18n/lt.po | 4 +- addons/l10n_lu/i18n/nl.po | 4 +- addons/l10n_lu/i18n/nl_BE.po | 4 +- addons/l10n_lu/i18n/oc.po | 4 +- addons/l10n_lu/i18n/pl.po | 4 +- addons/l10n_lu/i18n/pt.po | 4 +- addons/l10n_lu/i18n/pt_BR.po | 4 +- addons/l10n_lu/i18n/ro.po | 4 +- addons/l10n_lu/i18n/ru.po | 4 +- addons/l10n_lu/i18n/sl.po | 4 +- addons/l10n_lu/i18n/sq.po | 4 +- addons/l10n_lu/i18n/sr@latin.po | 4 +- addons/l10n_lu/i18n/sv.po | 4 +- addons/l10n_lu/i18n/tlh.po | 4 +- addons/l10n_lu/i18n/tr.po | 4 +- addons/l10n_lu/i18n/uk.po | 4 +- addons/l10n_lu/i18n/vi.po | 4 +- addons/l10n_lu/i18n/zh_CN.po | 4 +- addons/l10n_lu/i18n/zh_TW.po | 4 +- addons/l10n_ma/i18n/ar.po | 4 +- addons/l10n_ma/i18n/ca.po | 4 +- addons/l10n_ma/i18n/da.po | 4 +- addons/l10n_ma/i18n/de.po | 4 +- addons/l10n_ma/i18n/es.po | 4 +- addons/l10n_ma/i18n/es_CR.po | 4 +- addons/l10n_ma/i18n/es_PY.po | 4 +- addons/l10n_ma/i18n/fr.po | 4 +- addons/l10n_ma/i18n/gl.po | 4 +- addons/l10n_ma/i18n/hu.po | 4 +- addons/l10n_ma/i18n/it.po | 4 +- addons/l10n_ma/i18n/pt.po | 4 +- addons/l10n_ma/i18n/pt_BR.po | 4 +- addons/l10n_ma/i18n/sl.po | 4 +- addons/l10n_ma/i18n/sr@latin.po | 4 +- addons/l10n_ma/i18n/tr.po | 4 +- addons/l10n_multilang/i18n/ar.po | 4 +- addons/l10n_multilang/i18n/de.po | 4 +- addons/l10n_multilang/i18n/es.po | 4 +- addons/l10n_multilang/i18n/es_CR.po | 4 +- addons/l10n_multilang/i18n/fr.po | 4 +- addons/l10n_multilang/i18n/hr.po | 4 +- addons/l10n_multilang/i18n/hu.po | 4 +- addons/l10n_multilang/i18n/mn.po | 4 +- addons/l10n_multilang/i18n/nl.po | 4 +- addons/l10n_multilang/i18n/pl.po | 4 +- addons/l10n_multilang/i18n/pt.po | 4 +- addons/l10n_multilang/i18n/pt_BR.po | 4 +- addons/l10n_multilang/i18n/ro.po | 4 +- addons/l10n_multilang/i18n/sl.po | 4 +- addons/l10n_multilang/i18n/tr.po | 4 +- addons/l10n_nl/i18n/ar.po | 4 +- addons/l10n_nl/i18n/ca.po | 4 +- addons/l10n_nl/i18n/da.po | 4 +- addons/l10n_nl/i18n/es.po | 4 +- addons/l10n_nl/i18n/es_CR.po | 4 +- addons/l10n_nl/i18n/es_PY.po | 4 +- addons/l10n_nl/i18n/gl.po | 4 +- addons/l10n_nl/i18n/it.po | 4 +- addons/l10n_nl/i18n/mn.po | 4 +- addons/l10n_nl/i18n/nl.po | 4 +- addons/l10n_nl/i18n/pt_BR.po | 4 +- addons/l10n_nl/i18n/sl.po | 4 +- addons/l10n_nl/i18n/sr@latin.po | 4 +- addons/l10n_nl/i18n/tr.po | 4 +- addons/l10n_pe/i18n/ar.po | 4 +- addons/l10n_pe/i18n/br.po | 4 +- addons/l10n_pe/i18n/ca.po | 4 +- addons/l10n_pe/i18n/de.po | 4 +- addons/l10n_pe/i18n/es.po | 4 +- addons/l10n_pe/i18n/et.po | 4 +- addons/l10n_pe/i18n/fr.po | 4 +- addons/l10n_pe/i18n/gl.po | 4 +- addons/l10n_pe/i18n/hu.po | 4 +- addons/l10n_pe/i18n/it.po | 4 +- addons/l10n_pe/i18n/pt.po | 4 +- addons/l10n_pe/i18n/pt_BR.po | 4 +- addons/l10n_pe/i18n/ru.po | 4 +- addons/l10n_pe/i18n/sl.po | 4 +- addons/l10n_pe/i18n/sr@latin.po | 4 +- addons/l10n_pe/i18n/sv.po | 4 +- addons/l10n_pe/i18n/tr.po | 4 +- addons/l10n_pl/i18n/ar.po | 4 +- addons/l10n_pl/i18n/ca.po | 4 +- addons/l10n_pl/i18n/da.po | 4 +- addons/l10n_pl/i18n/es.po | 4 +- addons/l10n_pl/i18n/es_CR.po | 4 +- addons/l10n_pl/i18n/es_PY.po | 4 +- addons/l10n_pl/i18n/gl.po | 4 +- addons/l10n_pl/i18n/it.po | 4 +- addons/l10n_pl/i18n/pt_BR.po | 4 +- addons/l10n_pl/i18n/sl.po | 4 +- addons/l10n_pl/i18n/sr@latin.po | 4 +- addons/l10n_pl/i18n/tr.po | 4 +- addons/l10n_syscohada/i18n/ar.po | 4 +- addons/l10n_syscohada/i18n/ca.po | 4 +- addons/l10n_syscohada/i18n/es.po | 4 +- addons/l10n_syscohada/i18n/es_CR.po | 4 +- addons/l10n_syscohada/i18n/fr.po | 4 +- addons/l10n_syscohada/i18n/pt.po | 4 +- addons/l10n_syscohada/i18n/pt_BR.po | 4 +- addons/l10n_syscohada/i18n/ro.po | 4 +- addons/l10n_syscohada/i18n/sl.po | 4 +- addons/l10n_syscohada/i18n/tr.po | 4 +- addons/l10n_th/i18n/ar.po | 4 +- addons/l10n_th/i18n/ca.po | 4 +- addons/l10n_th/i18n/da.po | 4 +- addons/l10n_th/i18n/es.po | 4 +- addons/l10n_th/i18n/es_CR.po | 4 +- addons/l10n_th/i18n/es_PY.po | 4 +- addons/l10n_th/i18n/gl.po | 4 +- addons/l10n_th/i18n/it.po | 4 +- addons/l10n_th/i18n/nb.po | 4 +- addons/l10n_th/i18n/pt.po | 4 +- addons/l10n_th/i18n/pt_BR.po | 4 +- addons/l10n_th/i18n/sl.po | 4 +- addons/l10n_th/i18n/sr@latin.po | 4 +- addons/l10n_th/i18n/th.po | 4 +- addons/l10n_th/i18n/tr.po | 4 +- addons/l10n_uk/i18n/ar.po | 4 +- addons/l10n_uk/i18n/bg.po | 4 +- addons/l10n_uk/i18n/bs.po | 4 +- addons/l10n_uk/i18n/ca.po | 4 +- addons/l10n_uk/i18n/cs.po | 4 +- addons/l10n_uk/i18n/da.po | 4 +- addons/l10n_uk/i18n/de.po | 4 +- addons/l10n_uk/i18n/es.po | 4 +- addons/l10n_uk/i18n/es_CR.po | 4 +- addons/l10n_uk/i18n/es_PY.po | 4 +- addons/l10n_uk/i18n/et.po | 4 +- addons/l10n_uk/i18n/fr.po | 4 +- addons/l10n_uk/i18n/gl.po | 4 +- addons/l10n_uk/i18n/hr.po | 4 +- addons/l10n_uk/i18n/hu.po | 4 +- addons/l10n_uk/i18n/id.po | 4 +- addons/l10n_uk/i18n/it.po | 4 +- addons/l10n_uk/i18n/ko.po | 4 +- addons/l10n_uk/i18n/lt.po | 4 +- addons/l10n_uk/i18n/nl.po | 4 +- addons/l10n_uk/i18n/oc.po | 4 +- addons/l10n_uk/i18n/pl.po | 4 +- addons/l10n_uk/i18n/pt.po | 4 +- addons/l10n_uk/i18n/pt_BR.po | 4 +- addons/l10n_uk/i18n/ro.po | 4 +- addons/l10n_uk/i18n/ru.po | 4 +- addons/l10n_uk/i18n/sl.po | 4 +- addons/l10n_uk/i18n/sq.po | 4 +- addons/l10n_uk/i18n/sr@latin.po | 4 +- addons/l10n_uk/i18n/sv.po | 4 +- addons/l10n_uk/i18n/tlh.po | 4 +- addons/l10n_uk/i18n/tr.po | 4 +- addons/l10n_uk/i18n/uk.po | 4 +- addons/l10n_uk/i18n/vi.po | 4 +- addons/l10n_uk/i18n/zh_CN.po | 4 +- addons/l10n_uk/i18n/zh_TW.po | 4 +- addons/l10n_ve/i18n/ar.po | 4 +- addons/l10n_ve/i18n/ca.po | 4 +- addons/l10n_ve/i18n/da.po | 4 +- addons/l10n_ve/i18n/de.po | 4 +- addons/l10n_ve/i18n/es.po | 4 +- addons/l10n_ve/i18n/es_CR.po | 4 +- addons/l10n_ve/i18n/es_PY.po | 4 +- addons/l10n_ve/i18n/gl.po | 4 +- addons/l10n_ve/i18n/it.po | 4 +- addons/l10n_ve/i18n/pt.po | 4 +- addons/l10n_ve/i18n/pt_BR.po | 4 +- addons/l10n_ve/i18n/ro.po | 4 +- addons/l10n_ve/i18n/sl.po | 4 +- addons/l10n_ve/i18n/sr@latin.po | 4 +- addons/l10n_ve/i18n/tr.po | 4 +- addons/lunch/i18n/ar.po | 4 +- addons/lunch/i18n/bg.po | 4 +- addons/lunch/i18n/ca.po | 4 +- addons/lunch/i18n/cs.po | 4 +- addons/lunch/i18n/da.po | 4 +- addons/lunch/i18n/de.po | 4 +- addons/lunch/i18n/es.po | 4 +- addons/lunch/i18n/es_CR.po | 4 +- addons/lunch/i18n/es_PY.po | 4 +- addons/lunch/i18n/fi.po | 4 +- addons/lunch/i18n/fr.po | 4 +- addons/lunch/i18n/gl.po | 4 +- addons/lunch/i18n/hr.po | 4 +- addons/lunch/i18n/hu.po | 4 +- addons/lunch/i18n/it.po | 4 +- addons/lunch/i18n/ja.po | 4 +- addons/lunch/i18n/mk.po | 4 +- addons/lunch/i18n/mn.po | 4 +- addons/lunch/i18n/nl.po | 4 +- addons/lunch/i18n/pt.po | 4 +- addons/lunch/i18n/pt_BR.po | 4 +- addons/lunch/i18n/ro.po | 4 +- addons/lunch/i18n/ru.po | 4 +- addons/lunch/i18n/sl.po | 4 +- addons/lunch/i18n/sr@latin.po | 4 +- addons/lunch/i18n/sv.po | 4 +- addons/lunch/i18n/tr.po | 4 +- addons/lunch/i18n/zh_CN.po | 4 +- addons/lunch/i18n/zh_TW.po | 4 +- addons/mail/i18n/ar.po | 4 +- addons/mail/i18n/bg.po | 4 +- addons/mail/i18n/ca.po | 4 +- addons/mail/i18n/cs.po | 4 +- addons/mail/i18n/da.po | 4 +- addons/mail/i18n/de.po | 4 +- addons/mail/i18n/es.po | 4 +- addons/mail/i18n/es_CR.po | 4 +- addons/mail/i18n/es_MX.po | 4 +- addons/mail/i18n/es_PY.po | 4 +- addons/mail/i18n/et.po | 4 +- addons/mail/i18n/fi.po | 4 +- addons/mail/i18n/fr.po | 4 +- addons/mail/i18n/gl.po | 4 +- addons/mail/i18n/hr.po | 4 +- addons/mail/i18n/hu.po | 4 +- addons/mail/i18n/it.po | 4 +- addons/mail/i18n/ja.po | 4 +- addons/mail/i18n/lt.po | 4 +- addons/mail/i18n/lv.po | 4 +- addons/mail/i18n/mk.po | 4 +- addons/mail/i18n/mn.po | 4 +- addons/mail/i18n/nl.po | 4 +- addons/mail/i18n/pl.po | 4 +- addons/mail/i18n/pt.po | 4 +- addons/mail/i18n/pt_BR.po | 4 +- addons/mail/i18n/ro.po | 4 +- addons/mail/i18n/ru.po | 4 +- addons/mail/i18n/sl.po | 4 +- addons/mail/i18n/sr@latin.po | 4 +- addons/mail/i18n/sv.po | 4 +- addons/mail/i18n/tr.po | 4 +- addons/mail/i18n/zh_CN.po | 4 +- addons/mail/i18n/zh_TW.po | 4 +- addons/marketing/i18n/ar.po | 4 +- addons/marketing/i18n/bg.po | 4 +- addons/marketing/i18n/ca.po | 4 +- addons/marketing/i18n/cs.po | 4 +- addons/marketing/i18n/da.po | 4 +- addons/marketing/i18n/de.po | 4 +- addons/marketing/i18n/el.po | 4 +- addons/marketing/i18n/es.po | 4 +- addons/marketing/i18n/es_CR.po | 4 +- addons/marketing/i18n/fi.po | 4 +- addons/marketing/i18n/fr.po | 4 +- addons/marketing/i18n/gl.po | 4 +- addons/marketing/i18n/hr.po | 4 +- addons/marketing/i18n/hu.po | 4 +- addons/marketing/i18n/id.po | 4 +- addons/marketing/i18n/it.po | 4 +- addons/marketing/i18n/ja.po | 4 +- addons/marketing/i18n/lt.po | 4 +- addons/marketing/i18n/lv.po | 4 +- addons/marketing/i18n/mk.po | 4 +- addons/marketing/i18n/mn.po | 4 +- addons/marketing/i18n/nb.po | 4 +- addons/marketing/i18n/nl.po | 4 +- addons/marketing/i18n/pl.po | 4 +- addons/marketing/i18n/pt.po | 4 +- addons/marketing/i18n/pt_BR.po | 4 +- addons/marketing/i18n/ro.po | 4 +- addons/marketing/i18n/ru.po | 4 +- addons/marketing/i18n/sk.po | 4 +- addons/marketing/i18n/sl.po | 4 +- addons/marketing/i18n/sr.po | 4 +- addons/marketing/i18n/sr@latin.po | 4 +- addons/marketing/i18n/sv.po | 4 +- addons/marketing/i18n/th.po | 4 +- addons/marketing/i18n/tr.po | 4 +- addons/marketing/i18n/zh_CN.po | 4 +- addons/marketing/i18n/zh_TW.po | 4 +- addons/marketing_campaign/i18n/ar.po | 4 +- addons/marketing_campaign/i18n/bg.po | 4 +- addons/marketing_campaign/i18n/ca.po | 4 +- addons/marketing_campaign/i18n/cs.po | 4 +- addons/marketing_campaign/i18n/da.po | 4 +- addons/marketing_campaign/i18n/de.po | 4 +- addons/marketing_campaign/i18n/el.po | 4 +- addons/marketing_campaign/i18n/es.po | 4 +- addons/marketing_campaign/i18n/es_CR.po | 4 +- addons/marketing_campaign/i18n/fi.po | 4 +- addons/marketing_campaign/i18n/fr.po | 4 +- addons/marketing_campaign/i18n/hi.po | 4 +- addons/marketing_campaign/i18n/hr.po | 4 +- addons/marketing_campaign/i18n/hu.po | 4 +- addons/marketing_campaign/i18n/it.po | 4 +- addons/marketing_campaign/i18n/ja.po | 4 +- addons/marketing_campaign/i18n/lv.po | 4 +- addons/marketing_campaign/i18n/mk.po | 4 +- addons/marketing_campaign/i18n/mn.po | 4 +- addons/marketing_campaign/i18n/nl.po | 4 +- addons/marketing_campaign/i18n/pl.po | 4 +- addons/marketing_campaign/i18n/pt.po | 4 +- addons/marketing_campaign/i18n/pt_BR.po | 4 +- addons/marketing_campaign/i18n/ro.po | 4 +- addons/marketing_campaign/i18n/ru.po | 4 +- addons/marketing_campaign/i18n/sl.po | 4 +- addons/marketing_campaign/i18n/sr@latin.po | 4 +- addons/marketing_campaign/i18n/sv.po | 4 +- addons/marketing_campaign/i18n/tr.po | 4 +- addons/marketing_campaign/i18n/zh_CN.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ar.po | 4 +- addons/marketing_campaign_crm_demo/i18n/bg.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ca.po | 4 +- addons/marketing_campaign_crm_demo/i18n/da.po | 4 +- addons/marketing_campaign_crm_demo/i18n/de.po | 4 +- addons/marketing_campaign_crm_demo/i18n/es.po | 4 +- .../marketing_campaign_crm_demo/i18n/es_CR.po | 4 +- addons/marketing_campaign_crm_demo/i18n/fr.po | 4 +- addons/marketing_campaign_crm_demo/i18n/gl.po | 4 +- addons/marketing_campaign_crm_demo/i18n/hr.po | 4 +- addons/marketing_campaign_crm_demo/i18n/hu.po | 4 +- addons/marketing_campaign_crm_demo/i18n/it.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ja.po | 4 +- addons/marketing_campaign_crm_demo/i18n/mk.po | 4 +- addons/marketing_campaign_crm_demo/i18n/nb.po | 4 +- addons/marketing_campaign_crm_demo/i18n/nl.po | 4 +- addons/marketing_campaign_crm_demo/i18n/pt.po | 4 +- .../marketing_campaign_crm_demo/i18n/pt_BR.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ro.po | 4 +- addons/marketing_campaign_crm_demo/i18n/ru.po | 4 +- addons/marketing_campaign_crm_demo/i18n/sl.po | 4 +- addons/marketing_campaign_crm_demo/i18n/sr.po | 4 +- .../i18n/sr@latin.po | 4 +- addons/marketing_campaign_crm_demo/i18n/tr.po | 4 +- .../marketing_campaign_crm_demo/i18n/zh_CN.po | 4 +- addons/membership/i18n/ar.po | 4 +- addons/membership/i18n/bg.po | 4 +- addons/membership/i18n/bs.po | 4 +- addons/membership/i18n/ca.po | 4 +- addons/membership/i18n/cs.po | 4 +- addons/membership/i18n/da.po | 4 +- addons/membership/i18n/de.po | 4 +- addons/membership/i18n/es.po | 4 +- addons/membership/i18n/es_AR.po | 4 +- addons/membership/i18n/es_CR.po | 4 +- addons/membership/i18n/et.po | 4 +- addons/membership/i18n/fi.po | 4 +- addons/membership/i18n/fr.po | 4 +- addons/membership/i18n/gl.po | 4 +- addons/membership/i18n/hr.po | 4 +- addons/membership/i18n/hu.po | 4 +- addons/membership/i18n/id.po | 4 +- addons/membership/i18n/it.po | 4 +- addons/membership/i18n/ja.po | 4 +- addons/membership/i18n/ko.po | 4 +- addons/membership/i18n/lt.po | 4 +- addons/membership/i18n/mk.po | 4 +- addons/membership/i18n/mn.po | 4 +- addons/membership/i18n/nl.po | 4 +- addons/membership/i18n/nl_BE.po | 4 +- addons/membership/i18n/pl.po | 4 +- addons/membership/i18n/pt.po | 4 +- addons/membership/i18n/pt_BR.po | 4 +- addons/membership/i18n/ro.po | 4 +- addons/membership/i18n/ru.po | 4 +- addons/membership/i18n/sk.po | 4 +- addons/membership/i18n/sl.po | 4 +- addons/membership/i18n/sq.po | 4 +- addons/membership/i18n/sr@latin.po | 4 +- addons/membership/i18n/sv.po | 4 +- addons/membership/i18n/tlh.po | 4 +- addons/membership/i18n/tr.po | 4 +- addons/membership/i18n/uk.po | 4 +- addons/membership/i18n/vi.po | 4 +- addons/membership/i18n/zh_CN.po | 4 +- addons/membership/i18n/zh_TW.po | 4 +- addons/mrp/i18n/ar.po | 4 +- addons/mrp/i18n/bg.po | 4 +- addons/mrp/i18n/bs.po | 4 +- addons/mrp/i18n/ca.po | 4 +- addons/mrp/i18n/cs.po | 4 +- addons/mrp/i18n/da.po | 4 +- addons/mrp/i18n/de.po | 4 +- addons/mrp/i18n/el.po | 4 +- addons/mrp/i18n/es.po | 4 +- addons/mrp/i18n/es_AR.po | 4 +- addons/mrp/i18n/es_CL.po | 4 +- addons/mrp/i18n/es_CR.po | 4 +- addons/mrp/i18n/es_EC.po | 4 +- addons/mrp/i18n/es_MX.po | 4 +- addons/mrp/i18n/et.po | 4 +- addons/mrp/i18n/fi.po | 4 +- addons/mrp/i18n/fr.po | 4 +- addons/mrp/i18n/gl.po | 4 +- addons/mrp/i18n/hi.po | 4 +- addons/mrp/i18n/hr.po | 4 +- addons/mrp/i18n/hu.po | 4 +- addons/mrp/i18n/id.po | 4 +- addons/mrp/i18n/it.po | 4 +- addons/mrp/i18n/ja.po | 4 +- addons/mrp/i18n/ko.po | 4 +- addons/mrp/i18n/lt.po | 4 +- addons/mrp/i18n/lv.po | 4 +- addons/mrp/i18n/mk.po | 4 +- addons/mrp/i18n/mn.po | 4 +- addons/mrp/i18n/nb.po | 4 +- addons/mrp/i18n/nl.po | 4 +- addons/mrp/i18n/nl_BE.po | 4 +- addons/mrp/i18n/pl.po | 4 +- addons/mrp/i18n/pt.po | 4 +- addons/mrp/i18n/pt_BR.po | 4 +- addons/mrp/i18n/ro.po | 4 +- addons/mrp/i18n/ru.po | 4 +- addons/mrp/i18n/sk.po | 4 +- addons/mrp/i18n/sl.po | 4 +- addons/mrp/i18n/sq.po | 4 +- addons/mrp/i18n/sr@latin.po | 4 +- addons/mrp/i18n/sv.po | 4 +- addons/mrp/i18n/tlh.po | 4 +- addons/mrp/i18n/tr.po | 4 +- addons/mrp/i18n/uk.po | 4 +- addons/mrp/i18n/vi.po | 4 +- addons/mrp/i18n/zh_CN.po | 4 +- addons/mrp/i18n/zh_HK.po | 4 +- addons/mrp/i18n/zh_TW.po | 4 +- addons/mrp_byproduct/i18n/ab.po | 4 +- addons/mrp_byproduct/i18n/ar.po | 4 +- addons/mrp_byproduct/i18n/bg.po | 4 +- addons/mrp_byproduct/i18n/bs.po | 4 +- addons/mrp_byproduct/i18n/ca.po | 4 +- addons/mrp_byproduct/i18n/cs.po | 4 +- addons/mrp_byproduct/i18n/da.po | 4 +- addons/mrp_byproduct/i18n/de.po | 4 +- addons/mrp_byproduct/i18n/es.po | 4 +- addons/mrp_byproduct/i18n/es_AR.po | 4 +- addons/mrp_byproduct/i18n/es_CR.po | 4 +- addons/mrp_byproduct/i18n/es_EC.po | 4 +- addons/mrp_byproduct/i18n/et.po | 4 +- addons/mrp_byproduct/i18n/fi.po | 4 +- addons/mrp_byproduct/i18n/fr.po | 4 +- addons/mrp_byproduct/i18n/gl.po | 4 +- addons/mrp_byproduct/i18n/hr.po | 4 +- addons/mrp_byproduct/i18n/hu.po | 4 +- addons/mrp_byproduct/i18n/id.po | 4 +- addons/mrp_byproduct/i18n/it.po | 4 +- addons/mrp_byproduct/i18n/ja.po | 4 +- addons/mrp_byproduct/i18n/ko.po | 4 +- addons/mrp_byproduct/i18n/lt.po | 4 +- addons/mrp_byproduct/i18n/lv.po | 4 +- addons/mrp_byproduct/i18n/mk.po | 4 +- addons/mrp_byproduct/i18n/mn.po | 4 +- addons/mrp_byproduct/i18n/nb.po | 4 +- addons/mrp_byproduct/i18n/nl.po | 4 +- addons/mrp_byproduct/i18n/nl_BE.po | 4 +- addons/mrp_byproduct/i18n/oc.po | 4 +- addons/mrp_byproduct/i18n/pl.po | 4 +- addons/mrp_byproduct/i18n/pt.po | 4 +- addons/mrp_byproduct/i18n/pt_BR.po | 4 +- addons/mrp_byproduct/i18n/ro.po | 4 +- addons/mrp_byproduct/i18n/ru.po | 4 +- addons/mrp_byproduct/i18n/sk.po | 4 +- addons/mrp_byproduct/i18n/sl.po | 4 +- addons/mrp_byproduct/i18n/sq.po | 4 +- addons/mrp_byproduct/i18n/sr.po | 4 +- addons/mrp_byproduct/i18n/sr@latin.po | 4 +- addons/mrp_byproduct/i18n/sv.po | 4 +- addons/mrp_byproduct/i18n/tlh.po | 4 +- addons/mrp_byproduct/i18n/tr.po | 4 +- addons/mrp_byproduct/i18n/uk.po | 4 +- addons/mrp_byproduct/i18n/vi.po | 4 +- addons/mrp_byproduct/i18n/zh_CN.po | 4 +- addons/mrp_byproduct/i18n/zh_TW.po | 4 +- addons/mrp_jit/i18n/ar.po | 4 +- addons/mrp_jit/i18n/bg.po | 4 +- addons/mrp_jit/i18n/bs.po | 4 +- addons/mrp_jit/i18n/ca.po | 4 +- addons/mrp_jit/i18n/cs.po | 4 +- addons/mrp_jit/i18n/da.po | 4 +- addons/mrp_jit/i18n/de.po | 4 +- addons/mrp_jit/i18n/el.po | 4 +- addons/mrp_jit/i18n/es.po | 4 +- addons/mrp_jit/i18n/es_AR.po | 4 +- addons/mrp_jit/i18n/es_CR.po | 4 +- addons/mrp_jit/i18n/es_EC.po | 4 +- addons/mrp_jit/i18n/et.po | 4 +- addons/mrp_jit/i18n/fi.po | 4 +- addons/mrp_jit/i18n/fr.po | 4 +- addons/mrp_jit/i18n/gl.po | 4 +- addons/mrp_jit/i18n/hr.po | 4 +- addons/mrp_jit/i18n/hu.po | 4 +- addons/mrp_jit/i18n/id.po | 4 +- addons/mrp_jit/i18n/it.po | 4 +- addons/mrp_jit/i18n/ja.po | 4 +- addons/mrp_jit/i18n/kab.po | 4 +- addons/mrp_jit/i18n/ko.po | 4 +- addons/mrp_jit/i18n/lt.po | 4 +- addons/mrp_jit/i18n/mk.po | 4 +- addons/mrp_jit/i18n/ml.po | 4 +- addons/mrp_jit/i18n/mn.po | 4 +- addons/mrp_jit/i18n/nb.po | 4 +- addons/mrp_jit/i18n/nl.po | 4 +- addons/mrp_jit/i18n/nl_BE.po | 4 +- addons/mrp_jit/i18n/oc.po | 4 +- addons/mrp_jit/i18n/pl.po | 4 +- addons/mrp_jit/i18n/pt.po | 4 +- addons/mrp_jit/i18n/pt_BR.po | 4 +- addons/mrp_jit/i18n/ro.po | 4 +- addons/mrp_jit/i18n/ru.po | 4 +- addons/mrp_jit/i18n/sk.po | 4 +- addons/mrp_jit/i18n/sl.po | 4 +- addons/mrp_jit/i18n/sq.po | 4 +- addons/mrp_jit/i18n/sr.po | 4 +- addons/mrp_jit/i18n/sr@latin.po | 4 +- addons/mrp_jit/i18n/sv.po | 4 +- addons/mrp_jit/i18n/ta.po | 4 +- addons/mrp_jit/i18n/tr.po | 4 +- addons/mrp_jit/i18n/uk.po | 4 +- addons/mrp_jit/i18n/vi.po | 4 +- addons/mrp_jit/i18n/zh_CN.po | 4 +- addons/mrp_jit/i18n/zh_TW.po | 4 +- addons/mrp_operations/i18n/ar.po | 4 +- addons/mrp_operations/i18n/bg.po | 4 +- addons/mrp_operations/i18n/bs.po | 4 +- addons/mrp_operations/i18n/ca.po | 4 +- addons/mrp_operations/i18n/cs.po | 4 +- addons/mrp_operations/i18n/da.po | 4 +- addons/mrp_operations/i18n/de.po | 4 +- addons/mrp_operations/i18n/es.po | 4 +- addons/mrp_operations/i18n/es_AR.po | 4 +- addons/mrp_operations/i18n/es_CR.po | 4 +- addons/mrp_operations/i18n/es_EC.po | 4 +- addons/mrp_operations/i18n/et.po | 4 +- addons/mrp_operations/i18n/fi.po | 4 +- addons/mrp_operations/i18n/fr.po | 4 +- addons/mrp_operations/i18n/hi.po | 4 +- addons/mrp_operations/i18n/hr.po | 4 +- addons/mrp_operations/i18n/hu.po | 4 +- addons/mrp_operations/i18n/id.po | 4 +- addons/mrp_operations/i18n/it.po | 4 +- addons/mrp_operations/i18n/ja.po | 4 +- addons/mrp_operations/i18n/ko.po | 4 +- addons/mrp_operations/i18n/lt.po | 4 +- addons/mrp_operations/i18n/lv.po | 4 +- addons/mrp_operations/i18n/mk.po | 4 +- addons/mrp_operations/i18n/mn.po | 4 +- addons/mrp_operations/i18n/nl.po | 4 +- addons/mrp_operations/i18n/nl_BE.po | 4 +- addons/mrp_operations/i18n/pl.po | 4 +- addons/mrp_operations/i18n/pt.po | 4 +- addons/mrp_operations/i18n/pt_BR.po | 4 +- addons/mrp_operations/i18n/ro.po | 4 +- addons/mrp_operations/i18n/ru.po | 4 +- addons/mrp_operations/i18n/sl.po | 4 +- addons/mrp_operations/i18n/sq.po | 4 +- addons/mrp_operations/i18n/sr.po | 4 +- addons/mrp_operations/i18n/sr@latin.po | 4 +- addons/mrp_operations/i18n/sv.po | 4 +- addons/mrp_operations/i18n/tlh.po | 4 +- addons/mrp_operations/i18n/tr.po | 4 +- addons/mrp_operations/i18n/uk.po | 4 +- addons/mrp_operations/i18n/vi.po | 4 +- addons/mrp_operations/i18n/zh_CN.po | 4 +- addons/mrp_operations/i18n/zh_TW.po | 4 +- addons/mrp_repair/i18n/ar.po | 4 +- addons/mrp_repair/i18n/bg.po | 4 +- addons/mrp_repair/i18n/bs.po | 4 +- addons/mrp_repair/i18n/ca.po | 4 +- addons/mrp_repair/i18n/cs.po | 4 +- addons/mrp_repair/i18n/da.po | 4 +- addons/mrp_repair/i18n/de.po | 4 +- addons/mrp_repair/i18n/es.po | 4 +- addons/mrp_repair/i18n/es_AR.po | 4 +- addons/mrp_repair/i18n/es_CR.po | 4 +- addons/mrp_repair/i18n/es_EC.po | 4 +- addons/mrp_repair/i18n/et.po | 4 +- addons/mrp_repair/i18n/fi.po | 4 +- addons/mrp_repair/i18n/fr.po | 4 +- addons/mrp_repair/i18n/hi.po | 4 +- addons/mrp_repair/i18n/hr.po | 4 +- addons/mrp_repair/i18n/hu.po | 4 +- addons/mrp_repair/i18n/id.po | 4 +- addons/mrp_repair/i18n/it.po | 4 +- addons/mrp_repair/i18n/ja.po | 4 +- addons/mrp_repair/i18n/ko.po | 4 +- addons/mrp_repair/i18n/lt.po | 4 +- addons/mrp_repair/i18n/lv.po | 4 +- addons/mrp_repair/i18n/mk.po | 4 +- addons/mrp_repair/i18n/mn.po | 4 +- addons/mrp_repair/i18n/nl.po | 4 +- addons/mrp_repair/i18n/nl_BE.po | 4 +- addons/mrp_repair/i18n/pl.po | 4 +- addons/mrp_repair/i18n/pt.po | 4 +- addons/mrp_repair/i18n/pt_BR.po | 4 +- addons/mrp_repair/i18n/ro.po | 4 +- addons/mrp_repair/i18n/ru.po | 4 +- addons/mrp_repair/i18n/sl.po | 4 +- addons/mrp_repair/i18n/sq.po | 4 +- addons/mrp_repair/i18n/sr.po | 4 +- addons/mrp_repair/i18n/sr@latin.po | 4 +- addons/mrp_repair/i18n/sv.po | 4 +- addons/mrp_repair/i18n/tlh.po | 4 +- addons/mrp_repair/i18n/tr.po | 4 +- addons/mrp_repair/i18n/uk.po | 4 +- addons/mrp_repair/i18n/vi.po | 4 +- addons/mrp_repair/i18n/zh_CN.po | 4 +- addons/mrp_repair/i18n/zh_TW.po | 4 +- addons/multi_company/i18n/ar.po | 4 +- addons/multi_company/i18n/bg.po | 4 +- addons/multi_company/i18n/bs.po | 4 +- addons/multi_company/i18n/ca.po | 4 +- addons/multi_company/i18n/cs.po | 4 +- addons/multi_company/i18n/da.po | 4 +- addons/multi_company/i18n/de.po | 4 +- addons/multi_company/i18n/es.po | 4 +- addons/multi_company/i18n/es_CR.po | 4 +- addons/multi_company/i18n/es_EC.po | 4 +- addons/multi_company/i18n/et.po | 4 +- addons/multi_company/i18n/fi.po | 4 +- addons/multi_company/i18n/fr.po | 4 +- addons/multi_company/i18n/gl.po | 4 +- addons/multi_company/i18n/hr.po | 4 +- addons/multi_company/i18n/hu.po | 4 +- addons/multi_company/i18n/id.po | 4 +- addons/multi_company/i18n/it.po | 4 +- addons/multi_company/i18n/ja.po | 4 +- addons/multi_company/i18n/lo.po | 4 +- addons/multi_company/i18n/lt.po | 4 +- addons/multi_company/i18n/lv.po | 4 +- addons/multi_company/i18n/mk.po | 4 +- addons/multi_company/i18n/mn.po | 4 +- addons/multi_company/i18n/nb.po | 4 +- addons/multi_company/i18n/nl.po | 4 +- addons/multi_company/i18n/oc.po | 4 +- addons/multi_company/i18n/pl.po | 4 +- addons/multi_company/i18n/pt.po | 4 +- addons/multi_company/i18n/pt_BR.po | 4 +- addons/multi_company/i18n/ro.po | 4 +- addons/multi_company/i18n/ru.po | 4 +- addons/multi_company/i18n/sl.po | 4 +- addons/multi_company/i18n/sr.po | 4 +- addons/multi_company/i18n/sr@latin.po | 4 +- addons/multi_company/i18n/sv.po | 4 +- addons/multi_company/i18n/tr.po | 4 +- addons/multi_company/i18n/uk.po | 4 +- addons/multi_company/i18n/vi.po | 4 +- addons/multi_company/i18n/zh_CN.po | 4 +- addons/multi_company/i18n/zh_TW.po | 4 +- addons/note/i18n/cs.po | 279 + addons/note/i18n/de.po | 4 +- addons/note/i18n/es.po | 4 +- addons/note/i18n/fr.po | 4 +- addons/note/i18n/hr.po | 4 +- addons/note/i18n/hu.po | 4 +- addons/note/i18n/id.po | 4 +- addons/note/i18n/it.po | 4 +- addons/note/i18n/mk.po | 4 +- addons/note/i18n/mn.po | 4 +- addons/note/i18n/nl.po | 4 +- addons/note/i18n/pl.po | 4 +- addons/note/i18n/pt.po | 4 +- addons/note/i18n/pt_BR.po | 4 +- addons/note/i18n/ro.po | 4 +- addons/note/i18n/sl.po | 4 +- addons/note/i18n/sv.po | 4 +- addons/note/i18n/tr.po | 4 +- addons/note/i18n/zh_CN.po | 4 +- addons/note_pad/i18n/de.po | 4 +- addons/note_pad/i18n/es.po | 4 +- addons/note_pad/i18n/fr.po | 4 +- addons/note_pad/i18n/hr.po | 4 +- addons/note_pad/i18n/hu.po | 4 +- addons/note_pad/i18n/it.po | 4 +- addons/note_pad/i18n/mk.po | 4 +- addons/note_pad/i18n/mn.po | 4 +- addons/note_pad/i18n/nl.po | 4 +- addons/note_pad/i18n/pl.po | 4 +- addons/note_pad/i18n/pt.po | 4 +- addons/note_pad/i18n/pt_BR.po | 4 +- addons/note_pad/i18n/ro.po | 4 +- addons/note_pad/i18n/ru.po | 4 +- addons/note_pad/i18n/sl.po | 4 +- addons/note_pad/i18n/sv.po | 4 +- addons/note_pad/i18n/tr.po | 4 +- addons/note_pad/i18n/zh_CN.po | 4 +- addons/pad/i18n/ar.po | 4 +- addons/pad/i18n/bg.po | 4 +- addons/pad/i18n/ca.po | 4 +- addons/pad/i18n/cs.po | 4 +- addons/pad/i18n/da.po | 4 +- addons/pad/i18n/de.po | 4 +- addons/pad/i18n/es.po | 4 +- addons/pad/i18n/es_CR.po | 4 +- addons/pad/i18n/fi.po | 4 +- addons/pad/i18n/fr.po | 4 +- addons/pad/i18n/gl.po | 4 +- addons/pad/i18n/hr.po | 4 +- addons/pad/i18n/hu.po | 4 +- addons/pad/i18n/it.po | 4 +- addons/pad/i18n/ja.po | 4 +- addons/pad/i18n/mk.po | 4 +- addons/pad/i18n/mn.po | 4 +- addons/pad/i18n/nb.po | 4 +- addons/pad/i18n/nl.po | 4 +- addons/pad/i18n/pl.po | 4 +- addons/pad/i18n/pt.po | 4 +- addons/pad/i18n/pt_BR.po | 4 +- addons/pad/i18n/ro.po | 4 +- addons/pad/i18n/ru.po | 4 +- addons/pad/i18n/sl.po | 4 +- addons/pad/i18n/sr@latin.po | 4 +- addons/pad/i18n/sv.po | 4 +- addons/pad/i18n/tr.po | 4 +- addons/pad/i18n/zh_CN.po | 4 +- addons/pad_project/i18n/ar.po | 4 +- addons/pad_project/i18n/cs.po | 4 +- addons/pad_project/i18n/de.po | 4 +- addons/pad_project/i18n/es.po | 4 +- addons/pad_project/i18n/es_CR.po | 4 +- addons/pad_project/i18n/fi.po | 4 +- addons/pad_project/i18n/fr.po | 4 +- addons/pad_project/i18n/hr.po | 4 +- addons/pad_project/i18n/hu.po | 4 +- addons/pad_project/i18n/it.po | 4 +- addons/pad_project/i18n/ja.po | 4 +- addons/pad_project/i18n/mk.po | 4 +- addons/pad_project/i18n/mn.po | 4 +- addons/pad_project/i18n/nb.po | 4 +- addons/pad_project/i18n/nl.po | 4 +- addons/pad_project/i18n/pl.po | 4 +- addons/pad_project/i18n/pt.po | 4 +- addons/pad_project/i18n/pt_BR.po | 4 +- addons/pad_project/i18n/ro.po | 4 +- addons/pad_project/i18n/ru.po | 4 +- addons/pad_project/i18n/sl.po | 4 +- addons/pad_project/i18n/sv.po | 4 +- addons/pad_project/i18n/tr.po | 4 +- addons/pad_project/i18n/zh_CN.po | 4 +- addons/pad_project/i18n/zh_TW.po | 4 +- addons/plugin/i18n/ar.po | 4 +- addons/plugin/i18n/cs.po | 4 +- addons/plugin/i18n/de.po | 4 +- addons/plugin/i18n/es.po | 4 +- addons/plugin/i18n/es_CR.po | 4 +- addons/plugin/i18n/fi.po | 4 +- addons/plugin/i18n/fr.po | 4 +- addons/plugin/i18n/hr.po | 4 +- addons/plugin/i18n/hu.po | 4 +- addons/plugin/i18n/it.po | 4 +- addons/plugin/i18n/ja.po | 4 +- addons/plugin/i18n/mk.po | 4 +- addons/plugin/i18n/mn.po | 4 +- addons/plugin/i18n/nb.po | 4 +- addons/plugin/i18n/nl.po | 4 +- addons/plugin/i18n/pt.po | 4 +- addons/plugin/i18n/pt_BR.po | 4 +- addons/plugin/i18n/ro.po | 4 +- addons/plugin/i18n/ru.po | 4 +- addons/plugin/i18n/sl.po | 4 +- addons/plugin/i18n/sv.po | 4 +- addons/plugin/i18n/tr.po | 4 +- addons/plugin/i18n/zh_CN.po | 4 +- addons/plugin/i18n/zh_TW.po | 4 +- addons/plugin_outlook/i18n/ar.po | 4 +- addons/plugin_outlook/i18n/bg.po | 4 +- addons/plugin_outlook/i18n/ca.po | 4 +- addons/plugin_outlook/i18n/da.po | 4 +- addons/plugin_outlook/i18n/de.po | 4 +- addons/plugin_outlook/i18n/el.po | 4 +- addons/plugin_outlook/i18n/es.po | 4 +- addons/plugin_outlook/i18n/es_CR.po | 4 +- addons/plugin_outlook/i18n/et.po | 4 +- addons/plugin_outlook/i18n/fi.po | 4 +- addons/plugin_outlook/i18n/fr.po | 4 +- addons/plugin_outlook/i18n/gl.po | 4 +- addons/plugin_outlook/i18n/hr.po | 4 +- addons/plugin_outlook/i18n/hu.po | 4 +- addons/plugin_outlook/i18n/id.po | 4 +- addons/plugin_outlook/i18n/it.po | 4 +- addons/plugin_outlook/i18n/ja.po | 4 +- addons/plugin_outlook/i18n/mk.po | 4 +- addons/plugin_outlook/i18n/mn.po | 4 +- addons/plugin_outlook/i18n/nb.po | 4 +- addons/plugin_outlook/i18n/nl.po | 4 +- addons/plugin_outlook/i18n/pl.po | 4 +- addons/plugin_outlook/i18n/pt.po | 4 +- addons/plugin_outlook/i18n/pt_BR.po | 4 +- addons/plugin_outlook/i18n/ro.po | 4 +- addons/plugin_outlook/i18n/ru.po | 4 +- addons/plugin_outlook/i18n/sl.po | 4 +- addons/plugin_outlook/i18n/sr@latin.po | 4 +- addons/plugin_outlook/i18n/sv.po | 4 +- addons/plugin_outlook/i18n/tr.po | 4 +- addons/plugin_outlook/i18n/zh_CN.po | 4 +- addons/plugin_thunderbird/i18n/ar.po | 4 +- addons/plugin_thunderbird/i18n/bg.po | 4 +- addons/plugin_thunderbird/i18n/ca.po | 4 +- addons/plugin_thunderbird/i18n/cs.po | 4 +- addons/plugin_thunderbird/i18n/da.po | 4 +- addons/plugin_thunderbird/i18n/de.po | 4 +- addons/plugin_thunderbird/i18n/en_GB.po | 4 +- addons/plugin_thunderbird/i18n/en_US.po | 4 +- addons/plugin_thunderbird/i18n/es.po | 4 +- addons/plugin_thunderbird/i18n/es_CR.po | 4 +- addons/plugin_thunderbird/i18n/et.po | 4 +- addons/plugin_thunderbird/i18n/eu.po | 4 +- addons/plugin_thunderbird/i18n/fi.po | 4 +- addons/plugin_thunderbird/i18n/fr.po | 4 +- addons/plugin_thunderbird/i18n/gl.po | 4 +- addons/plugin_thunderbird/i18n/hr.po | 4 +- addons/plugin_thunderbird/i18n/hu.po | 4 +- addons/plugin_thunderbird/i18n/is.po | 4 +- addons/plugin_thunderbird/i18n/it.po | 4 +- addons/plugin_thunderbird/i18n/ja.po | 4 +- addons/plugin_thunderbird/i18n/mk.po | 4 +- addons/plugin_thunderbird/i18n/mn.po | 4 +- addons/plugin_thunderbird/i18n/nb.po | 4 +- addons/plugin_thunderbird/i18n/nl.po | 4 +- addons/plugin_thunderbird/i18n/pl.po | 4 +- addons/plugin_thunderbird/i18n/pt.po | 4 +- addons/plugin_thunderbird/i18n/pt_BR.po | 4 +- addons/plugin_thunderbird/i18n/ro.po | 4 +- addons/plugin_thunderbird/i18n/ru.po | 4 +- addons/plugin_thunderbird/i18n/sk.po | 4 +- addons/plugin_thunderbird/i18n/sl.po | 4 +- addons/plugin_thunderbird/i18n/sr.po | 4 +- addons/plugin_thunderbird/i18n/sr@latin.po | 4 +- addons/plugin_thunderbird/i18n/sv.po | 4 +- addons/plugin_thunderbird/i18n/tr.po | 4 +- addons/plugin_thunderbird/i18n/zh_CN.po | 4 +- addons/point_of_sale/i18n/ar.po | 4 +- addons/point_of_sale/i18n/bg.po | 4 +- addons/point_of_sale/i18n/bs.po | 4 +- addons/point_of_sale/i18n/ca.po | 4 +- addons/point_of_sale/i18n/cs.po | 4 +- addons/point_of_sale/i18n/da.po | 4 +- addons/point_of_sale/i18n/de.po | 4 +- addons/point_of_sale/i18n/el.po | 4 +- addons/point_of_sale/i18n/es.po | 4 +- addons/point_of_sale/i18n/es_AR.po | 4 +- addons/point_of_sale/i18n/es_CR.po | 4 +- addons/point_of_sale/i18n/es_EC.po | 4 +- addons/point_of_sale/i18n/et.po | 4 +- addons/point_of_sale/i18n/fi.po | 4 +- addons/point_of_sale/i18n/fr.po | 4 +- addons/point_of_sale/i18n/hi.po | 4 +- addons/point_of_sale/i18n/hr.po | 4 +- addons/point_of_sale/i18n/hu.po | 4 +- addons/point_of_sale/i18n/id.po | 4 +- addons/point_of_sale/i18n/it.po | 4 +- addons/point_of_sale/i18n/ja.po | 4 +- addons/point_of_sale/i18n/ko.po | 4 +- addons/point_of_sale/i18n/lt.po | 4 +- addons/point_of_sale/i18n/lv.po | 4 +- addons/point_of_sale/i18n/mk.po | 4 +- addons/point_of_sale/i18n/mn.po | 4 +- addons/point_of_sale/i18n/nb.po | 4 +- addons/point_of_sale/i18n/nl.po | 4 +- addons/point_of_sale/i18n/nl_BE.po | 4 +- addons/point_of_sale/i18n/pl.po | 4 +- addons/point_of_sale/i18n/pt.po | 4 +- addons/point_of_sale/i18n/pt_BR.po | 4 +- addons/point_of_sale/i18n/ro.po | 4 +- addons/point_of_sale/i18n/ru.po | 4 +- addons/point_of_sale/i18n/sl.po | 4 +- addons/point_of_sale/i18n/sq.po | 4 +- addons/point_of_sale/i18n/sr.po | 4 +- addons/point_of_sale/i18n/sr@latin.po | 4 +- addons/point_of_sale/i18n/sv.po | 4 +- addons/point_of_sale/i18n/tlh.po | 4 +- addons/point_of_sale/i18n/tr.po | 10 +- addons/point_of_sale/i18n/uk.po | 4 +- addons/point_of_sale/i18n/vi.po | 4 +- addons/point_of_sale/i18n/zh_CN.po | 4 +- addons/point_of_sale/i18n/zh_HK.po | 4 +- addons/point_of_sale/i18n/zh_TW.po | 4 +- addons/portal/i18n/ar.po | 4 +- addons/portal/i18n/bg.po | 4 +- addons/portal/i18n/bs.po | 4 +- addons/portal/i18n/ca.po | 4 +- addons/portal/i18n/cs.po | 4 +- addons/portal/i18n/da.po | 4 +- addons/portal/i18n/de.po | 4 +- addons/portal/i18n/es.po | 4 +- addons/portal/i18n/es_CR.po | 4 +- addons/portal/i18n/et.po | 4 +- addons/portal/i18n/fi.po | 4 +- addons/portal/i18n/fr.po | 4 +- addons/portal/i18n/hr.po | 4 +- addons/portal/i18n/hu.po | 4 +- addons/portal/i18n/id.po | 4 +- addons/portal/i18n/it.po | 4 +- addons/portal/i18n/ja.po | 4 +- addons/portal/i18n/lo.po | 4 +- addons/portal/i18n/lt.po | 4 +- addons/portal/i18n/mk.po | 4 +- addons/portal/i18n/mn.po | 4 +- addons/portal/i18n/nl.po | 4 +- addons/portal/i18n/pl.po | 4 +- addons/portal/i18n/pt.po | 4 +- addons/portal/i18n/pt_BR.po | 4 +- addons/portal/i18n/ro.po | 4 +- addons/portal/i18n/ru.po | 4 +- addons/portal/i18n/sl.po | 4 +- addons/portal/i18n/sr.po | 4 +- addons/portal/i18n/sv.po | 4 +- addons/portal/i18n/tr.po | 4 +- addons/portal/i18n/uk.po | 4 +- addons/portal/i18n/zh_CN.po | 4 +- addons/portal/i18n/zh_TW.po | 4 +- addons/portal_anonymous/i18n/cs.po | 4 +- addons/portal_anonymous/i18n/es.po | 4 +- addons/portal_anonymous/i18n/fr.po | 4 +- addons/portal_anonymous/i18n/hu.po | 4 +- addons/portal_anonymous/i18n/mk.po | 4 +- addons/portal_anonymous/i18n/mn.po | 4 +- addons/portal_anonymous/i18n/nl.po | 4 +- addons/portal_anonymous/i18n/pt.po | 4 +- addons/portal_anonymous/i18n/pt_BR.po | 4 +- addons/portal_anonymous/i18n/ro.po | 4 +- addons/portal_anonymous/i18n/sl.po | 4 +- addons/portal_anonymous/i18n/sv.po | 4 +- addons/portal_anonymous/i18n/tr.po | 4 +- addons/portal_claim/i18n/cs.po | 4 +- addons/portal_claim/i18n/de.po | 4 +- addons/portal_claim/i18n/es.po | 4 +- addons/portal_claim/i18n/fr.po | 4 +- addons/portal_claim/i18n/hr.po | 4 +- addons/portal_claim/i18n/hu.po | 4 +- addons/portal_claim/i18n/it.po | 4 +- addons/portal_claim/i18n/mk.po | 4 +- addons/portal_claim/i18n/nl.po | 4 +- addons/portal_claim/i18n/pl.po | 4 +- addons/portal_claim/i18n/pt.po | 4 +- addons/portal_claim/i18n/pt_BR.po | 4 +- addons/portal_claim/i18n/ro.po | 4 +- addons/portal_claim/i18n/sl.po | 4 +- addons/portal_claim/i18n/tr.po | 4 +- addons/portal_claim/i18n/zh_CN.po | 4 +- addons/portal_crm/i18n/de.po | 4 +- addons/portal_crm/i18n/es.po | 4 +- addons/portal_crm/i18n/hr.po | 4 +- addons/portal_crm/i18n/hu.po | 4 +- addons/portal_crm/i18n/mk.po | 4 +- addons/portal_crm/i18n/nl.po | 4 +- addons/portal_crm/i18n/pl.po | 4 +- addons/portal_crm/i18n/pt.po | 4 +- addons/portal_crm/i18n/pt_BR.po | 4 +- addons/portal_crm/i18n/ro.po | 4 +- addons/portal_crm/i18n/sl.po | 4 +- addons/portal_crm/i18n/sv.po | 4 +- addons/portal_crm/i18n/tr.po | 4 +- addons/portal_crm/i18n/zh_CN.po | 4 +- addons/portal_event/i18n/cs.po | 4 +- addons/portal_event/i18n/de.po | 4 +- addons/portal_event/i18n/es.po | 4 +- addons/portal_event/i18n/hr.po | 4 +- addons/portal_event/i18n/hu.po | 4 +- addons/portal_event/i18n/mk.po | 4 +- addons/portal_event/i18n/nl.po | 4 +- addons/portal_event/i18n/pt.po | 4 +- addons/portal_event/i18n/pt_BR.po | 4 +- addons/portal_event/i18n/ro.po | 4 +- addons/portal_event/i18n/sl.po | 4 +- addons/portal_event/i18n/sv.po | 4 +- addons/portal_event/i18n/tr.po | 4 +- addons/portal_event/i18n/zh_CN.po | 4 +- addons/portal_hr_employees/i18n/de.po | 4 +- addons/portal_hr_employees/i18n/es.po | 4 +- addons/portal_hr_employees/i18n/hr.po | 4 +- addons/portal_hr_employees/i18n/hu.po | 4 +- addons/portal_hr_employees/i18n/mk.po | 4 +- addons/portal_hr_employees/i18n/nl.po | 4 +- addons/portal_hr_employees/i18n/pl.po | 4 +- addons/portal_hr_employees/i18n/pt.po | 4 +- addons/portal_hr_employees/i18n/pt_BR.po | 4 +- addons/portal_hr_employees/i18n/ro.po | 4 +- addons/portal_hr_employees/i18n/sl.po | 4 +- addons/portal_hr_employees/i18n/tr.po | 4 +- addons/portal_hr_employees/i18n/zh_CN.po | 4 +- addons/portal_project/i18n/cs.po | 4 +- addons/portal_project/i18n/de.po | 4 +- addons/portal_project/i18n/es.po | 4 +- addons/portal_project/i18n/fr.po | 4 +- addons/portal_project/i18n/hr.po | 4 +- addons/portal_project/i18n/hu.po | 4 +- addons/portal_project/i18n/it.po | 4 +- addons/portal_project/i18n/mk.po | 4 +- addons/portal_project/i18n/nl.po | 4 +- addons/portal_project/i18n/pl.po | 4 +- addons/portal_project/i18n/pt.po | 4 +- addons/portal_project/i18n/pt_BR.po | 4 +- addons/portal_project/i18n/ro.po | 4 +- addons/portal_project/i18n/sl.po | 4 +- addons/portal_project/i18n/sv.po | 4 +- addons/portal_project/i18n/tr.po | 4 +- addons/portal_project/i18n/zh_CN.po | 4 +- addons/portal_project_issue/i18n/cs.po | 4 +- addons/portal_project_issue/i18n/de.po | 4 +- addons/portal_project_issue/i18n/es.po | 4 +- addons/portal_project_issue/i18n/hr.po | 4 +- addons/portal_project_issue/i18n/hu.po | 4 +- addons/portal_project_issue/i18n/it.po | 4 +- addons/portal_project_issue/i18n/mk.po | 4 +- addons/portal_project_issue/i18n/nl.po | 4 +- addons/portal_project_issue/i18n/pl.po | 4 +- addons/portal_project_issue/i18n/pt.po | 4 +- addons/portal_project_issue/i18n/pt_BR.po | 4 +- addons/portal_project_issue/i18n/ro.po | 4 +- addons/portal_project_issue/i18n/sl.po | 4 +- addons/portal_project_issue/i18n/sv.po | 4 +- addons/portal_project_issue/i18n/tr.po | 4 +- addons/portal_project_issue/i18n/zh_CN.po | 4 +- addons/portal_sale/i18n/cs.po | 4 +- addons/portal_sale/i18n/de.po | 4 +- addons/portal_sale/i18n/es.po | 4 +- addons/portal_sale/i18n/es_MX.po | 4 +- addons/portal_sale/i18n/fi.po | 4 +- addons/portal_sale/i18n/fr.po | 4 +- addons/portal_sale/i18n/hr.po | 4 +- addons/portal_sale/i18n/hu.po | 4 +- addons/portal_sale/i18n/mk.po | 4 +- addons/portal_sale/i18n/mn.po | 4 +- addons/portal_sale/i18n/nl.po | 4 +- addons/portal_sale/i18n/pl.po | 4 +- addons/portal_sale/i18n/pt.po | 4 +- addons/portal_sale/i18n/pt_BR.po | 4 +- addons/portal_sale/i18n/ro.po | 4 +- addons/portal_sale/i18n/sl.po | 4 +- addons/portal_sale/i18n/sv.po | 4 +- addons/portal_sale/i18n/tr.po | 4 +- addons/portal_sale/i18n/zh_CN.po | 4 +- addons/process/i18n/ar.po | 4 +- addons/process/i18n/bg.po | 4 +- addons/process/i18n/bs.po | 4 +- addons/process/i18n/ca.po | 4 +- addons/process/i18n/cs.po | 4 +- addons/process/i18n/da.po | 4 +- addons/process/i18n/de.po | 4 +- addons/process/i18n/el.po | 4 +- addons/process/i18n/es.po | 4 +- addons/process/i18n/es_AR.po | 4 +- addons/process/i18n/es_CL.po | 4 +- addons/process/i18n/es_CR.po | 4 +- addons/process/i18n/et.po | 4 +- addons/process/i18n/fi.po | 4 +- addons/process/i18n/fr.po | 4 +- addons/process/i18n/gl.po | 4 +- addons/process/i18n/hi.po | 4 +- addons/process/i18n/hr.po | 4 +- addons/process/i18n/hu.po | 4 +- addons/process/i18n/id.po | 4 +- addons/process/i18n/it.po | 4 +- addons/process/i18n/ja.po | 4 +- addons/process/i18n/ko.po | 4 +- addons/process/i18n/lt.po | 4 +- addons/process/i18n/mk.po | 4 +- addons/process/i18n/mn.po | 4 +- addons/process/i18n/nl.po | 4 +- addons/process/i18n/nl_BE.po | 4 +- addons/process/i18n/pl.po | 4 +- addons/process/i18n/pt.po | 4 +- addons/process/i18n/pt_BR.po | 4 +- addons/process/i18n/ro.po | 4 +- addons/process/i18n/ru.po | 4 +- addons/process/i18n/sk.po | 4 +- addons/process/i18n/sl.po | 4 +- addons/process/i18n/sq.po | 4 +- addons/process/i18n/sr.po | 4 +- addons/process/i18n/sr@latin.po | 4 +- addons/process/i18n/sv.po | 4 +- addons/process/i18n/tlh.po | 4 +- addons/process/i18n/tr.po | 4 +- addons/process/i18n/uk.po | 4 +- addons/process/i18n/vi.po | 4 +- addons/process/i18n/zh_CN.po | 4 +- addons/process/i18n/zh_TW.po | 4 +- addons/procurement/i18n/ar.po | 4 +- addons/procurement/i18n/bg.po | 4 +- addons/procurement/i18n/ca.po | 4 +- addons/procurement/i18n/cs.po | 4 +- addons/procurement/i18n/da.po | 4 +- addons/procurement/i18n/de.po | 4 +- addons/procurement/i18n/es.po | 4 +- addons/procurement/i18n/es_CL.po | 4 +- addons/procurement/i18n/es_CR.po | 4 +- addons/procurement/i18n/es_EC.po | 4 +- addons/procurement/i18n/et.po | 4 +- addons/procurement/i18n/fi.po | 4 +- addons/procurement/i18n/fr.po | 4 +- addons/procurement/i18n/gl.po | 4 +- addons/procurement/i18n/hr.po | 4 +- addons/procurement/i18n/hu.po | 4 +- addons/procurement/i18n/id.po | 4 +- addons/procurement/i18n/it.po | 4 +- addons/procurement/i18n/ja.po | 4 +- addons/procurement/i18n/mk.po | 4 +- addons/procurement/i18n/mn.po | 4 +- addons/procurement/i18n/nb.po | 4 +- addons/procurement/i18n/nl.po | 4 +- addons/procurement/i18n/pl.po | 4 +- addons/procurement/i18n/pt.po | 4 +- addons/procurement/i18n/pt_BR.po | 4 +- addons/procurement/i18n/ro.po | 4 +- addons/procurement/i18n/ru.po | 4 +- addons/procurement/i18n/sl.po | 4 +- addons/procurement/i18n/sr.po | 4 +- addons/procurement/i18n/sr@latin.po | 4 +- addons/procurement/i18n/sv.po | 4 +- addons/procurement/i18n/tr.po | 4 +- addons/procurement/i18n/vi.po | 4 +- addons/procurement/i18n/zh_CN.po | 4 +- addons/product/i18n/ar.po | 4 +- addons/product/i18n/bg.po | 4 +- addons/product/i18n/bs.po | 4 +- addons/product/i18n/ca.po | 4 +- addons/product/i18n/cs.po | 4 +- addons/product/i18n/da.po | 4 +- addons/product/i18n/de.po | 4 +- addons/product/i18n/el.po | 4 +- addons/product/i18n/es.po | 4 +- addons/product/i18n/es_AR.po | 4 +- addons/product/i18n/es_CL.po | 4 +- addons/product/i18n/es_CR.po | 4 +- addons/product/i18n/es_EC.po | 4 +- addons/product/i18n/es_PY.po | 4 +- addons/product/i18n/et.po | 4 +- addons/product/i18n/eu.po | 4 +- addons/product/i18n/fi.po | 4 +- addons/product/i18n/fr.po | 4 +- addons/product/i18n/gl.po | 4 +- addons/product/i18n/hr.po | 4 +- addons/product/i18n/hu.po | 4 +- addons/product/i18n/id.po | 4 +- addons/product/i18n/it.po | 4 +- addons/product/i18n/ja.po | 4 +- addons/product/i18n/ko.po | 4 +- addons/product/i18n/lo.po | 4 +- addons/product/i18n/lt.po | 4 +- addons/product/i18n/lv.po | 4 +- addons/product/i18n/mk.po | 4 +- addons/product/i18n/mn.po | 4 +- addons/product/i18n/nb.po | 4 +- addons/product/i18n/nl.po | 8 +- addons/product/i18n/nl_BE.po | 4 +- addons/product/i18n/pl.po | 4 +- addons/product/i18n/pt.po | 4 +- addons/product/i18n/pt_BR.po | 4 +- addons/product/i18n/ro.po | 4 +- addons/product/i18n/ru.po | 4 +- addons/product/i18n/sk.po | 4 +- addons/product/i18n/sl.po | 4 +- addons/product/i18n/sq.po | 4 +- addons/product/i18n/sr.po | 4 +- addons/product/i18n/sr@latin.po | 4 +- addons/product/i18n/sv.po | 4 +- addons/product/i18n/th.po | 4 +- addons/product/i18n/tlh.po | 4 +- addons/product/i18n/tr.po | 4 +- addons/product/i18n/uk.po | 4 +- addons/product/i18n/vi.po | 4 +- addons/product/i18n/zh_CN.po | 4 +- addons/product/i18n/zh_TW.po | 4 +- addons/product_expiry/i18n/ar.po | 4 +- addons/product_expiry/i18n/ca.po | 4 +- addons/product_expiry/i18n/cs.po | 4 +- addons/product_expiry/i18n/da.po | 4 +- addons/product_expiry/i18n/de.po | 4 +- addons/product_expiry/i18n/el.po | 4 +- addons/product_expiry/i18n/es.po | 4 +- addons/product_expiry/i18n/es_CR.po | 4 +- addons/product_expiry/i18n/es_EC.po | 4 +- addons/product_expiry/i18n/et.po | 4 +- addons/product_expiry/i18n/fi.po | 4 +- addons/product_expiry/i18n/fr.po | 4 +- addons/product_expiry/i18n/gl.po | 4 +- addons/product_expiry/i18n/hr.po | 4 +- addons/product_expiry/i18n/hu.po | 4 +- addons/product_expiry/i18n/it.po | 4 +- addons/product_expiry/i18n/ja.po | 4 +- addons/product_expiry/i18n/mk.po | 4 +- addons/product_expiry/i18n/mn.po | 4 +- addons/product_expiry/i18n/nl.po | 4 +- addons/product_expiry/i18n/pl.po | 4 +- addons/product_expiry/i18n/pt.po | 4 +- addons/product_expiry/i18n/pt_BR.po | 4 +- addons/product_expiry/i18n/ro.po | 4 +- addons/product_expiry/i18n/ru.po | 4 +- addons/product_expiry/i18n/sl.po | 4 +- addons/product_expiry/i18n/sr.po | 4 +- addons/product_expiry/i18n/sr@latin.po | 4 +- addons/product_expiry/i18n/sv.po | 4 +- addons/product_expiry/i18n/tr.po | 4 +- addons/product_expiry/i18n/vi.po | 4 +- addons/product_expiry/i18n/zh_CN.po | 4 +- addons/product_expiry/i18n/zh_TW.po | 4 +- addons/product_manufacturer/i18n/ar.po | 4 +- addons/product_manufacturer/i18n/bg.po | 4 +- addons/product_manufacturer/i18n/ca.po | 4 +- addons/product_manufacturer/i18n/cs.po | 4 +- addons/product_manufacturer/i18n/da.po | 4 +- addons/product_manufacturer/i18n/de.po | 4 +- addons/product_manufacturer/i18n/el.po | 4 +- addons/product_manufacturer/i18n/es.po | 4 +- addons/product_manufacturer/i18n/es_CR.po | 4 +- addons/product_manufacturer/i18n/es_EC.po | 4 +- addons/product_manufacturer/i18n/et.po | 4 +- addons/product_manufacturer/i18n/fi.po | 4 +- addons/product_manufacturer/i18n/fr.po | 4 +- addons/product_manufacturer/i18n/gl.po | 4 +- addons/product_manufacturer/i18n/hr.po | 4 +- addons/product_manufacturer/i18n/hu.po | 4 +- addons/product_manufacturer/i18n/it.po | 4 +- addons/product_manufacturer/i18n/ja.po | 4 +- addons/product_manufacturer/i18n/lt.po | 4 +- addons/product_manufacturer/i18n/mk.po | 4 +- addons/product_manufacturer/i18n/mn.po | 4 +- addons/product_manufacturer/i18n/nb.po | 4 +- addons/product_manufacturer/i18n/nl.po | 4 +- addons/product_manufacturer/i18n/pl.po | 4 +- addons/product_manufacturer/i18n/pt.po | 4 +- addons/product_manufacturer/i18n/pt_BR.po | 4 +- addons/product_manufacturer/i18n/ro.po | 4 +- addons/product_manufacturer/i18n/ru.po | 4 +- addons/product_manufacturer/i18n/sl.po | 4 +- addons/product_manufacturer/i18n/sr.po | 4 +- addons/product_manufacturer/i18n/sr@latin.po | 4 +- addons/product_manufacturer/i18n/sv.po | 4 +- addons/product_manufacturer/i18n/tr.po | 4 +- addons/product_manufacturer/i18n/zh_CN.po | 4 +- addons/product_manufacturer/i18n/zh_TW.po | 4 +- addons/product_margin/i18n/ar.po | 4 +- addons/product_margin/i18n/bg.po | 4 +- addons/product_margin/i18n/bs.po | 4 +- addons/product_margin/i18n/ca.po | 4 +- addons/product_margin/i18n/cs.po | 4 +- addons/product_margin/i18n/da.po | 4 +- addons/product_margin/i18n/de.po | 4 +- addons/product_margin/i18n/el.po | 4 +- addons/product_margin/i18n/es.po | 4 +- addons/product_margin/i18n/es_AR.po | 4 +- addons/product_margin/i18n/es_CR.po | 4 +- addons/product_margin/i18n/es_EC.po | 4 +- addons/product_margin/i18n/et.po | 4 +- addons/product_margin/i18n/fi.po | 4 +- addons/product_margin/i18n/fr.po | 4 +- addons/product_margin/i18n/gl.po | 4 +- addons/product_margin/i18n/gu.po | 4 +- addons/product_margin/i18n/hr.po | 4 +- addons/product_margin/i18n/hu.po | 4 +- addons/product_margin/i18n/id.po | 4 +- addons/product_margin/i18n/it.po | 4 +- addons/product_margin/i18n/ja.po | 4 +- addons/product_margin/i18n/ko.po | 4 +- addons/product_margin/i18n/lt.po | 4 +- addons/product_margin/i18n/mk.po | 4 +- addons/product_margin/i18n/nl.po | 4 +- addons/product_margin/i18n/nl_BE.po | 4 +- addons/product_margin/i18n/pl.po | 4 +- addons/product_margin/i18n/pt.po | 4 +- addons/product_margin/i18n/pt_BR.po | 4 +- addons/product_margin/i18n/ro.po | 4 +- addons/product_margin/i18n/ru.po | 4 +- addons/product_margin/i18n/sl.po | 4 +- addons/product_margin/i18n/sq.po | 4 +- addons/product_margin/i18n/sr.po | 4 +- addons/product_margin/i18n/sr@latin.po | 4 +- addons/product_margin/i18n/sv.po | 4 +- addons/product_margin/i18n/tlh.po | 4 +- addons/product_margin/i18n/tr.po | 4 +- addons/product_margin/i18n/uk.po | 4 +- addons/product_margin/i18n/vi.po | 4 +- addons/product_margin/i18n/zh_CN.po | 4 +- addons/product_margin/i18n/zh_TW.po | 4 +- addons/product_visible_discount/i18n/ar.po | 4 +- addons/product_visible_discount/i18n/bg.po | 4 +- addons/product_visible_discount/i18n/ca.po | 4 +- addons/product_visible_discount/i18n/cs.po | 4 +- addons/product_visible_discount/i18n/da.po | 4 +- addons/product_visible_discount/i18n/de.po | 4 +- addons/product_visible_discount/i18n/el.po | 4 +- addons/product_visible_discount/i18n/es.po | 4 +- addons/product_visible_discount/i18n/es_CR.po | 4 +- addons/product_visible_discount/i18n/es_EC.po | 4 +- addons/product_visible_discount/i18n/et.po | 4 +- addons/product_visible_discount/i18n/fi.po | 4 +- addons/product_visible_discount/i18n/fr.po | 4 +- addons/product_visible_discount/i18n/gl.po | 4 +- addons/product_visible_discount/i18n/hr.po | 4 +- addons/product_visible_discount/i18n/hu.po | 4 +- addons/product_visible_discount/i18n/it.po | 4 +- addons/product_visible_discount/i18n/ja.po | 4 +- addons/product_visible_discount/i18n/lt.po | 4 +- addons/product_visible_discount/i18n/mk.po | 4 +- addons/product_visible_discount/i18n/mn.po | 4 +- addons/product_visible_discount/i18n/nl.po | 4 +- addons/product_visible_discount/i18n/pl.po | 4 +- addons/product_visible_discount/i18n/pt.po | 4 +- addons/product_visible_discount/i18n/pt_BR.po | 4 +- addons/product_visible_discount/i18n/ro.po | 4 +- addons/product_visible_discount/i18n/ru.po | 4 +- addons/product_visible_discount/i18n/sl.po | 4 +- addons/product_visible_discount/i18n/sr.po | 4 +- .../product_visible_discount/i18n/sr@latin.po | 4 +- addons/product_visible_discount/i18n/sv.po | 4 +- addons/product_visible_discount/i18n/tr.po | 4 +- addons/product_visible_discount/i18n/vi.po | 4 +- addons/product_visible_discount/i18n/zh_CN.po | 4 +- addons/project/i18n/ar.po | 4 +- addons/project/i18n/bg.po | 4 +- addons/project/i18n/bs.po | 4 +- addons/project/i18n/ca.po | 4 +- addons/project/i18n/cs.po | 4 +- addons/project/i18n/da.po | 4 +- addons/project/i18n/de.po | 4 +- addons/project/i18n/el.po | 4 +- addons/project/i18n/es.po | 4 +- addons/project/i18n/es_AR.po | 4 +- addons/project/i18n/es_CO.po | 4 +- addons/project/i18n/es_CR.po | 4 +- addons/project/i18n/es_EC.po | 4 +- addons/project/i18n/es_MX.po | 4 +- addons/project/i18n/es_PY.po | 4 +- addons/project/i18n/et.po | 4 +- addons/project/i18n/eu.po | 4 +- addons/project/i18n/fi.po | 4 +- addons/project/i18n/fr.po | 4 +- addons/project/i18n/gl.po | 4 +- addons/project/i18n/gu.po | 4 +- addons/project/i18n/hr.po | 4 +- addons/project/i18n/hu.po | 4 +- addons/project/i18n/id.po | 4 +- addons/project/i18n/it.po | 4 +- addons/project/i18n/ja.po | 4 +- addons/project/i18n/ko.po | 4 +- addons/project/i18n/lt.po | 4 +- addons/project/i18n/lv.po | 4 +- addons/project/i18n/mk.po | 4 +- addons/project/i18n/mn.po | 4 +- addons/project/i18n/nb.po | 4 +- addons/project/i18n/nl.po | 4 +- addons/project/i18n/nl_BE.po | 4 +- addons/project/i18n/pl.po | 4 +- addons/project/i18n/pt.po | 4 +- addons/project/i18n/pt_BR.po | 4 +- addons/project/i18n/ro.po | 4 +- addons/project/i18n/ru.po | 71 +- addons/project/i18n/sk.po | 4 +- addons/project/i18n/sl.po | 4 +- addons/project/i18n/sq.po | 4 +- addons/project/i18n/sv.po | 4 +- addons/project/i18n/tlh.po | 4 +- addons/project/i18n/tr.po | 4 +- addons/project/i18n/uk.po | 4 +- addons/project/i18n/vi.po | 4 +- addons/project/i18n/zh_CN.po | 4 +- addons/project/i18n/zh_TW.po | 4 +- addons/project_gtd/i18n/ar.po | 4 +- addons/project_gtd/i18n/bg.po | 4 +- addons/project_gtd/i18n/bs.po | 4 +- addons/project_gtd/i18n/ca.po | 4 +- addons/project_gtd/i18n/cs.po | 4 +- addons/project_gtd/i18n/da.po | 4 +- addons/project_gtd/i18n/de.po | 4 +- addons/project_gtd/i18n/el.po | 4 +- addons/project_gtd/i18n/es.po | 4 +- addons/project_gtd/i18n/es_AR.po | 4 +- addons/project_gtd/i18n/es_CR.po | 4 +- addons/project_gtd/i18n/es_EC.po | 4 +- addons/project_gtd/i18n/et.po | 4 +- addons/project_gtd/i18n/fi.po | 4 +- addons/project_gtd/i18n/fr.po | 4 +- addons/project_gtd/i18n/gl.po | 4 +- addons/project_gtd/i18n/hr.po | 4 +- addons/project_gtd/i18n/hu.po | 4 +- addons/project_gtd/i18n/id.po | 4 +- addons/project_gtd/i18n/it.po | 4 +- addons/project_gtd/i18n/ja.po | 4 +- addons/project_gtd/i18n/ko.po | 4 +- addons/project_gtd/i18n/lt.po | 4 +- addons/project_gtd/i18n/lv.po | 4 +- addons/project_gtd/i18n/mk.po | 4 +- addons/project_gtd/i18n/mn.po | 4 +- addons/project_gtd/i18n/nl.po | 4 +- addons/project_gtd/i18n/nl_BE.po | 4 +- addons/project_gtd/i18n/pl.po | 4 +- addons/project_gtd/i18n/pt.po | 4 +- addons/project_gtd/i18n/pt_BR.po | 4 +- addons/project_gtd/i18n/ro.po | 4 +- addons/project_gtd/i18n/ru.po | 4 +- addons/project_gtd/i18n/sl.po | 4 +- addons/project_gtd/i18n/sq.po | 4 +- addons/project_gtd/i18n/sv.po | 4 +- addons/project_gtd/i18n/tlh.po | 4 +- addons/project_gtd/i18n/tr.po | 4 +- addons/project_gtd/i18n/uk.po | 4 +- addons/project_gtd/i18n/vi.po | 4 +- addons/project_gtd/i18n/zh_CN.po | 4 +- addons/project_gtd/i18n/zh_TW.po | 4 +- addons/project_issue/i18n/ar.po | 4 +- addons/project_issue/i18n/ca.po | 4 +- addons/project_issue/i18n/da.po | 4 +- addons/project_issue/i18n/de.po | 4 +- addons/project_issue/i18n/es.po | 4 +- addons/project_issue/i18n/es_CR.po | 4 +- addons/project_issue/i18n/fi.po | 4 +- addons/project_issue/i18n/fr.po | 4 +- addons/project_issue/i18n/hr.po | 4 +- addons/project_issue/i18n/hu.po | 4 +- addons/project_issue/i18n/it.po | 4 +- addons/project_issue/i18n/ja.po | 4 +- addons/project_issue/i18n/lt.po | 4 +- addons/project_issue/i18n/lv.po | 4 +- addons/project_issue/i18n/mk.po | 4 +- addons/project_issue/i18n/mn.po | 4 +- addons/project_issue/i18n/nb.po | 4 +- addons/project_issue/i18n/nl.po | 4 +- addons/project_issue/i18n/nl_BE.po | 4 +- addons/project_issue/i18n/pl.po | 4 +- addons/project_issue/i18n/pt.po | 4 +- addons/project_issue/i18n/pt_BR.po | 4 +- addons/project_issue/i18n/ro.po | 4 +- addons/project_issue/i18n/ru.po | 4 +- addons/project_issue/i18n/sk.po | 4 +- addons/project_issue/i18n/sl.po | 4 +- addons/project_issue/i18n/sv.po | 4 +- addons/project_issue/i18n/tr.po | 4 +- addons/project_issue/i18n/zh_CN.po | 4 +- addons/project_issue/i18n/zh_TW.po | 4 +- addons/project_issue_sheet/i18n/ar.po | 4 +- addons/project_issue_sheet/i18n/ca.po | 4 +- addons/project_issue_sheet/i18n/da.po | 4 +- addons/project_issue_sheet/i18n/de.po | 4 +- addons/project_issue_sheet/i18n/es.po | 4 +- addons/project_issue_sheet/i18n/es_CR.po | 4 +- addons/project_issue_sheet/i18n/fi.po | 4 +- addons/project_issue_sheet/i18n/fr.po | 4 +- addons/project_issue_sheet/i18n/gl.po | 4 +- addons/project_issue_sheet/i18n/hr.po | 4 +- addons/project_issue_sheet/i18n/hu.po | 4 +- addons/project_issue_sheet/i18n/it.po | 4 +- addons/project_issue_sheet/i18n/ja.po | 4 +- addons/project_issue_sheet/i18n/lv.po | 4 +- addons/project_issue_sheet/i18n/mk.po | 4 +- addons/project_issue_sheet/i18n/mn.po | 4 +- addons/project_issue_sheet/i18n/nl.po | 4 +- addons/project_issue_sheet/i18n/pl.po | 4 +- addons/project_issue_sheet/i18n/pt.po | 4 +- addons/project_issue_sheet/i18n/pt_BR.po | 4 +- addons/project_issue_sheet/i18n/ro.po | 4 +- addons/project_issue_sheet/i18n/ru.po | 4 +- addons/project_issue_sheet/i18n/sv.po | 4 +- addons/project_issue_sheet/i18n/tr.po | 4 +- addons/project_issue_sheet/i18n/zh_CN.po | 4 +- addons/project_long_term/i18n/ar.po | 4 +- addons/project_long_term/i18n/ca.po | 4 +- addons/project_long_term/i18n/da.po | 4 +- addons/project_long_term/i18n/de.po | 4 +- addons/project_long_term/i18n/es.po | 4 +- addons/project_long_term/i18n/es_CR.po | 4 +- addons/project_long_term/i18n/es_EC.po | 4 +- addons/project_long_term/i18n/fi.po | 4 +- addons/project_long_term/i18n/fr.po | 4 +- addons/project_long_term/i18n/hr.po | 4 +- addons/project_long_term/i18n/hu.po | 4 +- addons/project_long_term/i18n/it.po | 4 +- addons/project_long_term/i18n/ja.po | 4 +- addons/project_long_term/i18n/lv.po | 4 +- addons/project_long_term/i18n/mk.po | 4 +- addons/project_long_term/i18n/mn.po | 4 +- addons/project_long_term/i18n/nl.po | 4 +- addons/project_long_term/i18n/pl.po | 4 +- addons/project_long_term/i18n/pt.po | 4 +- addons/project_long_term/i18n/pt_BR.po | 4 +- addons/project_long_term/i18n/ro.po | 4 +- addons/project_long_term/i18n/ru.po | 4 +- addons/project_long_term/i18n/sl.po | 4 +- addons/project_long_term/i18n/sv.po | 4 +- addons/project_long_term/i18n/tr.po | 4 +- addons/project_long_term/i18n/zh_CN.po | 4 +- addons/project_mrp/i18n/ar.po | 4 +- addons/project_mrp/i18n/bg.po | 4 +- addons/project_mrp/i18n/bs.po | 4 +- addons/project_mrp/i18n/ca.po | 4 +- addons/project_mrp/i18n/cs.po | 4 +- addons/project_mrp/i18n/da.po | 4 +- addons/project_mrp/i18n/de.po | 4 +- addons/project_mrp/i18n/el.po | 4 +- addons/project_mrp/i18n/es.po | 4 +- addons/project_mrp/i18n/es_AR.po | 4 +- addons/project_mrp/i18n/es_CR.po | 4 +- addons/project_mrp/i18n/es_EC.po | 4 +- addons/project_mrp/i18n/et.po | 4 +- addons/project_mrp/i18n/fi.po | 4 +- addons/project_mrp/i18n/fr.po | 4 +- addons/project_mrp/i18n/gl.po | 4 +- addons/project_mrp/i18n/gu.po | 4 +- addons/project_mrp/i18n/hr.po | 4 +- addons/project_mrp/i18n/hu.po | 4 +- addons/project_mrp/i18n/id.po | 4 +- addons/project_mrp/i18n/it.po | 4 +- addons/project_mrp/i18n/ja.po | 4 +- addons/project_mrp/i18n/ko.po | 4 +- addons/project_mrp/i18n/lt.po | 4 +- addons/project_mrp/i18n/lv.po | 4 +- addons/project_mrp/i18n/mk.po | 4 +- addons/project_mrp/i18n/mn.po | 4 +- addons/project_mrp/i18n/nb.po | 4 +- addons/project_mrp/i18n/nl.po | 4 +- addons/project_mrp/i18n/nl_BE.po | 4 +- addons/project_mrp/i18n/pl.po | 4 +- addons/project_mrp/i18n/pt.po | 4 +- addons/project_mrp/i18n/pt_BR.po | 4 +- addons/project_mrp/i18n/ro.po | 4 +- addons/project_mrp/i18n/ru.po | 4 +- addons/project_mrp/i18n/sl.po | 4 +- addons/project_mrp/i18n/sq.po | 4 +- addons/project_mrp/i18n/sv.po | 4 +- addons/project_mrp/i18n/tlh.po | 4 +- addons/project_mrp/i18n/tr.po | 4 +- addons/project_mrp/i18n/uk.po | 4 +- addons/project_mrp/i18n/vi.po | 4 +- addons/project_mrp/i18n/zh_CN.po | 4 +- addons/project_mrp/i18n/zh_TW.po | 4 +- addons/project_timesheet/i18n/ar.po | 4 +- addons/project_timesheet/i18n/bg.po | 4 +- addons/project_timesheet/i18n/bs.po | 4 +- addons/project_timesheet/i18n/ca.po | 4 +- addons/project_timesheet/i18n/cs.po | 4 +- addons/project_timesheet/i18n/da.po | 4 +- addons/project_timesheet/i18n/de.po | 4 +- addons/project_timesheet/i18n/el.po | 4 +- addons/project_timesheet/i18n/es.po | 4 +- addons/project_timesheet/i18n/es_AR.po | 4 +- addons/project_timesheet/i18n/es_CR.po | 4 +- addons/project_timesheet/i18n/et.po | 4 +- addons/project_timesheet/i18n/fi.po | 4 +- addons/project_timesheet/i18n/fr.po | 4 +- addons/project_timesheet/i18n/gl.po | 4 +- addons/project_timesheet/i18n/hr.po | 4 +- addons/project_timesheet/i18n/hu.po | 4 +- addons/project_timesheet/i18n/id.po | 4 +- addons/project_timesheet/i18n/it.po | 4 +- addons/project_timesheet/i18n/ja.po | 4 +- addons/project_timesheet/i18n/ko.po | 4 +- addons/project_timesheet/i18n/lt.po | 4 +- addons/project_timesheet/i18n/lv.po | 4 +- addons/project_timesheet/i18n/mk.po | 4 +- addons/project_timesheet/i18n/mn.po | 4 +- addons/project_timesheet/i18n/nl.po | 4 +- addons/project_timesheet/i18n/nl_BE.po | 4 +- addons/project_timesheet/i18n/pl.po | 4 +- addons/project_timesheet/i18n/pt.po | 4 +- addons/project_timesheet/i18n/pt_BR.po | 4 +- addons/project_timesheet/i18n/ro.po | 4 +- addons/project_timesheet/i18n/ru.po | 4 +- addons/project_timesheet/i18n/sl.po | 4 +- addons/project_timesheet/i18n/sq.po | 4 +- addons/project_timesheet/i18n/sv.po | 4 +- addons/project_timesheet/i18n/tlh.po | 4 +- addons/project_timesheet/i18n/tr.po | 4 +- addons/project_timesheet/i18n/uk.po | 4 +- addons/project_timesheet/i18n/vi.po | 4 +- addons/project_timesheet/i18n/zh_CN.po | 4 +- addons/project_timesheet/i18n/zh_TW.po | 4 +- addons/purchase/i18n/ar.po | 4 +- addons/purchase/i18n/bg.po | 4 +- addons/purchase/i18n/bs.po | 4 +- addons/purchase/i18n/ca.po | 4 +- addons/purchase/i18n/cs.po | 4 +- addons/purchase/i18n/da.po | 4 +- addons/purchase/i18n/de.po | 4 +- addons/purchase/i18n/el.po | 4 +- addons/purchase/i18n/en_GB.po | 4 +- addons/purchase/i18n/es.po | 4 +- addons/purchase/i18n/es_AR.po | 4 +- addons/purchase/i18n/es_CL.po | 4 +- addons/purchase/i18n/es_CO.po | 4 +- addons/purchase/i18n/es_CR.po | 4 +- addons/purchase/i18n/es_EC.po | 4 +- addons/purchase/i18n/es_MX.po | 4 +- addons/purchase/i18n/et.po | 4 +- addons/purchase/i18n/fi.po | 4 +- addons/purchase/i18n/fr.po | 4 +- addons/purchase/i18n/gl.po | 4 +- addons/purchase/i18n/hr.po | 4 +- addons/purchase/i18n/hu.po | 4 +- addons/purchase/i18n/id.po | 4 +- addons/purchase/i18n/it.po | 4 +- addons/purchase/i18n/ja.po | 4 +- addons/purchase/i18n/ko.po | 4 +- addons/purchase/i18n/lt.po | 4 +- addons/purchase/i18n/lv.po | 4 +- addons/purchase/i18n/mk.po | 4 +- addons/purchase/i18n/mn.po | 4 +- addons/purchase/i18n/nb.po | 4 +- addons/purchase/i18n/nl.po | 4 +- addons/purchase/i18n/nl_BE.po | 4 +- addons/purchase/i18n/pl.po | 4 +- addons/purchase/i18n/pt.po | 4 +- addons/purchase/i18n/pt_BR.po | 4 +- addons/purchase/i18n/ro.po | 4 +- addons/purchase/i18n/ru.po | 4 +- addons/purchase/i18n/sk.po | 4 +- addons/purchase/i18n/sl.po | 4 +- addons/purchase/i18n/sq.po | 4 +- addons/purchase/i18n/sr.po | 4 +- addons/purchase/i18n/sr@latin.po | 4 +- addons/purchase/i18n/sv.po | 4 +- addons/purchase/i18n/th.po | 4 +- addons/purchase/i18n/tlh.po | 4 +- addons/purchase/i18n/tr.po | 4 +- addons/purchase/i18n/uk.po | 4 +- addons/purchase/i18n/vi.po | 4 +- addons/purchase/i18n/zh_CN.po | 4 +- addons/purchase/i18n/zh_TW.po | 4 +- addons/purchase_analytic_plans/i18n/ar.po | 4 +- addons/purchase_analytic_plans/i18n/bg.po | 4 +- addons/purchase_analytic_plans/i18n/bs.po | 4 +- addons/purchase_analytic_plans/i18n/ca.po | 4 +- addons/purchase_analytic_plans/i18n/cs.po | 4 +- addons/purchase_analytic_plans/i18n/da.po | 4 +- addons/purchase_analytic_plans/i18n/de.po | 4 +- addons/purchase_analytic_plans/i18n/el.po | 4 +- addons/purchase_analytic_plans/i18n/es.po | 4 +- addons/purchase_analytic_plans/i18n/es_AR.po | 4 +- addons/purchase_analytic_plans/i18n/es_CR.po | 4 +- addons/purchase_analytic_plans/i18n/et.po | 4 +- addons/purchase_analytic_plans/i18n/fi.po | 4 +- addons/purchase_analytic_plans/i18n/fr.po | 4 +- addons/purchase_analytic_plans/i18n/gl.po | 4 +- addons/purchase_analytic_plans/i18n/hr.po | 4 +- addons/purchase_analytic_plans/i18n/hu.po | 4 +- addons/purchase_analytic_plans/i18n/id.po | 4 +- addons/purchase_analytic_plans/i18n/it.po | 4 +- addons/purchase_analytic_plans/i18n/ja.po | 4 +- addons/purchase_analytic_plans/i18n/ko.po | 4 +- addons/purchase_analytic_plans/i18n/lt.po | 4 +- addons/purchase_analytic_plans/i18n/mk.po | 4 +- addons/purchase_analytic_plans/i18n/mn.po | 4 +- addons/purchase_analytic_plans/i18n/nl.po | 4 +- addons/purchase_analytic_plans/i18n/nl_BE.po | 4 +- addons/purchase_analytic_plans/i18n/pl.po | 4 +- addons/purchase_analytic_plans/i18n/pt.po | 4 +- addons/purchase_analytic_plans/i18n/pt_BR.po | 4 +- addons/purchase_analytic_plans/i18n/ro.po | 4 +- addons/purchase_analytic_plans/i18n/ru.po | 4 +- addons/purchase_analytic_plans/i18n/sl.po | 4 +- addons/purchase_analytic_plans/i18n/sq.po | 4 +- addons/purchase_analytic_plans/i18n/sr.po | 4 +- .../purchase_analytic_plans/i18n/sr@latin.po | 4 +- addons/purchase_analytic_plans/i18n/sv.po | 4 +- addons/purchase_analytic_plans/i18n/tlh.po | 4 +- addons/purchase_analytic_plans/i18n/tr.po | 4 +- addons/purchase_analytic_plans/i18n/uk.po | 4 +- addons/purchase_analytic_plans/i18n/ur.po | 4 +- addons/purchase_analytic_plans/i18n/vi.po | 4 +- addons/purchase_analytic_plans/i18n/zh_CN.po | 4 +- addons/purchase_analytic_plans/i18n/zh_TW.po | 4 +- addons/purchase_double_validation/i18n/ar.po | 4 +- addons/purchase_double_validation/i18n/bg.po | 4 +- addons/purchase_double_validation/i18n/ca.po | 4 +- addons/purchase_double_validation/i18n/da.po | 4 +- addons/purchase_double_validation/i18n/de.po | 4 +- addons/purchase_double_validation/i18n/es.po | 4 +- .../purchase_double_validation/i18n/es_CR.po | 4 +- .../purchase_double_validation/i18n/es_EC.po | 4 +- addons/purchase_double_validation/i18n/fi.po | 4 +- addons/purchase_double_validation/i18n/fr.po | 4 +- addons/purchase_double_validation/i18n/gl.po | 4 +- addons/purchase_double_validation/i18n/hr.po | 4 +- addons/purchase_double_validation/i18n/hu.po | 4 +- addons/purchase_double_validation/i18n/it.po | 4 +- addons/purchase_double_validation/i18n/ja.po | 4 +- addons/purchase_double_validation/i18n/mk.po | 4 +- addons/purchase_double_validation/i18n/mn.po | 4 +- addons/purchase_double_validation/i18n/nl.po | 4 +- addons/purchase_double_validation/i18n/pl.po | 4 +- addons/purchase_double_validation/i18n/pt.po | 4 +- .../purchase_double_validation/i18n/pt_BR.po | 4 +- addons/purchase_double_validation/i18n/ro.po | 4 +- addons/purchase_double_validation/i18n/ru.po | 4 +- addons/purchase_double_validation/i18n/sl.po | 4 +- addons/purchase_double_validation/i18n/sv.po | 4 +- addons/purchase_double_validation/i18n/tr.po | 4 +- .../purchase_double_validation/i18n/zh_CN.po | 4 +- addons/purchase_requisition/i18n/ar.po | 4 +- addons/purchase_requisition/i18n/bg.po | 4 +- addons/purchase_requisition/i18n/ca.po | 4 +- addons/purchase_requisition/i18n/da.po | 4 +- addons/purchase_requisition/i18n/de.po | 4 +- addons/purchase_requisition/i18n/es.po | 4 +- addons/purchase_requisition/i18n/es_CR.po | 4 +- addons/purchase_requisition/i18n/fi.po | 4 +- addons/purchase_requisition/i18n/fr.po | 4 +- addons/purchase_requisition/i18n/hr.po | 4 +- addons/purchase_requisition/i18n/hu.po | 4 +- addons/purchase_requisition/i18n/id.po | 4 +- addons/purchase_requisition/i18n/it.po | 4 +- addons/purchase_requisition/i18n/ja.po | 4 +- addons/purchase_requisition/i18n/mk.po | 4 +- addons/purchase_requisition/i18n/mn.po | 4 +- addons/purchase_requisition/i18n/nb.po | 4 +- addons/purchase_requisition/i18n/nl.po | 4 +- addons/purchase_requisition/i18n/pl.po | 4 +- addons/purchase_requisition/i18n/pt.po | 4 +- addons/purchase_requisition/i18n/pt_BR.po | 4 +- addons/purchase_requisition/i18n/ro.po | 4 +- addons/purchase_requisition/i18n/ru.po | 4 +- addons/purchase_requisition/i18n/sl.po | 4 +- addons/purchase_requisition/i18n/sv.po | 4 +- addons/purchase_requisition/i18n/tr.po | 4 +- addons/purchase_requisition/i18n/zh_CN.po | 4 +- addons/report_intrastat/i18n/ar.po | 4 +- addons/report_intrastat/i18n/bg.po | 4 +- addons/report_intrastat/i18n/bs.po | 4 +- addons/report_intrastat/i18n/ca.po | 4 +- addons/report_intrastat/i18n/cs.po | 4 +- addons/report_intrastat/i18n/da.po | 4 +- addons/report_intrastat/i18n/de.po | 4 +- addons/report_intrastat/i18n/es.po | 4 +- addons/report_intrastat/i18n/es_AR.po | 4 +- addons/report_intrastat/i18n/es_CR.po | 4 +- addons/report_intrastat/i18n/et.po | 4 +- addons/report_intrastat/i18n/fi.po | 4 +- addons/report_intrastat/i18n/fr.po | 4 +- addons/report_intrastat/i18n/hr.po | 4 +- addons/report_intrastat/i18n/hu.po | 4 +- addons/report_intrastat/i18n/id.po | 4 +- addons/report_intrastat/i18n/it.po | 4 +- addons/report_intrastat/i18n/ja.po | 4 +- addons/report_intrastat/i18n/ko.po | 4 +- addons/report_intrastat/i18n/lt.po | 4 +- addons/report_intrastat/i18n/mk.po | 4 +- addons/report_intrastat/i18n/mn.po | 4 +- addons/report_intrastat/i18n/nl.po | 4 +- addons/report_intrastat/i18n/nl_BE.po | 4 +- addons/report_intrastat/i18n/pl.po | 4 +- addons/report_intrastat/i18n/pt.po | 4 +- addons/report_intrastat/i18n/pt_BR.po | 4 +- addons/report_intrastat/i18n/ro.po | 4 +- addons/report_intrastat/i18n/ru.po | 4 +- addons/report_intrastat/i18n/sl.po | 4 +- addons/report_intrastat/i18n/sq.po | 4 +- addons/report_intrastat/i18n/sv.po | 4 +- addons/report_intrastat/i18n/tlh.po | 4 +- addons/report_intrastat/i18n/tr.po | 4 +- addons/report_intrastat/i18n/uk.po | 4 +- addons/report_intrastat/i18n/vi.po | 4 +- addons/report_intrastat/i18n/zh_CN.po | 4 +- addons/report_intrastat/i18n/zh_TW.po | 4 +- addons/report_webkit/i18n/ar.po | 4 +- addons/report_webkit/i18n/bg.po | 4 +- addons/report_webkit/i18n/ca.po | 4 +- addons/report_webkit/i18n/da.po | 4 +- addons/report_webkit/i18n/de.po | 4 +- addons/report_webkit/i18n/es.po | 4 +- addons/report_webkit/i18n/es_CR.po | 4 +- addons/report_webkit/i18n/fi.po | 4 +- addons/report_webkit/i18n/fr.po | 4 +- addons/report_webkit/i18n/hr.po | 4 +- addons/report_webkit/i18n/hu.po | 4 +- addons/report_webkit/i18n/it.po | 4 +- addons/report_webkit/i18n/ja.po | 4 +- addons/report_webkit/i18n/mk.po | 4 +- addons/report_webkit/i18n/mn.po | 4 +- addons/report_webkit/i18n/nl.po | 4 +- addons/report_webkit/i18n/pl.po | 4 +- addons/report_webkit/i18n/pt.po | 4 +- addons/report_webkit/i18n/pt_BR.po | 4 +- addons/report_webkit/i18n/ro.po | 4 +- addons/report_webkit/i18n/ru.po | 4 +- addons/report_webkit/i18n/sl.po | 4 +- addons/report_webkit/i18n/sv.po | 4 +- addons/report_webkit/i18n/tr.po | 4 +- addons/report_webkit/i18n/zh_CN.po | 4 +- addons/resource/i18n/ar.po | 4 +- addons/resource/i18n/bg.po | 4 +- addons/resource/i18n/ca.po | 4 +- addons/resource/i18n/cs.po | 4 +- addons/resource/i18n/da.po | 4 +- addons/resource/i18n/de.po | 4 +- addons/resource/i18n/es.po | 4 +- addons/resource/i18n/es_CR.po | 4 +- addons/resource/i18n/es_EC.po | 4 +- addons/resource/i18n/et.po | 4 +- addons/resource/i18n/fi.po | 4 +- addons/resource/i18n/fr.po | 4 +- addons/resource/i18n/gl.po | 4 +- addons/resource/i18n/hr.po | 4 +- addons/resource/i18n/hu.po | 4 +- addons/resource/i18n/it.po | 4 +- addons/resource/i18n/ja.po | 4 +- addons/resource/i18n/lt.po | 4 +- addons/resource/i18n/mk.po | 4 +- addons/resource/i18n/mn.po | 4 +- addons/resource/i18n/nl.po | 4 +- addons/resource/i18n/pl.po | 4 +- addons/resource/i18n/pt.po | 4 +- addons/resource/i18n/pt_BR.po | 4 +- addons/resource/i18n/ro.po | 4 +- addons/resource/i18n/ru.po | 4 +- addons/resource/i18n/sl.po | 4 +- addons/resource/i18n/sv.po | 4 +- addons/resource/i18n/tr.po | 4 +- addons/resource/i18n/vi.po | 4 +- addons/resource/i18n/zh_CN.po | 4 +- addons/sale/i18n/ar.po | 4 +- addons/sale/i18n/bg.po | 4 +- addons/sale/i18n/bs.po | 4 +- addons/sale/i18n/ca.po | 4 +- addons/sale/i18n/cs.po | 646 ++- addons/sale/i18n/da.po | 4 +- addons/sale/i18n/de.po | 4 +- addons/sale/i18n/el.po | 4 +- addons/sale/i18n/es.po | 4 +- addons/sale/i18n/es_AR.po | 4 +- addons/sale/i18n/es_CL.po | 4 +- addons/sale/i18n/es_CR.po | 4 +- addons/sale/i18n/es_EC.po | 4 +- addons/sale/i18n/es_MX.po | 4 +- addons/sale/i18n/et.po | 4 +- addons/sale/i18n/eu.po | 4 +- addons/sale/i18n/fi.po | 4 +- addons/sale/i18n/fr.po | 4 +- addons/sale/i18n/gl.po | 4 +- addons/sale/i18n/hr.po | 4 +- addons/sale/i18n/hu.po | 4 +- addons/sale/i18n/id.po | 4 +- addons/sale/i18n/is.po | 4 +- addons/sale/i18n/it.po | 4 +- addons/sale/i18n/ja.po | 4 +- addons/sale/i18n/ko.po | 4 +- addons/sale/i18n/lo.po | 4 +- addons/sale/i18n/lt.po | 4 +- addons/sale/i18n/lv.po | 4 +- addons/sale/i18n/mk.po | 4 +- addons/sale/i18n/mn.po | 4 +- addons/sale/i18n/nb.po | 4 +- addons/sale/i18n/nl.po | 4 +- addons/sale/i18n/nl_BE.po | 4 +- addons/sale/i18n/oc.po | 4 +- addons/sale/i18n/pl.po | 4 +- addons/sale/i18n/pt.po | 4 +- addons/sale/i18n/pt_BR.po | 4 +- addons/sale/i18n/ro.po | 4 +- addons/sale/i18n/ru.po | 4 +- addons/sale/i18n/sk.po | 4 +- addons/sale/i18n/sl.po | 4 +- addons/sale/i18n/sq.po | 4 +- addons/sale/i18n/sr.po | 4 +- addons/sale/i18n/sr@latin.po | 4 +- addons/sale/i18n/sv.po | 4 +- addons/sale/i18n/th.po | 4 +- addons/sale/i18n/tlh.po | 4 +- addons/sale/i18n/tr.po | 4 +- addons/sale/i18n/uk.po | 4 +- addons/sale/i18n/vi.po | 4 +- addons/sale/i18n/zh_CN.po | 4 +- addons/sale/i18n/zh_TW.po | 4 +- addons/sale_analytic_plans/i18n/ar.po | 4 +- addons/sale_analytic_plans/i18n/bg.po | 4 +- addons/sale_analytic_plans/i18n/bs.po | 4 +- addons/sale_analytic_plans/i18n/ca.po | 4 +- addons/sale_analytic_plans/i18n/cs.po | 4 +- addons/sale_analytic_plans/i18n/da.po | 4 +- addons/sale_analytic_plans/i18n/de.po | 4 +- addons/sale_analytic_plans/i18n/el.po | 4 +- addons/sale_analytic_plans/i18n/es.po | 4 +- addons/sale_analytic_plans/i18n/es_AR.po | 4 +- addons/sale_analytic_plans/i18n/es_CL.po | 4 +- addons/sale_analytic_plans/i18n/es_CO.po | 4 +- addons/sale_analytic_plans/i18n/es_CR.po | 4 +- addons/sale_analytic_plans/i18n/et.po | 4 +- addons/sale_analytic_plans/i18n/fi.po | 4 +- addons/sale_analytic_plans/i18n/fr.po | 4 +- addons/sale_analytic_plans/i18n/gl.po | 4 +- addons/sale_analytic_plans/i18n/hr.po | 4 +- addons/sale_analytic_plans/i18n/hu.po | 4 +- addons/sale_analytic_plans/i18n/id.po | 4 +- addons/sale_analytic_plans/i18n/it.po | 4 +- addons/sale_analytic_plans/i18n/ja.po | 4 +- addons/sale_analytic_plans/i18n/ko.po | 4 +- addons/sale_analytic_plans/i18n/lt.po | 4 +- addons/sale_analytic_plans/i18n/mk.po | 4 +- addons/sale_analytic_plans/i18n/mn.po | 4 +- addons/sale_analytic_plans/i18n/nb.po | 4 +- addons/sale_analytic_plans/i18n/nl.po | 4 +- addons/sale_analytic_plans/i18n/nl_BE.po | 4 +- addons/sale_analytic_plans/i18n/oc.po | 4 +- addons/sale_analytic_plans/i18n/pl.po | 4 +- addons/sale_analytic_plans/i18n/pt.po | 4 +- addons/sale_analytic_plans/i18n/pt_BR.po | 4 +- addons/sale_analytic_plans/i18n/ro.po | 4 +- addons/sale_analytic_plans/i18n/ru.po | 4 +- addons/sale_analytic_plans/i18n/sk.po | 4 +- addons/sale_analytic_plans/i18n/sl.po | 4 +- addons/sale_analytic_plans/i18n/sq.po | 4 +- addons/sale_analytic_plans/i18n/sr.po | 4 +- addons/sale_analytic_plans/i18n/sr@latin.po | 4 +- addons/sale_analytic_plans/i18n/sv.po | 4 +- addons/sale_analytic_plans/i18n/tlh.po | 4 +- addons/sale_analytic_plans/i18n/tr.po | 4 +- addons/sale_analytic_plans/i18n/uk.po | 4 +- addons/sale_analytic_plans/i18n/vi.po | 4 +- addons/sale_analytic_plans/i18n/zh_CN.po | 4 +- addons/sale_analytic_plans/i18n/zh_TW.po | 4 +- addons/sale_crm/i18n/ar.po | 4 +- addons/sale_crm/i18n/bg.po | 4 +- addons/sale_crm/i18n/bs.po | 4 +- addons/sale_crm/i18n/ca.po | 4 +- addons/sale_crm/i18n/cs.po | 4 +- addons/sale_crm/i18n/da.po | 4 +- addons/sale_crm/i18n/de.po | 4 +- addons/sale_crm/i18n/el.po | 4 +- addons/sale_crm/i18n/es.po | 4 +- addons/sale_crm/i18n/es_AR.po | 4 +- addons/sale_crm/i18n/es_CL.po | 4 +- addons/sale_crm/i18n/es_CR.po | 4 +- addons/sale_crm/i18n/et.po | 4 +- addons/sale_crm/i18n/fi.po | 4 +- addons/sale_crm/i18n/fr.po | 4 +- addons/sale_crm/i18n/gl.po | 4 +- addons/sale_crm/i18n/hr.po | 4 +- addons/sale_crm/i18n/hu.po | 4 +- addons/sale_crm/i18n/id.po | 4 +- addons/sale_crm/i18n/it.po | 4 +- addons/sale_crm/i18n/ja.po | 4 +- addons/sale_crm/i18n/ko.po | 4 +- addons/sale_crm/i18n/lt.po | 4 +- addons/sale_crm/i18n/lv.po | 4 +- addons/sale_crm/i18n/mk.po | 4 +- addons/sale_crm/i18n/mn.po | 4 +- addons/sale_crm/i18n/nb.po | 4 +- addons/sale_crm/i18n/nl.po | 4 +- addons/sale_crm/i18n/nl_BE.po | 4 +- addons/sale_crm/i18n/pl.po | 4 +- addons/sale_crm/i18n/pt.po | 4 +- addons/sale_crm/i18n/pt_BR.po | 4 +- addons/sale_crm/i18n/ro.po | 4 +- addons/sale_crm/i18n/ru.po | 4 +- addons/sale_crm/i18n/sk.po | 4 +- addons/sale_crm/i18n/sl.po | 4 +- addons/sale_crm/i18n/sq.po | 4 +- addons/sale_crm/i18n/sv.po | 4 +- addons/sale_crm/i18n/tlh.po | 4 +- addons/sale_crm/i18n/tr.po | 4 +- addons/sale_crm/i18n/uk.po | 4 +- addons/sale_crm/i18n/vi.po | 4 +- addons/sale_crm/i18n/zh_CN.po | 4 +- addons/sale_crm/i18n/zh_TW.po | 4 +- addons/sale_journal/i18n/ar.po | 4 +- addons/sale_journal/i18n/bg.po | 4 +- addons/sale_journal/i18n/bs.po | 4 +- addons/sale_journal/i18n/ca.po | 4 +- addons/sale_journal/i18n/cs.po | 4 +- addons/sale_journal/i18n/da.po | 4 +- addons/sale_journal/i18n/de.po | 4 +- addons/sale_journal/i18n/el.po | 4 +- addons/sale_journal/i18n/es.po | 4 +- addons/sale_journal/i18n/es_AR.po | 4 +- addons/sale_journal/i18n/es_CL.po | 4 +- addons/sale_journal/i18n/es_CR.po | 4 +- addons/sale_journal/i18n/et.po | 4 +- addons/sale_journal/i18n/fi.po | 4 +- addons/sale_journal/i18n/fr.po | 4 +- addons/sale_journal/i18n/gl.po | 4 +- addons/sale_journal/i18n/hr.po | 4 +- addons/sale_journal/i18n/hu.po | 4 +- addons/sale_journal/i18n/id.po | 4 +- addons/sale_journal/i18n/it.po | 4 +- addons/sale_journal/i18n/ja.po | 4 +- addons/sale_journal/i18n/ko.po | 4 +- addons/sale_journal/i18n/lt.po | 4 +- addons/sale_journal/i18n/lv.po | 4 +- addons/sale_journal/i18n/mk.po | 4 +- addons/sale_journal/i18n/mn.po | 4 +- addons/sale_journal/i18n/nb.po | 4 +- addons/sale_journal/i18n/nl.po | 4 +- addons/sale_journal/i18n/nl_BE.po | 4 +- addons/sale_journal/i18n/pl.po | 4 +- addons/sale_journal/i18n/pt.po | 4 +- addons/sale_journal/i18n/pt_BR.po | 4 +- addons/sale_journal/i18n/ro.po | 4 +- addons/sale_journal/i18n/ru.po | 4 +- addons/sale_journal/i18n/sk.po | 4 +- addons/sale_journal/i18n/sl.po | 4 +- addons/sale_journal/i18n/sq.po | 4 +- addons/sale_journal/i18n/sv.po | 4 +- addons/sale_journal/i18n/tlh.po | 4 +- addons/sale_journal/i18n/tr.po | 4 +- addons/sale_journal/i18n/uk.po | 4 +- addons/sale_journal/i18n/vi.po | 4 +- addons/sale_journal/i18n/zh_CN.po | 4 +- addons/sale_journal/i18n/zh_TW.po | 4 +- addons/sale_margin/i18n/ar.po | 4 +- addons/sale_margin/i18n/bg.po | 4 +- addons/sale_margin/i18n/ca.po | 4 +- addons/sale_margin/i18n/da.po | 4 +- addons/sale_margin/i18n/de.po | 4 +- addons/sale_margin/i18n/el.po | 4 +- addons/sale_margin/i18n/es.po | 4 +- addons/sale_margin/i18n/es_CL.po | 4 +- addons/sale_margin/i18n/es_CR.po | 4 +- addons/sale_margin/i18n/et.po | 4 +- addons/sale_margin/i18n/fi.po | 4 +- addons/sale_margin/i18n/fr.po | 4 +- addons/sale_margin/i18n/hr.po | 4 +- addons/sale_margin/i18n/hu.po | 4 +- addons/sale_margin/i18n/it.po | 4 +- addons/sale_margin/i18n/ja.po | 4 +- addons/sale_margin/i18n/mk.po | 4 +- addons/sale_margin/i18n/mn.po | 4 +- addons/sale_margin/i18n/nb.po | 4 +- addons/sale_margin/i18n/nl.po | 4 +- addons/sale_margin/i18n/pl.po | 4 +- addons/sale_margin/i18n/pt.po | 4 +- addons/sale_margin/i18n/pt_BR.po | 4 +- addons/sale_margin/i18n/ro.po | 4 +- addons/sale_margin/i18n/ru.po | 4 +- addons/sale_margin/i18n/sk.po | 4 +- addons/sale_margin/i18n/sl.po | 4 +- addons/sale_margin/i18n/sv.po | 4 +- addons/sale_margin/i18n/tr.po | 4 +- addons/sale_margin/i18n/zh_CN.po | 4 +- addons/sale_mrp/i18n/ar.po | 4 +- addons/sale_mrp/i18n/bg.po | 4 +- addons/sale_mrp/i18n/ca.po | 4 +- addons/sale_mrp/i18n/da.po | 4 +- addons/sale_mrp/i18n/de.po | 4 +- addons/sale_mrp/i18n/es.po | 4 +- addons/sale_mrp/i18n/es_CL.po | 4 +- addons/sale_mrp/i18n/es_CR.po | 4 +- addons/sale_mrp/i18n/et.po | 4 +- addons/sale_mrp/i18n/fi.po | 4 +- addons/sale_mrp/i18n/fr.po | 4 +- addons/sale_mrp/i18n/gl.po | 4 +- addons/sale_mrp/i18n/hr.po | 4 +- addons/sale_mrp/i18n/hu.po | 4 +- addons/sale_mrp/i18n/it.po | 4 +- addons/sale_mrp/i18n/ja.po | 4 +- addons/sale_mrp/i18n/mk.po | 4 +- addons/sale_mrp/i18n/mn.po | 4 +- addons/sale_mrp/i18n/nb.po | 4 +- addons/sale_mrp/i18n/nl.po | 4 +- addons/sale_mrp/i18n/nl_BE.po | 4 +- addons/sale_mrp/i18n/pl.po | 4 +- addons/sale_mrp/i18n/pt.po | 4 +- addons/sale_mrp/i18n/pt_BR.po | 4 +- addons/sale_mrp/i18n/ro.po | 4 +- addons/sale_mrp/i18n/ru.po | 4 +- addons/sale_mrp/i18n/sl.po | 4 +- addons/sale_mrp/i18n/sr@latin.po | 4 +- addons/sale_mrp/i18n/sv.po | 4 +- addons/sale_mrp/i18n/tr.po | 4 +- addons/sale_mrp/i18n/zh_CN.po | 4 +- addons/sale_order_dates/i18n/ar.po | 4 +- addons/sale_order_dates/i18n/bg.po | 4 +- addons/sale_order_dates/i18n/ca.po | 4 +- addons/sale_order_dates/i18n/da.po | 4 +- addons/sale_order_dates/i18n/de.po | 4 +- addons/sale_order_dates/i18n/el.po | 4 +- addons/sale_order_dates/i18n/es.po | 4 +- addons/sale_order_dates/i18n/es_CL.po | 4 +- addons/sale_order_dates/i18n/es_CR.po | 4 +- addons/sale_order_dates/i18n/fi.po | 4 +- addons/sale_order_dates/i18n/fr.po | 4 +- addons/sale_order_dates/i18n/gl.po | 4 +- addons/sale_order_dates/i18n/hr.po | 4 +- addons/sale_order_dates/i18n/hu.po | 4 +- addons/sale_order_dates/i18n/id.po | 4 +- addons/sale_order_dates/i18n/it.po | 4 +- addons/sale_order_dates/i18n/ja.po | 4 +- addons/sale_order_dates/i18n/mk.po | 4 +- addons/sale_order_dates/i18n/mn.po | 4 +- addons/sale_order_dates/i18n/nb.po | 4 +- addons/sale_order_dates/i18n/nl.po | 4 +- addons/sale_order_dates/i18n/pl.po | 4 +- addons/sale_order_dates/i18n/pt.po | 4 +- addons/sale_order_dates/i18n/pt_BR.po | 4 +- addons/sale_order_dates/i18n/ro.po | 4 +- addons/sale_order_dates/i18n/ru.po | 4 +- addons/sale_order_dates/i18n/sk.po | 4 +- addons/sale_order_dates/i18n/sl.po | 4 +- addons/sale_order_dates/i18n/sr@latin.po | 4 +- addons/sale_order_dates/i18n/sv.po | 4 +- addons/sale_order_dates/i18n/tr.po | 4 +- addons/sale_order_dates/i18n/zh_CN.po | 4 +- addons/sale_stock/i18n/ar.po | 4 +- addons/sale_stock/i18n/bg.po | 4 +- addons/sale_stock/i18n/bs.po | 4 +- addons/sale_stock/i18n/ca.po | 4 +- addons/sale_stock/i18n/cs.po | 4 +- addons/sale_stock/i18n/da.po | 4 +- addons/sale_stock/i18n/de.po | 4 +- addons/sale_stock/i18n/el.po | 4 +- addons/sale_stock/i18n/es.po | 4 +- addons/sale_stock/i18n/et.po | 4 +- addons/sale_stock/i18n/fi.po | 4 +- addons/sale_stock/i18n/fr.po | 4 +- addons/sale_stock/i18n/gl.po | 4 +- addons/sale_stock/i18n/hr.po | 4 +- addons/sale_stock/i18n/hu.po | 4 +- addons/sale_stock/i18n/id.po | 4 +- addons/sale_stock/i18n/is.po | 4 +- addons/sale_stock/i18n/it.po | 4 +- addons/sale_stock/i18n/ja.po | 4 +- addons/sale_stock/i18n/ko.po | 4 +- addons/sale_stock/i18n/lo.po | 4 +- addons/sale_stock/i18n/lt.po | 4 +- addons/sale_stock/i18n/lv.po | 4 +- addons/sale_stock/i18n/mk.po | 4 +- addons/sale_stock/i18n/mn.po | 4 +- addons/sale_stock/i18n/nb.po | 4 +- addons/sale_stock/i18n/nl.po | 4 +- addons/sale_stock/i18n/oc.po | 4 +- addons/sale_stock/i18n/pl.po | 4 +- addons/sale_stock/i18n/pt.po | 4 +- addons/sale_stock/i18n/pt_BR.po | 4 +- addons/sale_stock/i18n/ro.po | 4 +- addons/sale_stock/i18n/ru.po | 4 +- addons/sale_stock/i18n/sk.po | 4 +- addons/sale_stock/i18n/sl.po | 4 +- addons/sale_stock/i18n/sq.po | 4 +- addons/sale_stock/i18n/sr.po | 4 +- addons/sale_stock/i18n/sr@latin.po | 4 +- addons/sale_stock/i18n/sv.po | 4 +- addons/sale_stock/i18n/th.po | 4 +- addons/sale_stock/i18n/tlh.po | 4 +- addons/sale_stock/i18n/tr.po | 4 +- addons/sale_stock/i18n/uk.po | 4 +- addons/sale_stock/i18n/vi.po | 4 +- addons/sale_stock/i18n/zh_CN.po | 4 +- addons/sale_stock/i18n/zh_TW.po | 4 +- addons/share/i18n/ar.po | 4 +- addons/share/i18n/bg.po | 4 +- addons/share/i18n/ca.po | 4 +- addons/share/i18n/cs.po | 4 +- addons/share/i18n/da.po | 4 +- addons/share/i18n/de.po | 4 +- addons/share/i18n/es.po | 4 +- addons/share/i18n/es_CR.po | 4 +- addons/share/i18n/et.po | 4 +- addons/share/i18n/fi.po | 4 +- addons/share/i18n/fr.po | 4 +- addons/share/i18n/gl.po | 4 +- addons/share/i18n/hr.po | 4 +- addons/share/i18n/hu.po | 4 +- addons/share/i18n/it.po | 4 +- addons/share/i18n/ja.po | 4 +- addons/share/i18n/mk.po | 4 +- addons/share/i18n/mn.po | 4 +- addons/share/i18n/nl.po | 4 +- addons/share/i18n/pl.po | 4 +- addons/share/i18n/pt.po | 4 +- addons/share/i18n/pt_BR.po | 4 +- addons/share/i18n/ro.po | 4 +- addons/share/i18n/ru.po | 4 +- addons/share/i18n/sl.po | 4 +- addons/share/i18n/sv.po | 4 +- addons/share/i18n/tr.po | 4 +- addons/share/i18n/zh_CN.po | 4 +- addons/stock/i18n/ar.po | 4 +- addons/stock/i18n/bg.po | 4 +- addons/stock/i18n/bs.po | 4 +- addons/stock/i18n/ca.po | 4 +- addons/stock/i18n/cs.po | 4 +- addons/stock/i18n/da.po | 4 +- addons/stock/i18n/de.po | 4 +- addons/stock/i18n/el.po | 4 +- addons/stock/i18n/es.po | 4 +- addons/stock/i18n/es_AR.po | 4 +- addons/stock/i18n/es_CL.po | 4 +- addons/stock/i18n/es_CR.po | 4 +- addons/stock/i18n/es_DO.po | 4 +- addons/stock/i18n/es_EC.po | 4 +- addons/stock/i18n/es_MX.po | 4 +- addons/stock/i18n/es_VE.po | 4 +- addons/stock/i18n/et.po | 4 +- addons/stock/i18n/fi.po | 4 +- addons/stock/i18n/fr.po | 4 +- addons/stock/i18n/gl.po | 4 +- addons/stock/i18n/hr.po | 4 +- addons/stock/i18n/hu.po | 4 +- addons/stock/i18n/id.po | 4 +- addons/stock/i18n/it.po | 4 +- addons/stock/i18n/ja.po | 4 +- addons/stock/i18n/ko.po | 4 +- addons/stock/i18n/lt.po | 4 +- addons/stock/i18n/lv.po | 4 +- addons/stock/i18n/mk.po | 4 +- addons/stock/i18n/mn.po | 4 +- addons/stock/i18n/nb.po | 4 +- addons/stock/i18n/nl.po | 4 +- addons/stock/i18n/nl_BE.po | 4 +- addons/stock/i18n/pl.po | 4 +- addons/stock/i18n/pt.po | 4 +- addons/stock/i18n/pt_BR.po | 4 +- addons/stock/i18n/ro.po | 4 +- addons/stock/i18n/ru.po | 4 +- addons/stock/i18n/sl.po | 4 +- addons/stock/i18n/sq.po | 4 +- addons/stock/i18n/sr.po | 4 +- addons/stock/i18n/sr@latin.po | 4 +- addons/stock/i18n/sv.po | 4 +- addons/stock/i18n/th.po | 4 +- addons/stock/i18n/tlh.po | 4 +- addons/stock/i18n/tr.po | 4 +- addons/stock/i18n/uk.po | 4 +- addons/stock/i18n/vi.po | 4 +- addons/stock/i18n/zh_CN.po | 4 +- addons/stock/i18n/zh_TW.po | 4 +- addons/stock_invoice_directly/i18n/ar.po | 4 +- addons/stock_invoice_directly/i18n/bg.po | 4 +- addons/stock_invoice_directly/i18n/bs.po | 4 +- addons/stock_invoice_directly/i18n/ca.po | 4 +- addons/stock_invoice_directly/i18n/cs.po | 4 +- addons/stock_invoice_directly/i18n/da.po | 4 +- addons/stock_invoice_directly/i18n/de.po | 4 +- addons/stock_invoice_directly/i18n/el.po | 4 +- addons/stock_invoice_directly/i18n/es.po | 4 +- addons/stock_invoice_directly/i18n/es_AR.po | 4 +- addons/stock_invoice_directly/i18n/es_CL.po | 4 +- addons/stock_invoice_directly/i18n/es_CR.po | 4 +- addons/stock_invoice_directly/i18n/et.po | 4 +- addons/stock_invoice_directly/i18n/fi.po | 4 +- addons/stock_invoice_directly/i18n/fr.po | 4 +- addons/stock_invoice_directly/i18n/gl.po | 4 +- addons/stock_invoice_directly/i18n/hr.po | 4 +- addons/stock_invoice_directly/i18n/hu.po | 4 +- addons/stock_invoice_directly/i18n/id.po | 4 +- addons/stock_invoice_directly/i18n/it.po | 4 +- addons/stock_invoice_directly/i18n/ja.po | 4 +- addons/stock_invoice_directly/i18n/ko.po | 4 +- addons/stock_invoice_directly/i18n/lt.po | 4 +- addons/stock_invoice_directly/i18n/lv.po | 4 +- addons/stock_invoice_directly/i18n/mk.po | 4 +- addons/stock_invoice_directly/i18n/mn.po | 4 +- addons/stock_invoice_directly/i18n/nb.po | 4 +- addons/stock_invoice_directly/i18n/nl.po | 4 +- addons/stock_invoice_directly/i18n/nl_BE.po | 4 +- addons/stock_invoice_directly/i18n/oc.po | 4 +- addons/stock_invoice_directly/i18n/pl.po | 4 +- addons/stock_invoice_directly/i18n/pt.po | 4 +- addons/stock_invoice_directly/i18n/pt_BR.po | 4 +- addons/stock_invoice_directly/i18n/ro.po | 4 +- addons/stock_invoice_directly/i18n/ru.po | 4 +- addons/stock_invoice_directly/i18n/sl.po | 4 +- addons/stock_invoice_directly/i18n/sq.po | 4 +- addons/stock_invoice_directly/i18n/sr.po | 4 +- .../stock_invoice_directly/i18n/sr@latin.po | 4 +- addons/stock_invoice_directly/i18n/sv.po | 4 +- addons/stock_invoice_directly/i18n/tr.po | 4 +- addons/stock_invoice_directly/i18n/uk.po | 4 +- addons/stock_invoice_directly/i18n/vi.po | 4 +- addons/stock_invoice_directly/i18n/zh_CN.po | 4 +- addons/stock_invoice_directly/i18n/zh_TW.po | 4 +- addons/stock_location/i18n/ar.po | 4 +- addons/stock_location/i18n/bg.po | 4 +- addons/stock_location/i18n/bs.po | 4 +- addons/stock_location/i18n/ca.po | 4 +- addons/stock_location/i18n/cs.po | 4 +- addons/stock_location/i18n/da.po | 4 +- addons/stock_location/i18n/de.po | 4 +- addons/stock_location/i18n/el.po | 4 +- addons/stock_location/i18n/es.po | 4 +- addons/stock_location/i18n/es_AR.po | 4 +- addons/stock_location/i18n/es_CL.po | 4 +- addons/stock_location/i18n/es_CR.po | 4 +- addons/stock_location/i18n/et.po | 4 +- addons/stock_location/i18n/fi.po | 4 +- addons/stock_location/i18n/fr.po | 12 +- addons/stock_location/i18n/gl.po | 4 +- addons/stock_location/i18n/hr.po | 4 +- addons/stock_location/i18n/hu.po | 4 +- addons/stock_location/i18n/id.po | 4 +- addons/stock_location/i18n/it.po | 4 +- addons/stock_location/i18n/ja.po | 4 +- addons/stock_location/i18n/ko.po | 4 +- addons/stock_location/i18n/lt.po | 4 +- addons/stock_location/i18n/lv.po | 4 +- addons/stock_location/i18n/mk.po | 4 +- addons/stock_location/i18n/mn.po | 4 +- addons/stock_location/i18n/nb.po | 4 +- addons/stock_location/i18n/nl.po | 4 +- addons/stock_location/i18n/nl_BE.po | 4 +- addons/stock_location/i18n/pl.po | 4 +- addons/stock_location/i18n/pt.po | 4 +- addons/stock_location/i18n/pt_BR.po | 4 +- addons/stock_location/i18n/ro.po | 4 +- addons/stock_location/i18n/ru.po | 4 +- addons/stock_location/i18n/sl.po | 4 +- addons/stock_location/i18n/sq.po | 4 +- addons/stock_location/i18n/sv.po | 4 +- addons/stock_location/i18n/tlh.po | 4 +- addons/stock_location/i18n/tr.po | 4 +- addons/stock_location/i18n/uk.po | 4 +- addons/stock_location/i18n/vi.po | 4 +- addons/stock_location/i18n/zh_CN.po | 4 +- addons/stock_location/i18n/zh_TW.po | 4 +- addons/stock_no_autopicking/i18n/ar.po | 4 +- addons/stock_no_autopicking/i18n/bg.po | 4 +- addons/stock_no_autopicking/i18n/bs.po | 4 +- addons/stock_no_autopicking/i18n/ca.po | 4 +- addons/stock_no_autopicking/i18n/cs.po | 4 +- addons/stock_no_autopicking/i18n/da.po | 4 +- addons/stock_no_autopicking/i18n/de.po | 4 +- addons/stock_no_autopicking/i18n/el.po | 4 +- addons/stock_no_autopicking/i18n/es.po | 4 +- addons/stock_no_autopicking/i18n/es_AR.po | 4 +- addons/stock_no_autopicking/i18n/es_CL.po | 4 +- addons/stock_no_autopicking/i18n/es_CR.po | 4 +- addons/stock_no_autopicking/i18n/et.po | 4 +- addons/stock_no_autopicking/i18n/fi.po | 4 +- addons/stock_no_autopicking/i18n/fr.po | 4 +- addons/stock_no_autopicking/i18n/gl.po | 4 +- addons/stock_no_autopicking/i18n/hr.po | 4 +- addons/stock_no_autopicking/i18n/hu.po | 4 +- addons/stock_no_autopicking/i18n/id.po | 4 +- addons/stock_no_autopicking/i18n/it.po | 4 +- addons/stock_no_autopicking/i18n/ja.po | 4 +- addons/stock_no_autopicking/i18n/ko.po | 4 +- addons/stock_no_autopicking/i18n/lt.po | 4 +- addons/stock_no_autopicking/i18n/lv.po | 4 +- addons/stock_no_autopicking/i18n/mk.po | 4 +- addons/stock_no_autopicking/i18n/mn.po | 4 +- addons/stock_no_autopicking/i18n/nl.po | 4 +- addons/stock_no_autopicking/i18n/nl_BE.po | 4 +- addons/stock_no_autopicking/i18n/oc.po | 4 +- addons/stock_no_autopicking/i18n/pl.po | 4 +- addons/stock_no_autopicking/i18n/pt.po | 4 +- addons/stock_no_autopicking/i18n/pt_BR.po | 4 +- addons/stock_no_autopicking/i18n/ro.po | 4 +- addons/stock_no_autopicking/i18n/ru.po | 4 +- addons/stock_no_autopicking/i18n/sl.po | 4 +- addons/stock_no_autopicking/i18n/sq.po | 4 +- addons/stock_no_autopicking/i18n/sr@latin.po | 4 +- addons/stock_no_autopicking/i18n/sv.po | 4 +- addons/stock_no_autopicking/i18n/tlh.po | 4 +- addons/stock_no_autopicking/i18n/tr.po | 4 +- addons/stock_no_autopicking/i18n/uk.po | 4 +- addons/stock_no_autopicking/i18n/vi.po | 4 +- addons/stock_no_autopicking/i18n/zh_CN.po | 4 +- addons/stock_no_autopicking/i18n/zh_TW.po | 4 +- addons/subscription/i18n/ar.po | 4 +- addons/subscription/i18n/bg.po | 4 +- addons/subscription/i18n/bs.po | 4 +- addons/subscription/i18n/ca.po | 4 +- addons/subscription/i18n/cs.po | 4 +- addons/subscription/i18n/da.po | 4 +- addons/subscription/i18n/de.po | 4 +- addons/subscription/i18n/es.po | 4 +- addons/subscription/i18n/es_AR.po | 4 +- addons/subscription/i18n/es_CR.po | 4 +- addons/subscription/i18n/et.po | 4 +- addons/subscription/i18n/fi.po | 4 +- addons/subscription/i18n/fr.po | 4 +- addons/subscription/i18n/gl.po | 4 +- addons/subscription/i18n/hr.po | 4 +- addons/subscription/i18n/hu.po | 4 +- addons/subscription/i18n/id.po | 4 +- addons/subscription/i18n/it.po | 4 +- addons/subscription/i18n/ja.po | 4 +- addons/subscription/i18n/ko.po | 4 +- addons/subscription/i18n/lt.po | 4 +- addons/subscription/i18n/mk.po | 4 +- addons/subscription/i18n/nl.po | 4 +- addons/subscription/i18n/nl_BE.po | 4 +- addons/subscription/i18n/pl.po | 4 +- addons/subscription/i18n/pt.po | 4 +- addons/subscription/i18n/pt_BR.po | 4 +- addons/subscription/i18n/ro.po | 4 +- addons/subscription/i18n/ru.po | 4 +- addons/subscription/i18n/sl.po | 4 +- addons/subscription/i18n/sq.po | 4 +- addons/subscription/i18n/sv.po | 4 +- addons/subscription/i18n/tlh.po | 4 +- addons/subscription/i18n/tr.po | 4 +- addons/subscription/i18n/uk.po | 4 +- addons/subscription/i18n/vi.po | 4 +- addons/subscription/i18n/zh_CN.po | 4 +- addons/subscription/i18n/zh_TW.po | 4 +- addons/survey/i18n/ar.po | 4 +- addons/survey/i18n/bg.po | 4 +- addons/survey/i18n/ca.po | 4 +- addons/survey/i18n/cs.po | 4 +- addons/survey/i18n/da.po | 4 +- addons/survey/i18n/de.po | 4 +- addons/survey/i18n/es.po | 4 +- addons/survey/i18n/es_CR.po | 4 +- addons/survey/i18n/et.po | 4 +- addons/survey/i18n/fi.po | 4 +- addons/survey/i18n/fr.po | 6 +- addons/survey/i18n/gl.po | 4 +- addons/survey/i18n/hr.po | 4 +- addons/survey/i18n/hu.po | 4 +- addons/survey/i18n/it.po | 4 +- addons/survey/i18n/ja.po | 4 +- addons/survey/i18n/mk.po | 4 +- addons/survey/i18n/mn.po | 4 +- addons/survey/i18n/nl.po | 4 +- addons/survey/i18n/pl.po | 4 +- addons/survey/i18n/pt.po | 4 +- addons/survey/i18n/pt_BR.po | 4 +- addons/survey/i18n/ro.po | 4 +- addons/survey/i18n/ru.po | 4 +- addons/survey/i18n/sl.po | 4 +- addons/survey/i18n/sr.po | 4 +- addons/survey/i18n/sr@latin.po | 4 +- addons/survey/i18n/sv.po | 4 +- addons/survey/i18n/tr.po | 4 +- addons/survey/i18n/zh_CN.po | 4 +- addons/warning/i18n/ar.po | 4 +- addons/warning/i18n/bg.po | 4 +- addons/warning/i18n/bs.po | 4 +- addons/warning/i18n/ca.po | 4 +- addons/warning/i18n/cs.po | 4 +- addons/warning/i18n/da.po | 4 +- addons/warning/i18n/de.po | 4 +- addons/warning/i18n/el.po | 4 +- addons/warning/i18n/es.po | 4 +- addons/warning/i18n/es_AR.po | 4 +- addons/warning/i18n/es_CR.po | 4 +- addons/warning/i18n/et.po | 4 +- addons/warning/i18n/fi.po | 4 +- addons/warning/i18n/fr.po | 4 +- addons/warning/i18n/gl.po | 4 +- addons/warning/i18n/hr.po | 4 +- addons/warning/i18n/hu.po | 4 +- addons/warning/i18n/id.po | 4 +- addons/warning/i18n/it.po | 4 +- addons/warning/i18n/ja.po | 4 +- addons/warning/i18n/ko.po | 4 +- addons/warning/i18n/lt.po | 4 +- addons/warning/i18n/mk.po | 4 +- addons/warning/i18n/mn.po | 4 +- addons/warning/i18n/nb.po | 4 +- addons/warning/i18n/nl.po | 4 +- addons/warning/i18n/nl_BE.po | 4 +- addons/warning/i18n/pl.po | 4 +- addons/warning/i18n/pt.po | 4 +- addons/warning/i18n/pt_BR.po | 4 +- addons/warning/i18n/ro.po | 4 +- addons/warning/i18n/ru.po | 4 +- addons/warning/i18n/sl.po | 4 +- addons/warning/i18n/sq.po | 4 +- addons/warning/i18n/sr.po | 4 +- addons/warning/i18n/sr@latin.po | 4 +- addons/warning/i18n/sv.po | 4 +- addons/warning/i18n/tlh.po | 4 +- addons/warning/i18n/tr.po | 4 +- addons/warning/i18n/uk.po | 4 +- addons/warning/i18n/vi.po | 4 +- addons/warning/i18n/zh_CN.po | 4 +- addons/warning/i18n/zh_TW.po | 4 +- addons/web_linkedin/i18n/de.po | 4 +- addons/web_linkedin/i18n/es.po | 4 +- addons/web_linkedin/i18n/fr.po | 4 +- addons/web_linkedin/i18n/hr.po | 4 +- addons/web_linkedin/i18n/hu.po | 4 +- addons/web_linkedin/i18n/it.po | 4 +- addons/web_linkedin/i18n/mk.po | 4 +- addons/web_linkedin/i18n/mn.po | 4 +- addons/web_linkedin/i18n/nl.po | 4 +- addons/web_linkedin/i18n/pl.po | 4 +- addons/web_linkedin/i18n/pt.po | 4 +- addons/web_linkedin/i18n/pt_BR.po | 4 +- addons/web_linkedin/i18n/ro.po | 4 +- addons/web_linkedin/i18n/sl.po | 4 +- addons/web_linkedin/i18n/tr.po | 4 +- addons/web_linkedin/i18n/zh_CN.po | 4 +- addons/web_shortcuts/i18n/cs.po | 4 +- addons/web_shortcuts/i18n/de.po | 4 +- addons/web_shortcuts/i18n/es.po | 4 +- addons/web_shortcuts/i18n/fr.po | 4 +- addons/web_shortcuts/i18n/hr.po | 4 +- addons/web_shortcuts/i18n/hu.po | 4 +- addons/web_shortcuts/i18n/it.po | 4 +- addons/web_shortcuts/i18n/mk.po | 4 +- addons/web_shortcuts/i18n/mn.po | 4 +- addons/web_shortcuts/i18n/nl.po | 4 +- addons/web_shortcuts/i18n/pl.po | 4 +- addons/web_shortcuts/i18n/pt.po | 4 +- addons/web_shortcuts/i18n/pt_BR.po | 4 +- addons/web_shortcuts/i18n/ro.po | 4 +- addons/web_shortcuts/i18n/ru.po | 4 +- addons/web_shortcuts/i18n/sl.po | 4 +- addons/web_shortcuts/i18n/sv.po | 4 +- addons/web_shortcuts/i18n/tr.po | 4 +- addons/web_shortcuts/i18n/zh_CN.po | 4 +- addons/web_shortcuts/i18n/zh_TW.po | 4 +- 5854 files changed, 15570 insertions(+), 15858 deletions(-) create mode 100644 addons/fetchmail/i18n/cs.po create mode 100644 addons/note/i18n/cs.po diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index f4f37dbe59e..f00eb5f5e1a 100644 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:21+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index 7cedaa6dfc1..2e3cbb9dad2 100644 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index c6c13c6b02b..e4e7748a6bc 100644 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index 87ec58f79f6..91fb164ef79 100644 --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:21+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index 60330f9b28a..c547c678bdc 100644 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index 7358c35f14c..9ad5c99e48b 100644 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index 38a4c151e0a..bdf75220049 100644 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index a6f186eadca..94ea50c8e60 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index bdde615e4da..2f3799df1d6 100644 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:25+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_GB.po b/addons/account/i18n/en_GB.po index b43f97b7887..7ecd2805251 100644 --- a/addons/account/i18n/en_GB.po +++ b/addons/account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:29+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index 77e3f131daf..7c938dcbcfc 100644 --- a/addons/account/i18n/en_US.po +++ b/addons/account/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "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:29+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index a53304bda7a..53bbdf6e809 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:28+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 3006c348ea6..d6aec11c9bc 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:29+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CL.po b/addons/account/i18n/es_CL.po index 6080654c92e..99ff8504d98 100644 --- a/addons/account/i18n/es_CL.po +++ b/addons/account/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po index 2ea304377d1..46d8e286651 100644 --- a/addons/account/i18n/es_CR.po +++ b/addons/account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_DO.po b/addons/account/i18n/es_DO.po index 59f82a8b8f6..a2031109d6f 100644 --- a/addons/account/i18n/es_DO.po +++ b/addons/account/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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:29+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index 95c60f9aa9d..e3baaa1d72b 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index edbf5567544..bf5d970bd61 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_PY.po b/addons/account/i18n/es_PY.po index 9635a7e329e..aae3014938f 100644 --- a/addons/account/i18n/es_PY.po +++ b/addons/account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_UY.po b/addons/account/i18n/es_UY.po index c5b681a4117..92dd1ef5f5b 100644 --- a/addons/account/i18n/es_UY.po +++ b/addons/account/i18n/es_UY.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/es_VE.po b/addons/account/i18n/es_VE.po index 5133d257287..1f52a1aef45 100644 --- a/addons/account/i18n/es_VE.po +++ b/addons/account/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "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:29+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index e1a75d4f8a9..4f225345481 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index d129125eb62..c414c23dfee 100644 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:21+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index edd0b2ece47..83b85d602b8 100644 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fa_AF.po b/addons/account/i18n/fa_AF.po index 641220240b4..11be05da30b 100644 --- a/addons/account/i18n/fa_AF.po +++ b/addons/account/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index fd36648f394..df97aacdcc9 100644 --- a/addons/account/i18n/fi.po +++ b/addons/account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:25+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index 376de2e7a39..733159aac7b 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index 4ef44a76762..067976e5468 100644 --- a/addons/account/i18n/fr_BE.po +++ b/addons/account/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:29+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index 9690cbcd431..7085c7363d8 100644 --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:25+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index c26cdab5edb..ef07baa9b15 100644 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:25+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index 74c6d2af2ec..ba61f13a873 100644 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "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:25+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index 458a800ebc0..a357e23117a 100644 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:25+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index cf2da086961..84b3a2931bb 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index 67d685f18d8..336b44cdd1a 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:25+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index 5e9502cf942..b1b96afc231 100644 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:25+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index a06716d86d3..524d4b83541 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po index adc393a7545..373b0378b96 100644 --- a/addons/account/i18n/ja.po +++ b/addons/account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:26+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index b96ffff1098..d9aaf67f9da 100644 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "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:26+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/kk.po b/addons/account/i18n/kk.po index d830b521f17..c17c1aaa374 100644 --- a/addons/account/i18n/kk.po +++ b/addons/account/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "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:26+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index f106cc4b221..711b4a354de 100644 --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:26+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lo.po b/addons/account/i18n/lo.po index edd386c05f2..b5dfc133d1d 100644 --- a/addons/account/i18n/lo.po +++ b/addons/account/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:26+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:23+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index a27d77e4c8c..3f1d006b150 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:26+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index 9e3dd8adf48..2a6678854a4 100644 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:26+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index c4f0a5d6bf0..faf45831c06 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: account diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index 7af47389ab7..eefe945357e 100644 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-26 05:32+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index ebce4163157..26ee1357f85 100644 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:26+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index bf6b4d60110..1caa122a3f4 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-27 05:40+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:22+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index 83a2fa1abab..2aad3d92f63 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index d96f4fa5d6b..baef4f5fbff 100644 --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index b5b2d755ac3..3cce0d20c63 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index 41e82ad188b..214ea07e99f 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index bb75cbb1e48..e8fb05c6d66 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index db8c0167a83..060c7a29e0d 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:24+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index ee46ddcaa22..4af8631e9dd 100644 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -451,7 +451,7 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Информация от плательщика получателю" #. module: account #. openerp-web diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index 9c3533ac70c..37b6446c2c0 100644 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index 5a4cfab2835..8dc3edd86f2 100644 --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 8f5ddd6d732..aad128aeaf2 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index d7b1b70f6ab..0ecddfb9eed 100644 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:24+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:21+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index d9f25a7c811..c6973161c87 100644 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:27+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index ebecc75e577..1bc38964957 100644 --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 77015fe588f..869e049749a 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index dd2592961f8..baa617868ab 100644 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "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:28+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index db52752db11..10780aded9d 100644 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "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:28+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index 0f5dfb7bfad..c12bdb3ce42 100644 --- a/addons/account/i18n/th.po +++ b/addons/account/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:28+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:25+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index 87d0571adbf..746ac1ca751 100644 --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:28+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 4f3ac756cd9..4e62990da37 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: account diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index 1732f328c01..6aa5f116aec 100644 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.po @@ -14,8 +14,8 @@ msgstr "" "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:28+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index 0bb4beaf2be..4e4b8d349a7 100644 --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:28+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/ur.po b/addons/account/i18n/ur.po index 33afd9071dd..608fd3bc97e 100644 --- a/addons/account/i18n/ur.po +++ b/addons/account/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "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:28+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index 93a86d2b960..2421fd6aa86 100644 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:29+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index 547ce81b33f..33d1dec4569 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index 116358e5c0a..ca2d0093465 100644 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "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:29+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:26+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index f4112906f58..9a231f6e569 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:27+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index c5c2ff0f3ec..b9689f81f5a 100644 --- a/addons/account_accountant/i18n/ar.po +++ b/addons/account_accountant/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/az.po b/addons/account_accountant/i18n/az.po index da105058558..7ab11a0fdea 100644 --- a/addons/account_accountant/i18n/az.po +++ b/addons/account_accountant/i18n/az.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bg.po b/addons/account_accountant/i18n/bg.po index ea0b6b0cc7d..5ba9ea053c9 100644 --- a/addons/account_accountant/i18n/bg.po +++ b/addons/account_accountant/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bn.po b/addons/account_accountant/i18n/bn.po index 6ff10f7a86a..657ae26498b 100644 --- a/addons/account_accountant/i18n/bn.po +++ b/addons/account_accountant/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/bs.po b/addons/account_accountant/i18n/bs.po index d1ee43ba1d0..4ed23932cc2 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ca.po b/addons/account_accountant/i18n/ca.po index 20268b5ff3a..360f096d192 100644 --- a/addons/account_accountant/i18n/ca.po +++ b/addons/account_accountant/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/cs.po b/addons/account_accountant/i18n/cs.po index ca0a26c0d12..2375c86e25e 100644 --- a/addons/account_accountant/i18n/cs.po +++ b/addons/account_accountant/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/da.po b/addons/account_accountant/i18n/da.po index 10ed2c9569c..f64f8c33ee3 100644 --- a/addons/account_accountant/i18n/da.po +++ b/addons/account_accountant/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/de.po b/addons/account_accountant/i18n/de.po index 07a1c8dbd65..844debfe178 100644 --- a/addons/account_accountant/i18n/de.po +++ b/addons/account_accountant/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/el.po b/addons/account_accountant/i18n/el.po index caa4302b955..7ab40c7a46a 100644 --- a/addons/account_accountant/i18n/el.po +++ b/addons/account_accountant/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/en_GB.po b/addons/account_accountant/i18n/en_GB.po index 8bb0e9fadbe..67c4edef91b 100644 --- a/addons/account_accountant/i18n/en_GB.po +++ b/addons/account_accountant/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es.po b/addons/account_accountant/i18n/es.po index 350241d7bf0..c1a3a9240b2 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CO.po b/addons/account_accountant/i18n/es_CO.po index b112adc5644..692293c5ab3 100644 --- a/addons/account_accountant/i18n/es_CO.po +++ b/addons/account_accountant/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_CR.po b/addons/account_accountant/i18n/es_CR.po index 60f0ad4fe85..b01703fc221 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index 7a4b12aaad4..aec244f42b1 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_EC.po b/addons/account_accountant/i18n/es_EC.po index 420de798d62..919c8e88f93 100644 --- a/addons/account_accountant/i18n/es_EC.po +++ b/addons/account_accountant/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_MX.po b/addons/account_accountant/i18n/es_MX.po index 86a23a68d04..46111b910e7 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/es_PY.po b/addons/account_accountant/i18n/es_PY.po index 0af4116b987..e0ce59ca87f 100644 --- a/addons/account_accountant/i18n/es_PY.po +++ b/addons/account_accountant/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/et.po b/addons/account_accountant/i18n/et.po index de2711a2f5b..bd9f519a73d 100644 --- a/addons/account_accountant/i18n/et.po +++ b/addons/account_accountant/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fa.po b/addons/account_accountant/i18n/fa.po index 2bf17dca747..5221c87bf9d 100644 --- a/addons/account_accountant/i18n/fa.po +++ b/addons/account_accountant/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fi.po b/addons/account_accountant/i18n/fi.po index a3d61557c0a..2e47889dc7a 100644 --- a/addons/account_accountant/i18n/fi.po +++ b/addons/account_accountant/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/fr.po b/addons/account_accountant/i18n/fr.po index e8f7d09f6f1..91976a4f3d3 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/gl.po b/addons/account_accountant/i18n/gl.po index e58dc8802e7..7f183aefb19 100644 --- a/addons/account_accountant/i18n/gl.po +++ b/addons/account_accountant/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/he.po b/addons/account_accountant/i18n/he.po index 0ea39b55af3..ec0ebd058df 100644 --- a/addons/account_accountant/i18n/he.po +++ b/addons/account_accountant/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hi.po b/addons/account_accountant/i18n/hi.po index 8689418c5fe..4c5a558f5ef 100644 --- a/addons/account_accountant/i18n/hi.po +++ b/addons/account_accountant/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hr.po b/addons/account_accountant/i18n/hr.po index 04117e20291..f7dd17cffdb 100644 --- a/addons/account_accountant/i18n/hr.po +++ b/addons/account_accountant/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/hu.po b/addons/account_accountant/i18n/hu.po index 5bd6420ab75..93407adbfbb 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/id.po b/addons/account_accountant/i18n/id.po index 1e86ef11bfc..10bfb079be3 100644 --- a/addons/account_accountant/i18n/id.po +++ b/addons/account_accountant/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/it.po b/addons/account_accountant/i18n/it.po index d44664e65e4..08bca82bdc6 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ja.po b/addons/account_accountant/i18n/ja.po index fa378998ce4..ae274e5f080 100644 --- a/addons/account_accountant/i18n/ja.po +++ b/addons/account_accountant/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ko.po b/addons/account_accountant/i18n/ko.po index 0f67324def2..ec75af5b4e9 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lo.po b/addons/account_accountant/i18n/lo.po index 57c4a816df0..ba253fe1e84 100644 --- a/addons/account_accountant/i18n/lo.po +++ b/addons/account_accountant/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lt.po b/addons/account_accountant/i18n/lt.po index aebf9183219..df1844b3347 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index 3d9c719e22d..3d6e534a777 100644 --- a/addons/account_accountant/i18n/lv.po +++ b/addons/account_accountant/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mk.po b/addons/account_accountant/i18n/mk.po index 920a2c9dac4..29025739558 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/mn.po b/addons/account_accountant/i18n/mn.po index 0886100cf78..1ba5fb656c7 100644 --- a/addons/account_accountant/i18n/mn.po +++ b/addons/account_accountant/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nb.po b/addons/account_accountant/i18n/nb.po index ed4c13959a0..60c93eda552 100644 --- a/addons/account_accountant/i18n/nb.po +++ b/addons/account_accountant/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl.po b/addons/account_accountant/i18n/nl.po index 3e844a3bb43..1868092bcb3 100644 --- a/addons/account_accountant/i18n/nl.po +++ b/addons/account_accountant/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/nl_BE.po b/addons/account_accountant/i18n/nl_BE.po index e8697f38bea..620a6f160f1 100644 --- a/addons/account_accountant/i18n/nl_BE.po +++ b/addons/account_accountant/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/oc.po b/addons/account_accountant/i18n/oc.po index 3bbba9bc541..1af0c7ec244 100644 --- a/addons/account_accountant/i18n/oc.po +++ b/addons/account_accountant/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pl.po b/addons/account_accountant/i18n/pl.po index e1678e13f0c..a89681e69f3 100644 --- a/addons/account_accountant/i18n/pl.po +++ b/addons/account_accountant/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt.po b/addons/account_accountant/i18n/pt.po index ba649c0ff58..a0946063cf5 100644 --- a/addons/account_accountant/i18n/pt.po +++ b/addons/account_accountant/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/pt_BR.po b/addons/account_accountant/i18n/pt_BR.po index 7b2d174c4e5..80c76d0694a 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po index 960d9396e57..5b5997c184d 100644 --- a/addons/account_accountant/i18n/ro.po +++ b/addons/account_accountant/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ru.po b/addons/account_accountant/i18n/ru.po index a2d0572bc19..606c35d2417 100644 --- a/addons/account_accountant/i18n/ru.po +++ b/addons/account_accountant/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sk.po b/addons/account_accountant/i18n/sk.po index 61236a0e154..9857c8cb396 100644 --- a/addons/account_accountant/i18n/sk.po +++ b/addons/account_accountant/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sl.po b/addons/account_accountant/i18n/sl.po index 1d4b93d0079..d562bc41916 100644 --- a/addons/account_accountant/i18n/sl.po +++ b/addons/account_accountant/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sq.po b/addons/account_accountant/i18n/sq.po index 41296583425..9247281c859 100644 --- a/addons/account_accountant/i18n/sq.po +++ b/addons/account_accountant/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:30+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr.po b/addons/account_accountant/i18n/sr.po index 2d08af299c0..fa458e4ba08 100644 --- a/addons/account_accountant/i18n/sr.po +++ b/addons/account_accountant/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sr@latin.po b/addons/account_accountant/i18n/sr@latin.po index c7d0f56195c..a17e28fc111 100644 --- a/addons/account_accountant/i18n/sr@latin.po +++ b/addons/account_accountant/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/sv.po b/addons/account_accountant/i18n/sv.po index 88b3aed23de..f3bb3a74d84 100644 --- a/addons/account_accountant/i18n/sv.po +++ b/addons/account_accountant/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/ta.po b/addons/account_accountant/i18n/ta.po index dbb15329581..3fefbfae38a 100644 --- a/addons/account_accountant/i18n/ta.po +++ b/addons/account_accountant/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/th.po b/addons/account_accountant/i18n/th.po index 1ad2aff500e..6032d53b087 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po index 5ff7a737026..beb7d946b72 100644 --- a/addons/account_accountant/i18n/tr.po +++ b/addons/account_accountant/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/uk.po b/addons/account_accountant/i18n/uk.po index 60c1bec8fab..2a7ffd710d1 100644 --- a/addons/account_accountant/i18n/uk.po +++ b/addons/account_accountant/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/vi.po b/addons/account_accountant/i18n/vi.po index 6806338e764..55a51705667 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po index 978b2ef79fe..a79e06169fe 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_accountant/i18n/zh_TW.po b/addons/account_accountant/i18n/zh_TW.po index 8fc295d93ce..74e61a7427f 100644 --- a/addons/account_accountant/i18n/zh_TW.po +++ b/addons/account_accountant/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu diff --git a/addons/account_analytic_analysis/i18n/ar.po b/addons/account_analytic_analysis/i18n/ar.po index f4acb858646..ccb513be8d5 100644 --- a/addons/account_analytic_analysis/i18n/ar.po +++ b/addons/account_analytic_analysis/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index 258a3987309..0c4d9178566 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po index e2ff762a735..4335eb430bf 100644 --- a/addons/account_analytic_analysis/i18n/bs.po +++ b/addons/account_analytic_analysis/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po index bbcd5ad5fbd..887b18da1d4 100644 --- a/addons/account_analytic_analysis/i18n/ca.po +++ b/addons/account_analytic_analysis/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po index 51adfdef88d..51d73506b6e 100644 --- a/addons/account_analytic_analysis/i18n/cs.po +++ b/addons/account_analytic_analysis/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po index f1251cc7b41..af6aeda03b3 100644 --- a/addons/account_analytic_analysis/i18n/da.po +++ b/addons/account_analytic_analysis/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po index b25192d9da8..da5ae84e04f 100644 --- a/addons/account_analytic_analysis/i18n/de.po +++ b/addons/account_analytic_analysis/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po index 581dda0448a..214ac3f7472 100644 --- a/addons/account_analytic_analysis/i18n/el.po +++ b/addons/account_analytic_analysis/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/en_GB.po b/addons/account_analytic_analysis/i18n/en_GB.po index b8297955c77..a36c8e58bfc 100644 --- a/addons/account_analytic_analysis/i18n/en_GB.po +++ b/addons/account_analytic_analysis/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po index 15a09435880..94a2e676d52 100644 --- a/addons/account_analytic_analysis/i18n/es.po +++ b/addons/account_analytic_analysis/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index 8948a65d7ea..12d3879b1f5 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_CR.po b/addons/account_analytic_analysis/i18n/es_CR.po index ab276a94c08..b68f9cf0e5b 100644 --- a/addons/account_analytic_analysis/i18n/es_CR.po +++ b/addons/account_analytic_analysis/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index 06b4e91dc86..848de8699e3 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_MX.po b/addons/account_analytic_analysis/i18n/es_MX.po index c1656276f25..e3d37caf9f3 100644 --- a/addons/account_analytic_analysis/i18n/es_MX.po +++ b/addons/account_analytic_analysis/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/es_PY.po b/addons/account_analytic_analysis/i18n/es_PY.po index 9d94ecc2412..8770fa8e126 100644 --- a/addons/account_analytic_analysis/i18n/es_PY.po +++ b/addons/account_analytic_analysis/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po index f74bb3f9cb9..891c8c783fb 100644 --- a/addons/account_analytic_analysis/i18n/et.po +++ b/addons/account_analytic_analysis/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po index df74144c0fb..d5b9da6713d 100644 --- a/addons/account_analytic_analysis/i18n/fa.po +++ b/addons/account_analytic_analysis/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index aa4aec721fd..8e165f19e23 100644 --- a/addons/account_analytic_analysis/i18n/fi.po +++ b/addons/account_analytic_analysis/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index 2a17ce6a311..699ee371353 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po index 640fed19709..a3e3bfb032c 100644 --- a/addons/account_analytic_analysis/i18n/gl.po +++ b/addons/account_analytic_analysis/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/gu.po b/addons/account_analytic_analysis/i18n/gu.po index 036dae47d1f..91b39ff01c6 100644 --- a/addons/account_analytic_analysis/i18n/gu.po +++ b/addons/account_analytic_analysis/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po index 438a5996364..6ca97a0ec0b 100644 --- a/addons/account_analytic_analysis/i18n/hr.po +++ b/addons/account_analytic_analysis/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index 9c5c355de19..6e597b306d3 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po index 31bab57c521..6f571070a85 100644 --- a/addons/account_analytic_analysis/i18n/id.po +++ b/addons/account_analytic_analysis/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index 5e78a92931b..4536aba00aa 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po index 0c67b6c2ea9..45cb0e132b4 100644 --- a/addons/account_analytic_analysis/i18n/ja.po +++ b/addons/account_analytic_analysis/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po index b041cace8f0..19ce3c9bd1d 100644 --- a/addons/account_analytic_analysis/i18n/ko.po +++ b/addons/account_analytic_analysis/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index 23c505dd9d5..a7c2c2f56ec 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po index 47ec2d7c814..dbe633e94e7 100644 --- a/addons/account_analytic_analysis/i18n/lv.po +++ b/addons/account_analytic_analysis/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index 63e4ead05bc..1daa850e2e8 100644 --- a/addons/account_analytic_analysis/i18n/mk.po +++ b/addons/account_analytic_analysis/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po index bb9f87bf772..0cfefcb3449 100644 --- a/addons/account_analytic_analysis/i18n/mn.po +++ b/addons/account_analytic_analysis/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:23+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po index b31685731c2..592297f8d48 100644 --- a/addons/account_analytic_analysis/i18n/nb.po +++ b/addons/account_analytic_analysis/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po index 6fd730f4bed..6f6fa667ea6 100644 --- a/addons/account_analytic_analysis/i18n/nl.po +++ b/addons/account_analytic_analysis/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index 2103f21b024..ff1718091d0 100644 --- a/addons/account_analytic_analysis/i18n/nl_BE.po +++ b/addons/account_analytic_analysis/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po index fc1a77bfe7a..9e76401b264 100644 --- a/addons/account_analytic_analysis/i18n/oc.po +++ b/addons/account_analytic_analysis/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po index 356281bae48..e5802c6d41c 100644 --- a/addons/account_analytic_analysis/i18n/pl.po +++ b/addons/account_analytic_analysis/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po index 9fb15779df9..772eacfab01 100644 --- a/addons/account_analytic_analysis/i18n/pt.po +++ b/addons/account_analytic_analysis/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index b8902e99b80..aac8a682d31 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po index fb5486e4957..92646b64cb3 100644 --- a/addons/account_analytic_analysis/i18n/ro.po +++ b/addons/account_analytic_analysis/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index 775b849da88..e0689c9fcff 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index b2c29c01b7e..c99cb973b29 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po index 34e7dd0a752..a5a2ea634cc 100644 --- a/addons/account_analytic_analysis/i18n/sq.po +++ b/addons/account_analytic_analysis/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po index 8d96eab5ef7..c174026b358 100644 --- a/addons/account_analytic_analysis/i18n/sr.po +++ b/addons/account_analytic_analysis/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po index 7efcc1970f0..1b47736d7d3 100644 --- a/addons/account_analytic_analysis/i18n/sr@latin.po +++ b/addons/account_analytic_analysis/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po index 73576fe7152..fce073c5a42 100644 --- a/addons/account_analytic_analysis/i18n/sv.po +++ b/addons/account_analytic_analysis/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po index 3228b9e76ff..f0a26675a18 100644 --- a/addons/account_analytic_analysis/i18n/tlh.po +++ b/addons/account_analytic_analysis/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index 838c84891e4..b61d2e543d4 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: account_analytic_analysis diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po index 9fb0019f152..6b27d4542a4 100644 --- a/addons/account_analytic_analysis/i18n/uk.po +++ b/addons/account_analytic_analysis/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po index b5f3b249f83..97778d99345 100644 --- a/addons/account_analytic_analysis/i18n/vi.po +++ b/addons/account_analytic_analysis/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index ae410a881df..ef87e0e7a08 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index abf21d74a98..72ea8e89035 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po index 6801c4eab18..475315a917c 100644 --- a/addons/account_analytic_default/i18n/ar.po +++ b/addons/account_analytic_default/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bg.po b/addons/account_analytic_default/i18n/bg.po index 90223513e66..1f642e7a863 100644 --- a/addons/account_analytic_default/i18n/bg.po +++ b/addons/account_analytic_default/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/bs.po b/addons/account_analytic_default/i18n/bs.po index b61251c6464..d9026d7a10f 100644 --- a/addons/account_analytic_default/i18n/bs.po +++ b/addons/account_analytic_default/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ca.po b/addons/account_analytic_default/i18n/ca.po index 64b7bf5ed18..6b68049551e 100644 --- a/addons/account_analytic_default/i18n/ca.po +++ b/addons/account_analytic_default/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/cs.po b/addons/account_analytic_default/i18n/cs.po index 9c3936e99ca..7002a28467d 100644 --- a/addons/account_analytic_default/i18n/cs.po +++ b/addons/account_analytic_default/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/da.po b/addons/account_analytic_default/i18n/da.po index c31878bb7c9..d2157440b4c 100644 --- a/addons/account_analytic_default/i18n/da.po +++ b/addons/account_analytic_default/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/de.po b/addons/account_analytic_default/i18n/de.po index 9cba6b2a356..62feb880028 100644 --- a/addons/account_analytic_default/i18n/de.po +++ b/addons/account_analytic_default/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/el.po b/addons/account_analytic_default/i18n/el.po index 0789c10f003..929c3e0f51e 100644 --- a/addons/account_analytic_default/i18n/el.po +++ b/addons/account_analytic_default/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/en_GB.po b/addons/account_analytic_default/i18n/en_GB.po index 9720849e6fa..0bbd9da151e 100644 --- a/addons/account_analytic_default/i18n/en_GB.po +++ b/addons/account_analytic_default/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es.po b/addons/account_analytic_default/i18n/es.po index df64dc18b10..dd641f4c498 100644 --- a/addons/account_analytic_default/i18n/es.po +++ b/addons/account_analytic_default/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_AR.po b/addons/account_analytic_default/i18n/es_AR.po index 39c19ad8091..bd60a43433e 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_CR.po b/addons/account_analytic_default/i18n/es_CR.po index b47706f0649..339293259b5 100644 --- a/addons/account_analytic_default/i18n/es_CR.po +++ b/addons/account_analytic_default/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po index 403f6f0f584..832955a1fa7 100644 --- a/addons/account_analytic_default/i18n/es_EC.po +++ b/addons/account_analytic_default/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_MX.po b/addons/account_analytic_default/i18n/es_MX.po index 5f6f6366e0e..e54b5254073 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/es_PY.po b/addons/account_analytic_default/i18n/es_PY.po index 9a0351518a1..10b4c22ca8b 100644 --- a/addons/account_analytic_default/i18n/es_PY.po +++ b/addons/account_analytic_default/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/et.po b/addons/account_analytic_default/i18n/et.po index ea3b1109935..18b65d1363a 100644 --- a/addons/account_analytic_default/i18n/et.po +++ b/addons/account_analytic_default/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fa.po b/addons/account_analytic_default/i18n/fa.po index eed6df1a6b4..41d8e6a8039 100644 --- a/addons/account_analytic_default/i18n/fa.po +++ b/addons/account_analytic_default/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fi.po b/addons/account_analytic_default/i18n/fi.po index ed2791d9e99..abde1557189 100644 --- a/addons/account_analytic_default/i18n/fi.po +++ b/addons/account_analytic_default/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/fr.po b/addons/account_analytic_default/i18n/fr.po index 0f08afb3513..dd82029a044 100644 --- a/addons/account_analytic_default/i18n/fr.po +++ b/addons/account_analytic_default/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gl.po b/addons/account_analytic_default/i18n/gl.po index ad2c9a51d77..df499033e12 100644 --- a/addons/account_analytic_default/i18n/gl.po +++ b/addons/account_analytic_default/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/gu.po b/addons/account_analytic_default/i18n/gu.po index 35de29cdd4f..2c3a414867d 100644 --- a/addons/account_analytic_default/i18n/gu.po +++ b/addons/account_analytic_default/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hr.po b/addons/account_analytic_default/i18n/hr.po index 1718d13ae6d..6be81e0af52 100644 --- a/addons/account_analytic_default/i18n/hr.po +++ b/addons/account_analytic_default/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/hu.po b/addons/account_analytic_default/i18n/hu.po index 5655b330eac..f3d9f7396b2 100644 --- a/addons/account_analytic_default/i18n/hu.po +++ b/addons/account_analytic_default/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po index 0792281a565..c4ade6e857d 100644 --- a/addons/account_analytic_default/i18n/id.po +++ b/addons/account_analytic_default/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/it.po b/addons/account_analytic_default/i18n/it.po index 41112555411..6d3ed26af65 100644 --- a/addons/account_analytic_default/i18n/it.po +++ b/addons/account_analytic_default/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ja.po b/addons/account_analytic_default/i18n/ja.po index e2c01609722..067cc623a05 100644 --- a/addons/account_analytic_default/i18n/ja.po +++ b/addons/account_analytic_default/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ko.po b/addons/account_analytic_default/i18n/ko.po index 50a37df75a0..cf1e6eefd87 100644 --- a/addons/account_analytic_default/i18n/ko.po +++ b/addons/account_analytic_default/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lt.po b/addons/account_analytic_default/i18n/lt.po index 283b26ed986..161ce6b977a 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po index 77e06d52d59..242bb3a6b20 100644 --- a/addons/account_analytic_default/i18n/lv.po +++ b/addons/account_analytic_default/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mk.po b/addons/account_analytic_default/i18n/mk.po index c8ab7003577..4a1c0c65d1c 100644 --- a/addons/account_analytic_default/i18n/mk.po +++ b/addons/account_analytic_default/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po index f8f51ed5a78..e65c98d7547 100644 --- a/addons/account_analytic_default/i18n/mn.po +++ b/addons/account_analytic_default/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:23+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po index 748f4ce9724..d5aebd8eb2e 100644 --- a/addons/account_analytic_default/i18n/nb.po +++ b/addons/account_analytic_default/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl.po b/addons/account_analytic_default/i18n/nl.po index 6a36162becd..61d260312ae 100644 --- a/addons/account_analytic_default/i18n/nl.po +++ b/addons/account_analytic_default/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 1db3a1b75d8..12b2a5dac58 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/oc.po b/addons/account_analytic_default/i18n/oc.po index 598bf872ff1..6457decccb6 100644 --- a/addons/account_analytic_default/i18n/oc.po +++ b/addons/account_analytic_default/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pl.po b/addons/account_analytic_default/i18n/pl.po index 9237e938f17..ab1cde0c3ca 100644 --- a/addons/account_analytic_default/i18n/pl.po +++ b/addons/account_analytic_default/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt.po b/addons/account_analytic_default/i18n/pt.po index 33698cdcb8e..03af9847afb 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/pt_BR.po b/addons/account_analytic_default/i18n/pt_BR.po index 34d08242d8e..97cfcf2d869 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ro.po b/addons/account_analytic_default/i18n/ro.po index 6ebaac30439..ce6e6f13e7a 100644 --- a/addons/account_analytic_default/i18n/ro.po +++ b/addons/account_analytic_default/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/ru.po b/addons/account_analytic_default/i18n/ru.po index d0216e860dd..9f1464e9996 100644 --- a/addons/account_analytic_default/i18n/ru.po +++ b/addons/account_analytic_default/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po index 25b0dc0d9dd..d8934fdeb4b 100644 --- a/addons/account_analytic_default/i18n/sk.po +++ b/addons/account_analytic_default/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sl.po b/addons/account_analytic_default/i18n/sl.po index bd9695b640c..d6aa8abfaf6 100644 --- a/addons/account_analytic_default/i18n/sl.po +++ b/addons/account_analytic_default/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sq.po b/addons/account_analytic_default/i18n/sq.po index 18de9a0c946..0205c507e4f 100644 --- a/addons/account_analytic_default/i18n/sq.po +++ b/addons/account_analytic_default/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr.po b/addons/account_analytic_default/i18n/sr.po index b11c2a7a22b..c02bde57973 100644 --- a/addons/account_analytic_default/i18n/sr.po +++ b/addons/account_analytic_default/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sr@latin.po b/addons/account_analytic_default/i18n/sr@latin.po index ffaa180054a..212b2db205e 100644 --- a/addons/account_analytic_default/i18n/sr@latin.po +++ b/addons/account_analytic_default/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/sv.po b/addons/account_analytic_default/i18n/sv.po index b3d3d6ef29f..8b7d2015339 100644 --- a/addons/account_analytic_default/i18n/sv.po +++ b/addons/account_analytic_default/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tlh.po b/addons/account_analytic_default/i18n/tlh.po index bbb1af299e4..bb55b340b4c 100644 --- a/addons/account_analytic_default/i18n/tlh.po +++ b/addons/account_analytic_default/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/tr.po b/addons/account_analytic_default/i18n/tr.po index 1891b7e3b93..add31d66026 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po index 4e86835b34c..23c2babc5a3 100644 --- a/addons/account_analytic_default/i18n/uk.po +++ b/addons/account_analytic_default/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/vi.po b/addons/account_analytic_default/i18n/vi.po index f39267356a3..385635a17c0 100644 --- a/addons/account_analytic_default/i18n/vi.po +++ b/addons/account_analytic_default/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_CN.po b/addons/account_analytic_default/i18n/zh_CN.po index b549137774e..50184b90f9d 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index 07f52692531..42e945407d5 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner diff --git a/addons/account_analytic_plans/i18n/ar.po b/addons/account_analytic_plans/i18n/ar.po index 477f781d4b8..47c92468dbc 100644 --- a/addons/account_analytic_plans/i18n/ar.po +++ b/addons/account_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bg.po b/addons/account_analytic_plans/i18n/bg.po index 08e7865ae2a..ae9aef28322 100644 --- a/addons/account_analytic_plans/i18n/bg.po +++ b/addons/account_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/bs.po b/addons/account_analytic_plans/i18n/bs.po index 36e319613a0..f6eb1268d5b 100644 --- a/addons/account_analytic_plans/i18n/bs.po +++ b/addons/account_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ca.po b/addons/account_analytic_plans/i18n/ca.po index eddd2b01a3e..f641f2c1729 100644 --- a/addons/account_analytic_plans/i18n/ca.po +++ b/addons/account_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/cs.po b/addons/account_analytic_plans/i18n/cs.po index 6edafbafa8e..90349ea8ad0 100644 --- a/addons/account_analytic_plans/i18n/cs.po +++ b/addons/account_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/da.po b/addons/account_analytic_plans/i18n/da.po index c0771d298f1..974d72ad776 100644 --- a/addons/account_analytic_plans/i18n/da.po +++ b/addons/account_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po index a1cc0c22cd4..116dce928bd 100644 --- a/addons/account_analytic_plans/i18n/de.po +++ b/addons/account_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/el.po b/addons/account_analytic_plans/i18n/el.po index ed3feccc375..41a3fbf24a9 100644 --- a/addons/account_analytic_plans/i18n/el.po +++ b/addons/account_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/en_GB.po b/addons/account_analytic_plans/i18n/en_GB.po index 6c46cf7b4a1..a24cfcdf33d 100644 --- a/addons/account_analytic_plans/i18n/en_GB.po +++ b/addons/account_analytic_plans/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es.po b/addons/account_analytic_plans/i18n/es.po index c2921a96de4..2855d74e504 100644 --- a/addons/account_analytic_plans/i18n/es.po +++ b/addons/account_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_AR.po b/addons/account_analytic_plans/i18n/es_AR.po index 210db900f6c..d6f836b1010 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_CR.po b/addons/account_analytic_plans/i18n/es_CR.po index 71a20083151..0a54c9a5be3 100644 --- a/addons/account_analytic_plans/i18n/es_CR.po +++ b/addons/account_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index 87652e79bd3..075809ce946 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_MX.po b/addons/account_analytic_plans/i18n/es_MX.po index 11d567fa907..5560a5bf79f 100644 --- a/addons/account_analytic_plans/i18n/es_MX.po +++ b/addons/account_analytic_plans/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/es_PY.po b/addons/account_analytic_plans/i18n/es_PY.po index f5643d8e866..69acf691ec4 100644 --- a/addons/account_analytic_plans/i18n/es_PY.po +++ b/addons/account_analytic_plans/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/et.po b/addons/account_analytic_plans/i18n/et.po index 95a92c860ce..0694bef7075 100644 --- a/addons/account_analytic_plans/i18n/et.po +++ b/addons/account_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fa.po b/addons/account_analytic_plans/i18n/fa.po index 0ea22dbd896..5c6a809a6de 100644 --- a/addons/account_analytic_plans/i18n/fa.po +++ b/addons/account_analytic_plans/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fi.po b/addons/account_analytic_plans/i18n/fi.po index 127bcc0f09f..bd1f8177563 100644 --- a/addons/account_analytic_plans/i18n/fi.po +++ b/addons/account_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/fr.po b/addons/account_analytic_plans/i18n/fr.po index 4eba58c1115..b3331339371 100644 --- a/addons/account_analytic_plans/i18n/fr.po +++ b/addons/account_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gl.po b/addons/account_analytic_plans/i18n/gl.po index df99bab5515..f8727bc9553 100644 --- a/addons/account_analytic_plans/i18n/gl.po +++ b/addons/account_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/gu.po b/addons/account_analytic_plans/i18n/gu.po index 80a05f6c2bb..684468652b1 100644 --- a/addons/account_analytic_plans/i18n/gu.po +++ b/addons/account_analytic_plans/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hr.po b/addons/account_analytic_plans/i18n/hr.po index 8f2c9c04401..7066dc2eaf7 100644 --- a/addons/account_analytic_plans/i18n/hr.po +++ b/addons/account_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/hu.po b/addons/account_analytic_plans/i18n/hu.po index d3d656bc340..447b71b59de 100644 --- a/addons/account_analytic_plans/i18n/hu.po +++ b/addons/account_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po index 0e766bb86ee..bc2a88cf06f 100644 --- a/addons/account_analytic_plans/i18n/id.po +++ b/addons/account_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/it.po b/addons/account_analytic_plans/i18n/it.po index 55941714e9d..65a36a57147 100644 --- a/addons/account_analytic_plans/i18n/it.po +++ b/addons/account_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ja.po b/addons/account_analytic_plans/i18n/ja.po index 8f9b4c37a17..930c3dd2beb 100644 --- a/addons/account_analytic_plans/i18n/ja.po +++ b/addons/account_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ko.po b/addons/account_analytic_plans/i18n/ko.po index c596852732d..c14bf9a461c 100644 --- a/addons/account_analytic_plans/i18n/ko.po +++ b/addons/account_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lt.po b/addons/account_analytic_plans/i18n/lt.po index c691e52b5ce..4a3377a0227 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/lv.po b/addons/account_analytic_plans/i18n/lv.po index 3eb6324037d..3472b62061e 100644 --- a/addons/account_analytic_plans/i18n/lv.po +++ b/addons/account_analytic_plans/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mk.po b/addons/account_analytic_plans/i18n/mk.po index 05b8e18b8b7..57afc3949ee 100644 --- a/addons/account_analytic_plans/i18n/mk.po +++ b/addons/account_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po index b22aa3a714c..59e6479a148 100644 --- a/addons/account_analytic_plans/i18n/mn.po +++ b/addons/account_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:23+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nb.po b/addons/account_analytic_plans/i18n/nb.po index 957975df047..2e617fff3d1 100644 --- a/addons/account_analytic_plans/i18n/nb.po +++ b/addons/account_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl.po b/addons/account_analytic_plans/i18n/nl.po index eb4b9b6c628..6567d5cec4b 100644 --- a/addons/account_analytic_plans/i18n/nl.po +++ b/addons/account_analytic_plans/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index 540bb27d3d9..bc6bedeac8a 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/oc.po b/addons/account_analytic_plans/i18n/oc.po index 1c719c54015..345b57bc999 100644 --- a/addons/account_analytic_plans/i18n/oc.po +++ b/addons/account_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pl.po b/addons/account_analytic_plans/i18n/pl.po index c90f9f1a0f1..945a943d6d4 100644 --- a/addons/account_analytic_plans/i18n/pl.po +++ b/addons/account_analytic_plans/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt.po b/addons/account_analytic_plans/i18n/pt.po index 406c5130ed3..2d0bc2dc323 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_analytic_plans/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/pt_BR.po b/addons/account_analytic_plans/i18n/pt_BR.po index 5a7e79c647a..eef7bbb78ad 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_analytic_plans/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po index 1c0de3a7688..fc2b52e1146 100644 --- a/addons/account_analytic_plans/i18n/ro.po +++ b/addons/account_analytic_plans/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/ru.po b/addons/account_analytic_plans/i18n/ru.po index 81f95a52e12..25325874733 100644 --- a/addons/account_analytic_plans/i18n/ru.po +++ b/addons/account_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sl.po b/addons/account_analytic_plans/i18n/sl.po index 5b56d634834..406492d6687 100644 --- a/addons/account_analytic_plans/i18n/sl.po +++ b/addons/account_analytic_plans/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sq.po b/addons/account_analytic_plans/i18n/sq.po index 20bf80379ac..c166fcba11c 100644 --- a/addons/account_analytic_plans/i18n/sq.po +++ b/addons/account_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr.po b/addons/account_analytic_plans/i18n/sr.po index fa73d70e6f6..db112642403 100644 --- a/addons/account_analytic_plans/i18n/sr.po +++ b/addons/account_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sr@latin.po b/addons/account_analytic_plans/i18n/sr@latin.po index f09ba76abb0..50463ce290b 100644 --- a/addons/account_analytic_plans/i18n/sr@latin.po +++ b/addons/account_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/sv.po b/addons/account_analytic_plans/i18n/sv.po index d7304159bf6..d0e8438c3b2 100644 --- a/addons/account_analytic_plans/i18n/sv.po +++ b/addons/account_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tlh.po b/addons/account_analytic_plans/i18n/tlh.po index 56f6ce50ce1..1cec0015224 100644 --- a/addons/account_analytic_plans/i18n/tlh.po +++ b/addons/account_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/tr.po b/addons/account_analytic_plans/i18n/tr.po index 06b59f22825..8fb8c5ea01a 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po index 86413ea6116..9b9f63f96f8 100644 --- a/addons/account_analytic_plans/i18n/uk.po +++ b/addons/account_analytic_plans/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/vi.po b/addons/account_analytic_plans/i18n/vi.po index 92b1396b650..41ed69bb762 100644 --- a/addons/account_analytic_plans/i18n/vi.po +++ b/addons/account_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_CN.po b/addons/account_analytic_plans/i18n/zh_CN.po index 0f0bf3a02dd..8c5430beb17 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/zh_TW.po b/addons/account_analytic_plans/i18n/zh_TW.po index 218feda924a..21158782dea 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_analytic_plans/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:28+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_anglo_saxon/i18n/ar.po b/addons/account_anglo_saxon/i18n/ar.po index 6e1e1a3e3a3..2f8387d9c73 100644 --- a/addons/account_anglo_saxon/i18n/ar.po +++ b/addons/account_anglo_saxon/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/bg.po b/addons/account_anglo_saxon/i18n/bg.po index 89a50581303..dbc79d01d63 100644 --- a/addons/account_anglo_saxon/i18n/bg.po +++ b/addons/account_anglo_saxon/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ca.po b/addons/account_anglo_saxon/i18n/ca.po index 10f7f3834d8..98d51de8369 100644 --- a/addons/account_anglo_saxon/i18n/ca.po +++ b/addons/account_anglo_saxon/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/cs.po b/addons/account_anglo_saxon/i18n/cs.po index 5cb340917d9..9faae204621 100644 --- a/addons/account_anglo_saxon/i18n/cs.po +++ b/addons/account_anglo_saxon/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/da.po b/addons/account_anglo_saxon/i18n/da.po index 8023f78ec68..a3dea16a5e3 100644 --- a/addons/account_anglo_saxon/i18n/da.po +++ b/addons/account_anglo_saxon/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/de.po b/addons/account_anglo_saxon/i18n/de.po index a0017a757cd..50c8155af0e 100644 --- a/addons/account_anglo_saxon/i18n/de.po +++ b/addons/account_anglo_saxon/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/el.po b/addons/account_anglo_saxon/i18n/el.po index de24a06db8c..280d35d5f04 100644 --- a/addons/account_anglo_saxon/i18n/el.po +++ b/addons/account_anglo_saxon/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/en_GB.po b/addons/account_anglo_saxon/i18n/en_GB.po index 4bd1f98ec08..26ab33871cb 100644 --- a/addons/account_anglo_saxon/i18n/en_GB.po +++ b/addons/account_anglo_saxon/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es.po b/addons/account_anglo_saxon/i18n/es.po index e72c450dd26..d0926ddd8e8 100644 --- a/addons/account_anglo_saxon/i18n/es.po +++ b/addons/account_anglo_saxon/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_CR.po b/addons/account_anglo_saxon/i18n/es_CR.po index c09a181004a..23307b606fd 100644 --- a/addons/account_anglo_saxon/i18n/es_CR.po +++ b/addons/account_anglo_saxon/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po index bce5869c0ae..7e269fe0e81 100644 --- a/addons/account_anglo_saxon/i18n/es_EC.po +++ b/addons/account_anglo_saxon/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_MX.po b/addons/account_anglo_saxon/i18n/es_MX.po index 7390438f251..5ff592451b4 100644 --- a/addons/account_anglo_saxon/i18n/es_MX.po +++ b/addons/account_anglo_saxon/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/es_PY.po b/addons/account_anglo_saxon/i18n/es_PY.po index dff4590b88e..d7fb0bf5a7e 100644 --- a/addons/account_anglo_saxon/i18n/es_PY.po +++ b/addons/account_anglo_saxon/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/et.po b/addons/account_anglo_saxon/i18n/et.po index a075520dc35..f019eb5fd22 100644 --- a/addons/account_anglo_saxon/i18n/et.po +++ b/addons/account_anglo_saxon/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fa.po b/addons/account_anglo_saxon/i18n/fa.po index 5350359c46d..37de0a8bf04 100644 --- a/addons/account_anglo_saxon/i18n/fa.po +++ b/addons/account_anglo_saxon/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fi.po b/addons/account_anglo_saxon/i18n/fi.po index 4fa17850ec0..e4cf4d3aa50 100644 --- a/addons/account_anglo_saxon/i18n/fi.po +++ b/addons/account_anglo_saxon/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po index 4474f7ccab1..43c5f5bc553 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gl.po b/addons/account_anglo_saxon/i18n/gl.po index ddbbf1b4714..67b83fda20d 100644 --- a/addons/account_anglo_saxon/i18n/gl.po +++ b/addons/account_anglo_saxon/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/gu.po b/addons/account_anglo_saxon/i18n/gu.po index 195f77fff49..004ba36b5c6 100644 --- a/addons/account_anglo_saxon/i18n/gu.po +++ b/addons/account_anglo_saxon/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hi.po b/addons/account_anglo_saxon/i18n/hi.po index c88bbd7ed4f..7c612f67ff6 100644 --- a/addons/account_anglo_saxon/i18n/hi.po +++ b/addons/account_anglo_saxon/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hr.po b/addons/account_anglo_saxon/i18n/hr.po index 5961b02c4d6..26e4a02a1ff 100644 --- a/addons/account_anglo_saxon/i18n/hr.po +++ b/addons/account_anglo_saxon/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/hu.po b/addons/account_anglo_saxon/i18n/hu.po index d77a61fb052..ac9a574e787 100644 --- a/addons/account_anglo_saxon/i18n/hu.po +++ b/addons/account_anglo_saxon/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/id.po b/addons/account_anglo_saxon/i18n/id.po index 65ca35faf5e..602a6627906 100644 --- a/addons/account_anglo_saxon/i18n/id.po +++ b/addons/account_anglo_saxon/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/it.po b/addons/account_anglo_saxon/i18n/it.po index 42d35ada0ca..4abe456e21a 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ja.po b/addons/account_anglo_saxon/i18n/ja.po index 3051649e6ed..afe2a6218bf 100644 --- a/addons/account_anglo_saxon/i18n/ja.po +++ b/addons/account_anglo_saxon/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/lv.po b/addons/account_anglo_saxon/i18n/lv.po index 5758a730285..fa8a1da61bd 100644 --- a/addons/account_anglo_saxon/i18n/lv.po +++ b/addons/account_anglo_saxon/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mk.po b/addons/account_anglo_saxon/i18n/mk.po index ea82da622fd..5028e62a679 100644 --- a/addons/account_anglo_saxon/i18n/mk.po +++ b/addons/account_anglo_saxon/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po index c1e0a7a2cd4..a1afae42688 100644 --- a/addons/account_anglo_saxon/i18n/mn.po +++ b/addons/account_anglo_saxon/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nb.po b/addons/account_anglo_saxon/i18n/nb.po index 1143bf9406b..bc09c717f5e 100644 --- a/addons/account_anglo_saxon/i18n/nb.po +++ b/addons/account_anglo_saxon/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl.po b/addons/account_anglo_saxon/i18n/nl.po index 2f9298d2beb..0cdcb89348a 100644 --- a/addons/account_anglo_saxon/i18n/nl.po +++ b/addons/account_anglo_saxon/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/nl_BE.po b/addons/account_anglo_saxon/i18n/nl_BE.po index 5c79b9d45b4..cf6739109ca 100644 --- a/addons/account_anglo_saxon/i18n/nl_BE.po +++ b/addons/account_anglo_saxon/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/oc.po b/addons/account_anglo_saxon/i18n/oc.po index a00c74efcf4..ead4ec2896d 100644 --- a/addons/account_anglo_saxon/i18n/oc.po +++ b/addons/account_anglo_saxon/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pl.po b/addons/account_anglo_saxon/i18n/pl.po index c4a7d1adb2a..8ad336075bf 100644 --- a/addons/account_anglo_saxon/i18n/pl.po +++ b/addons/account_anglo_saxon/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt.po b/addons/account_anglo_saxon/i18n/pt.po index 1b1f4838382..54d06ab52d0 100644 --- a/addons/account_anglo_saxon/i18n/pt.po +++ b/addons/account_anglo_saxon/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/pt_BR.po b/addons/account_anglo_saxon/i18n/pt_BR.po index 39c51a13807..83656fc498c 100644 --- a/addons/account_anglo_saxon/i18n/pt_BR.po +++ b/addons/account_anglo_saxon/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ro.po b/addons/account_anglo_saxon/i18n/ro.po index 7289150abb9..fb7753b5ab0 100644 --- a/addons/account_anglo_saxon/i18n/ro.po +++ b/addons/account_anglo_saxon/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ru.po b/addons/account_anglo_saxon/i18n/ru.po index 6330e3804a2..439afd31588 100644 --- a/addons/account_anglo_saxon/i18n/ru.po +++ b/addons/account_anglo_saxon/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sl.po b/addons/account_anglo_saxon/i18n/sl.po index fe0e9e30775..4cf05eb88c9 100644 --- a/addons/account_anglo_saxon/i18n/sl.po +++ b/addons/account_anglo_saxon/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sq.po b/addons/account_anglo_saxon/i18n/sq.po index 0087ce32b5d..99615cd17e7 100644 --- a/addons/account_anglo_saxon/i18n/sq.po +++ b/addons/account_anglo_saxon/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sr@latin.po b/addons/account_anglo_saxon/i18n/sr@latin.po index 81bf5d23727..eb7499d388f 100644 --- a/addons/account_anglo_saxon/i18n/sr@latin.po +++ b/addons/account_anglo_saxon/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/sv.po b/addons/account_anglo_saxon/i18n/sv.po index 49fb34bc59a..ee575cb601c 100644 --- a/addons/account_anglo_saxon/i18n/sv.po +++ b/addons/account_anglo_saxon/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/ta.po b/addons/account_anglo_saxon/i18n/ta.po index 1dfb2e70236..2640ebda97e 100644 --- a/addons/account_anglo_saxon/i18n/ta.po +++ b/addons/account_anglo_saxon/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/tr.po b/addons/account_anglo_saxon/i18n/tr.po index 4108243dc6b..cfd96dfc572 100644 --- a/addons/account_anglo_saxon/i18n/tr.po +++ b/addons/account_anglo_saxon/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_CN.po b/addons/account_anglo_saxon/i18n/zh_CN.po index 2e4abe7f56f..cbed105b8aa 100644 --- a/addons/account_anglo_saxon/i18n/zh_CN.po +++ b/addons/account_anglo_saxon/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_anglo_saxon/i18n/zh_TW.po b/addons/account_anglo_saxon/i18n/zh_TW.po index c9128711a19..3345e023bdb 100644 --- a/addons/account_anglo_saxon/i18n/zh_TW.po +++ b/addons/account_anglo_saxon/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category diff --git a/addons/account_asset/i18n/ar.po b/addons/account_asset/i18n/ar.po index 64a7d98248c..57e280d373a 100644 --- a/addons/account_asset/i18n/ar.po +++ b/addons/account_asset/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ca.po b/addons/account_asset/i18n/ca.po index 8817f62b897..a7a7ce1a555 100755 --- a/addons/account_asset/i18n/ca.po +++ b/addons/account_asset/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:31+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po index 0f9ded228ab..c2963b879b1 100644 --- a/addons/account_asset/i18n/cs.po +++ b/addons/account_asset/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/da.po b/addons/account_asset/i18n/da.po index 9ee138f6e94..508208b5c7b 100644 --- a/addons/account_asset/i18n/da.po +++ b/addons/account_asset/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/de.po b/addons/account_asset/i18n/de.po index 9222f901944..13ddfb10572 100755 --- a/addons/account_asset/i18n/de.po +++ b/addons/account_asset/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/en_GB.po b/addons/account_asset/i18n/en_GB.po index e9cda0dee8e..c2d0725fcf8 100644 --- a/addons/account_asset/i18n/en_GB.po +++ b/addons/account_asset/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es.po b/addons/account_asset/i18n/es.po index b23c3484698..4d174434e55 100755 --- a/addons/account_asset/i18n/es.po +++ b/addons/account_asset/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_AR.po b/addons/account_asset/i18n/es_AR.po index c94186cefc3..662b048e037 100644 --- a/addons/account_asset/i18n/es_AR.po +++ b/addons/account_asset/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_CR.po b/addons/account_asset/i18n/es_CR.po index 41c0a800871..a16cdd77ffc 100755 --- a/addons/account_asset/i18n/es_CR.po +++ b/addons/account_asset/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_EC.po b/addons/account_asset/i18n/es_EC.po index fdd6ce29023..227f4ef8d8b 100644 --- a/addons/account_asset/i18n/es_EC.po +++ b/addons/account_asset/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/es_MX.po b/addons/account_asset/i18n/es_MX.po index 9c6f2a74220..407e6dff83e 100644 --- a/addons/account_asset/i18n/es_MX.po +++ b/addons/account_asset/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/et.po b/addons/account_asset/i18n/et.po index 302b3897d3b..bea9376bd38 100644 --- a/addons/account_asset/i18n/et.po +++ b/addons/account_asset/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po index 51d22ac858f..0478536ec87 100644 --- a/addons/account_asset/i18n/fi.po +++ b/addons/account_asset/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/fr.po b/addons/account_asset/i18n/fr.po index 3cdc866cabd..2b60a465850 100755 --- a/addons/account_asset/i18n/fr.po +++ b/addons/account_asset/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/gu.po b/addons/account_asset/i18n/gu.po index 231c0179578..6f8d6240ae1 100644 --- a/addons/account_asset/i18n/gu.po +++ b/addons/account_asset/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index 23e0458ff14..7833ef9b366 100644 --- a/addons/account_asset/i18n/hr.po +++ b/addons/account_asset/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/id.po b/addons/account_asset/i18n/id.po index b95825c4801..f51fa20a356 100644 --- a/addons/account_asset/i18n/id.po +++ b/addons/account_asset/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/it.po b/addons/account_asset/i18n/it.po index 8405b356e22..17d09bbc4d3 100644 --- a/addons/account_asset/i18n/it.po +++ b/addons/account_asset/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ja.po b/addons/account_asset/i18n/ja.po index 3863d328da1..ef69246f80f 100644 --- a/addons/account_asset/i18n/ja.po +++ b/addons/account_asset/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ko.po b/addons/account_asset/i18n/ko.po index 5d3934f663a..4325481ca94 100644 --- a/addons/account_asset/i18n/ko.po +++ b/addons/account_asset/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/lt.po b/addons/account_asset/i18n/lt.po index 32be7146bdc..9fa69ab4aa5 100644 --- a/addons/account_asset/i18n/lt.po +++ b/addons/account_asset/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/mk.po b/addons/account_asset/i18n/mk.po index 368dc74a202..d4348178962 100644 --- a/addons/account_asset/i18n/mk.po +++ b/addons/account_asset/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index 1264182fe7c..4f496089bce 100644 --- a/addons/account_asset/i18n/mn.po +++ b/addons/account_asset/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nb.po b/addons/account_asset/i18n/nb.po index 8afdaf3a664..5e46d07d2df 100644 --- a/addons/account_asset/i18n/nb.po +++ b/addons/account_asset/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl.po b/addons/account_asset/i18n/nl.po index a2b19cfacf5..724858e72b2 100644 --- a/addons/account_asset/i18n/nl.po +++ b/addons/account_asset/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/nl_BE.po b/addons/account_asset/i18n/nl_BE.po index b42ede14058..4b50c068223 100644 --- a/addons/account_asset/i18n/nl_BE.po +++ b/addons/account_asset/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pl.po b/addons/account_asset/i18n/pl.po index 778505f91e3..c1fdbe0e964 100755 --- a/addons/account_asset/i18n/pl.po +++ b/addons/account_asset/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index 45f42eb818a..32cc04d21fa 100755 --- a/addons/account_asset/i18n/pt.po +++ b/addons/account_asset/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/pt_BR.po b/addons/account_asset/i18n/pt_BR.po index ee29c999991..522bf7ad52a 100644 --- a/addons/account_asset/i18n/pt_BR.po +++ b/addons/account_asset/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ro.po b/addons/account_asset/i18n/ro.po index d8070d3a27d..b212765bfc1 100644 --- a/addons/account_asset/i18n/ro.po +++ b/addons/account_asset/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/ru.po b/addons/account_asset/i18n/ru.po index c93973a6778..db05bfe858d 100644 --- a/addons/account_asset/i18n/ru.po +++ b/addons/account_asset/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index 1780f67c6fb..fdbefc030d8 100644 --- a/addons/account_asset/i18n/sl.po +++ b/addons/account_asset/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sr@latin.po b/addons/account_asset/i18n/sr@latin.po index 031cd14187c..fc231a28bb0 100644 --- a/addons/account_asset/i18n/sr@latin.po +++ b/addons/account_asset/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/sv.po b/addons/account_asset/i18n/sv.po index ff70181afd8..cd54fcad0a1 100755 --- a/addons/account_asset/i18n/sv.po +++ b/addons/account_asset/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/tr.po b/addons/account_asset/i18n/tr.po index bebfa76c33d..8caea4e4427 100644 --- a/addons/account_asset/i18n/tr.po +++ b/addons/account_asset/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: account_asset diff --git a/addons/account_asset/i18n/vi.po b/addons/account_asset/i18n/vi.po index 7b100d288d0..e5a3339fd55 100644 --- a/addons/account_asset/i18n/vi.po +++ b/addons/account_asset/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_CN.po b/addons/account_asset/i18n/zh_CN.po index 61fc83331e4..7a9b85c9c68 100644 --- a/addons/account_asset/i18n/zh_CN.po +++ b/addons/account_asset/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_asset/i18n/zh_TW.po b/addons/account_asset/i18n/zh_TW.po index c45496f6bbd..b4bcfe252c9 100644 --- a/addons/account_asset/i18n/zh_TW.po +++ b/addons/account_asset/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_bank_statement_extensions/i18n/ar.po b/addons/account_bank_statement_extensions/i18n/ar.po index c7da09606d9..12af541c61c 100644 --- a/addons/account_bank_statement_extensions/i18n/ar.po +++ b/addons/account_bank_statement_extensions/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/de.po b/addons/account_bank_statement_extensions/i18n/de.po index 9985900c6ff..2b7f25807c6 100644 --- a/addons/account_bank_statement_extensions/i18n/de.po +++ b/addons/account_bank_statement_extensions/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/en_GB.po b/addons/account_bank_statement_extensions/i18n/en_GB.po index f8297199b27..68f2b85c17e 100644 --- a/addons/account_bank_statement_extensions/i18n/en_GB.po +++ b/addons/account_bank_statement_extensions/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es.po b/addons/account_bank_statement_extensions/i18n/es.po index b5c10cb2366..19b59211f5b 100644 --- a/addons/account_bank_statement_extensions/i18n/es.po +++ b/addons/account_bank_statement_extensions/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_CR.po b/addons/account_bank_statement_extensions/i18n/es_CR.po index 1b08de7a012..2dbf5a13645 100644 --- a/addons/account_bank_statement_extensions/i18n/es_CR.po +++ b/addons/account_bank_statement_extensions/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_EC.po b/addons/account_bank_statement_extensions/i18n/es_EC.po index db664229357..b1491de22a3 100644 --- a/addons/account_bank_statement_extensions/i18n/es_EC.po +++ b/addons/account_bank_statement_extensions/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/es_MX.po b/addons/account_bank_statement_extensions/i18n/es_MX.po index 1f11b46971d..ecfa6b5a12d 100644 --- a/addons/account_bank_statement_extensions/i18n/es_MX.po +++ b/addons/account_bank_statement_extensions/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fi.po b/addons/account_bank_statement_extensions/i18n/fi.po index 311c0cf09fe..a5b824c1fc4 100644 --- a/addons/account_bank_statement_extensions/i18n/fi.po +++ b/addons/account_bank_statement_extensions/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/fr.po b/addons/account_bank_statement_extensions/i18n/fr.po index fdc560269e0..e459efef259 100644 --- a/addons/account_bank_statement_extensions/i18n/fr.po +++ b/addons/account_bank_statement_extensions/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/gu.po b/addons/account_bank_statement_extensions/i18n/gu.po index b2163f1f5d2..c9e8740ec22 100644 --- a/addons/account_bank_statement_extensions/i18n/gu.po +++ b/addons/account_bank_statement_extensions/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hr.po b/addons/account_bank_statement_extensions/i18n/hr.po index 07f113f0dcc..d62aa2e713d 100644 --- a/addons/account_bank_statement_extensions/i18n/hr.po +++ b/addons/account_bank_statement_extensions/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/it.po b/addons/account_bank_statement_extensions/i18n/it.po index a5d3afc5ee7..44b07e5784d 100644 --- a/addons/account_bank_statement_extensions/i18n/it.po +++ b/addons/account_bank_statement_extensions/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ja.po b/addons/account_bank_statement_extensions/i18n/ja.po index 8cc8028bb4a..366a03e5f0e 100644 --- a/addons/account_bank_statement_extensions/i18n/ja.po +++ b/addons/account_bank_statement_extensions/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mk.po b/addons/account_bank_statement_extensions/i18n/mk.po index 6dba1649f89..73a895a79af 100644 --- a/addons/account_bank_statement_extensions/i18n/mk.po +++ b/addons/account_bank_statement_extensions/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/mn.po b/addons/account_bank_statement_extensions/i18n/mn.po index b3b59f2cbf2..c410bb06c4f 100644 --- a/addons/account_bank_statement_extensions/i18n/mn.po +++ b/addons/account_bank_statement_extensions/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nb.po b/addons/account_bank_statement_extensions/i18n/nb.po index bd51a2a7f17..7b71d166cd5 100644 --- a/addons/account_bank_statement_extensions/i18n/nb.po +++ b/addons/account_bank_statement_extensions/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/nl.po b/addons/account_bank_statement_extensions/i18n/nl.po index f5f44e1b6e6..a700bf43295 100644 --- a/addons/account_bank_statement_extensions/i18n/nl.po +++ b/addons/account_bank_statement_extensions/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pl.po b/addons/account_bank_statement_extensions/i18n/pl.po index 2a81cbcdbc0..f0e79a9b719 100644 --- a/addons/account_bank_statement_extensions/i18n/pl.po +++ b/addons/account_bank_statement_extensions/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt.po b/addons/account_bank_statement_extensions/i18n/pt.po index dc5b094d66e..cea8c3345e8 100644 --- a/addons/account_bank_statement_extensions/i18n/pt.po +++ b/addons/account_bank_statement_extensions/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/pt_BR.po b/addons/account_bank_statement_extensions/i18n/pt_BR.po index ec5f78f6e29..d48b613ff03 100644 --- a/addons/account_bank_statement_extensions/i18n/pt_BR.po +++ b/addons/account_bank_statement_extensions/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ro.po b/addons/account_bank_statement_extensions/i18n/ro.po index 9279273a1b0..74d3a33e4d7 100644 --- a/addons/account_bank_statement_extensions/i18n/ro.po +++ b/addons/account_bank_statement_extensions/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sl.po b/addons/account_bank_statement_extensions/i18n/sl.po index 34de095a6ac..b83e758ede9 100644 --- a/addons/account_bank_statement_extensions/i18n/sl.po +++ b/addons/account_bank_statement_extensions/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sr@latin.po b/addons/account_bank_statement_extensions/i18n/sr@latin.po index e5f9e848572..6b29ebf1199 100644 --- a/addons/account_bank_statement_extensions/i18n/sr@latin.po +++ b/addons/account_bank_statement_extensions/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/sv.po b/addons/account_bank_statement_extensions/i18n/sv.po index 56d7ef13ed2..b0149704304 100644 --- a/addons/account_bank_statement_extensions/i18n/sv.po +++ b/addons/account_bank_statement_extensions/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/tr.po b/addons/account_bank_statement_extensions/i18n/tr.po index 6578ab21e2f..09274224cbc 100644 --- a/addons/account_bank_statement_extensions/i18n/tr.po +++ b/addons/account_bank_statement_extensions/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: account_bank_statement_extensions diff --git a/addons/account_bank_statement_extensions/i18n/zh_CN.po b/addons/account_bank_statement_extensions/i18n/zh_CN.po index 0d82b9a9c2a..8c473344151 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_CN.po +++ b/addons/account_bank_statement_extensions/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_TW.po b/addons/account_bank_statement_extensions/i18n/zh_TW.po index 12d66887dda..63b66b797b7 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_TW.po +++ b/addons/account_bank_statement_extensions/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_budget/i18n/ar.po b/addons/account_budget/i18n/ar.po index 53a90b3a04c..832e77f479b 100644 --- a/addons/account_budget/i18n/ar.po +++ b/addons/account_budget/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bg.po b/addons/account_budget/i18n/bg.po index 72f8dc11161..965eacbf542 100644 --- a/addons/account_budget/i18n/bg.po +++ b/addons/account_budget/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/bs.po b/addons/account_budget/i18n/bs.po index b5cfc4d1e1d..92700a60820 100644 --- a/addons/account_budget/i18n/bs.po +++ b/addons/account_budget/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ca.po b/addons/account_budget/i18n/ca.po index 4a70f7c2103..3274d08c54d 100644 --- a/addons/account_budget/i18n/ca.po +++ b/addons/account_budget/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/cs.po b/addons/account_budget/i18n/cs.po index 3ec3adf4b24..99e7537d8c3 100644 --- a/addons/account_budget/i18n/cs.po +++ b/addons/account_budget/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/da.po b/addons/account_budget/i18n/da.po index 89c0a684930..ad6c675e19c 100644 --- a/addons/account_budget/i18n/da.po +++ b/addons/account_budget/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/de.po b/addons/account_budget/i18n/de.po index a0948542d14..6e59b458f17 100644 --- a/addons/account_budget/i18n/de.po +++ b/addons/account_budget/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/el.po b/addons/account_budget/i18n/el.po index f1189457595..8e03299c98d 100644 --- a/addons/account_budget/i18n/el.po +++ b/addons/account_budget/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/en_GB.po b/addons/account_budget/i18n/en_GB.po index 1165ad408bf..ca15ef31e0c 100644 --- a/addons/account_budget/i18n/en_GB.po +++ b/addons/account_budget/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es.po b/addons/account_budget/i18n/es.po index 0b9884bbbbf..16e630b77c4 100644 --- a/addons/account_budget/i18n/es.po +++ b/addons/account_budget/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_AR.po b/addons/account_budget/i18n/es_AR.po index 8cc0b696f5c..f0a0309ab3f 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_CR.po b/addons/account_budget/i18n/es_CR.po index 36b123a7624..c67b692ef5c 100644 --- a/addons/account_budget/i18n/es_CR.po +++ b/addons/account_budget/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po index 554cc0d050f..6e20d0fc6e1 100644 --- a/addons/account_budget/i18n/es_EC.po +++ b/addons/account_budget/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_MX.po b/addons/account_budget/i18n/es_MX.po index 73ab5b97f21..1785d776903 100644 --- a/addons/account_budget/i18n/es_MX.po +++ b/addons/account_budget/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/es_PY.po b/addons/account_budget/i18n/es_PY.po index 36deb403c20..346c245fbb8 100644 --- a/addons/account_budget/i18n/es_PY.po +++ b/addons/account_budget/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/et.po b/addons/account_budget/i18n/et.po index b2ff716272c..d7e1cd08101 100644 --- a/addons/account_budget/i18n/et.po +++ b/addons/account_budget/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fa.po b/addons/account_budget/i18n/fa.po index e3e0c35060e..fe1f48b742e 100644 --- a/addons/account_budget/i18n/fa.po +++ b/addons/account_budget/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fi.po b/addons/account_budget/i18n/fi.po index f066af0cfa0..65d262750c7 100644 --- a/addons/account_budget/i18n/fi.po +++ b/addons/account_budget/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po index b8eab24e4a0..1d70bf32e35 100644 --- a/addons/account_budget/i18n/fr.po +++ b/addons/account_budget/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gl.po b/addons/account_budget/i18n/gl.po index c77e26cc91a..b60794bbd14 100644 --- a/addons/account_budget/i18n/gl.po +++ b/addons/account_budget/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/gu.po b/addons/account_budget/i18n/gu.po index 4ec23bc46b4..bbddaf3195c 100644 --- a/addons/account_budget/i18n/gu.po +++ b/addons/account_budget/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/he.po b/addons/account_budget/i18n/he.po index c9583dab477..6c8c3c70a4f 100644 --- a/addons/account_budget/i18n/he.po +++ b/addons/account_budget/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hi.po b/addons/account_budget/i18n/hi.po index 835958659bb..81695827cce 100644 --- a/addons/account_budget/i18n/hi.po +++ b/addons/account_budget/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hr.po b/addons/account_budget/i18n/hr.po index ea256533eb1..2a41b2af275 100644 --- a/addons/account_budget/i18n/hr.po +++ b/addons/account_budget/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po index e03e1f4a19c..0b28707ad7b 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po index bb3dc9bfc8b..c8a899951b6 100644 --- a/addons/account_budget/i18n/id.po +++ b/addons/account_budget/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/it.po b/addons/account_budget/i18n/it.po index c3167dceb72..78040fb19af 100644 --- a/addons/account_budget/i18n/it.po +++ b/addons/account_budget/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ja.po b/addons/account_budget/i18n/ja.po index b09b849ba31..7f4b68aecbe 100644 --- a/addons/account_budget/i18n/ja.po +++ b/addons/account_budget/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ko.po b/addons/account_budget/i18n/ko.po index 693cc3fabad..6b74c2a200f 100644 --- a/addons/account_budget/i18n/ko.po +++ b/addons/account_budget/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lo.po b/addons/account_budget/i18n/lo.po index 1826b866213..eddcc0946e8 100644 --- a/addons/account_budget/i18n/lo.po +++ b/addons/account_budget/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lt.po b/addons/account_budget/i18n/lt.po index 2d51bc8f461..8f0b298c53e 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/lv.po b/addons/account_budget/i18n/lv.po index 972d6b53833..8e092aac0b6 100644 --- a/addons/account_budget/i18n/lv.po +++ b/addons/account_budget/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mk.po b/addons/account_budget/i18n/mk.po index ed30b553747..051f07a9b86 100644 --- a/addons/account_budget/i18n/mk.po +++ b/addons/account_budget/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po index 429dce85442..3bc6b194a8d 100644 --- a/addons/account_budget/i18n/mn.po +++ b/addons/account_budget/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:23+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nb.po b/addons/account_budget/i18n/nb.po index 32d47dc53b9..56896b2dffb 100644 --- a/addons/account_budget/i18n/nb.po +++ b/addons/account_budget/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl.po b/addons/account_budget/i18n/nl.po index 361ac1a3360..45115869d69 100644 --- a/addons/account_budget/i18n/nl.po +++ b/addons/account_budget/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index 3521eea54c2..a5e5ab43e9e 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/oc.po b/addons/account_budget/i18n/oc.po index d0ab80e108b..4e28e366699 100644 --- a/addons/account_budget/i18n/oc.po +++ b/addons/account_budget/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pl.po b/addons/account_budget/i18n/pl.po index 227b8d2a968..71003b187ff 100644 --- a/addons/account_budget/i18n/pl.po +++ b/addons/account_budget/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po index 77500495e5f..bdba10d6d72 100644 --- a/addons/account_budget/i18n/pt.po +++ b/addons/account_budget/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/pt_BR.po b/addons/account_budget/i18n/pt_BR.po index a9ac122b95e..300d7964e87 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po index 1fbc4ef07b8..0361a9e0e34 100644 --- a/addons/account_budget/i18n/ro.po +++ b/addons/account_budget/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/ru.po b/addons/account_budget/i18n/ru.po index 6720c11f97f..317a998ac27 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index b62dc99aa48..2281334c1ac 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sq.po b/addons/account_budget/i18n/sq.po index 91e475dce43..42131a00512 100644 --- a/addons/account_budget/i18n/sq.po +++ b/addons/account_budget/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr.po b/addons/account_budget/i18n/sr.po index 612ef2c45d9..5c7e585016f 100644 --- a/addons/account_budget/i18n/sr.po +++ b/addons/account_budget/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sr@latin.po b/addons/account_budget/i18n/sr@latin.po index 2698846c4cb..6388e8279e5 100644 --- a/addons/account_budget/i18n/sr@latin.po +++ b/addons/account_budget/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/sv.po b/addons/account_budget/i18n/sv.po index 2da52689519..740236a5356 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tlh.po b/addons/account_budget/i18n/tlh.po index f797d6bac68..9d83c102cde 100644 --- a/addons/account_budget/i18n/tlh.po +++ b/addons/account_budget/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/tr.po b/addons/account_budget/i18n/tr.po index 208c018ab3a..50967361bf5 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: account_budget diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po index a5b7bbbc34c..0de0a68864a 100644 --- a/addons/account_budget/i18n/uk.po +++ b/addons/account_budget/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/vi.po b/addons/account_budget/i18n/vi.po index 5bfacf3b997..ee22187ec70 100644 --- a/addons/account_budget/i18n/vi.po +++ b/addons/account_budget/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_CN.po b/addons/account_budget/i18n/zh_CN.po index ec4e53a6eed..41f2fe54d90 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/zh_TW.po b/addons/account_budget/i18n/zh_TW.po index 450a6aebcc7..3e072ed6d56 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_cancel/i18n/ar.po b/addons/account_cancel/i18n/ar.po index 2750c2b514a..28df5232a82 100644 --- a/addons/account_cancel/i18n/ar.po +++ b/addons/account_cancel/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bg.po b/addons/account_cancel/i18n/bg.po index 61e23d195b8..c201a133efa 100644 --- a/addons/account_cancel/i18n/bg.po +++ b/addons/account_cancel/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bn.po b/addons/account_cancel/i18n/bn.po index ad604e28cb8..165e52c9c35 100644 --- a/addons/account_cancel/i18n/bn.po +++ b/addons/account_cancel/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/br.po b/addons/account_cancel/i18n/br.po index 8b66b96f91e..6561a5f1173 100644 --- a/addons/account_cancel/i18n/br.po +++ b/addons/account_cancel/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/bs.po b/addons/account_cancel/i18n/bs.po index dc2a3680104..db3c891b143 100644 --- a/addons/account_cancel/i18n/bs.po +++ b/addons/account_cancel/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ca.po b/addons/account_cancel/i18n/ca.po index 591b71eaf32..147e8fd688b 100644 --- a/addons/account_cancel/i18n/ca.po +++ b/addons/account_cancel/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/cs.po b/addons/account_cancel/i18n/cs.po index f68b7557f31..f15493e4487 100644 --- a/addons/account_cancel/i18n/cs.po +++ b/addons/account_cancel/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/da.po b/addons/account_cancel/i18n/da.po index bab790bedd0..f76110360ae 100644 --- a/addons/account_cancel/i18n/da.po +++ b/addons/account_cancel/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/de.po b/addons/account_cancel/i18n/de.po index 6046c103360..e1630b269ab 100644 --- a/addons/account_cancel/i18n/de.po +++ b/addons/account_cancel/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/el.po b/addons/account_cancel/i18n/el.po index d5da43ac294..9a99911fe6d 100644 --- a/addons/account_cancel/i18n/el.po +++ b/addons/account_cancel/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/en_GB.po b/addons/account_cancel/i18n/en_GB.po index 2a0d6907c25..9dbfb851c32 100644 --- a/addons/account_cancel/i18n/en_GB.po +++ b/addons/account_cancel/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es.po b/addons/account_cancel/i18n/es.po index 6abb83c550a..643aafa3fe8 100644 --- a/addons/account_cancel/i18n/es.po +++ b/addons/account_cancel/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CL.po b/addons/account_cancel/i18n/es_CL.po index e2f93aeeab3..1d9f3294550 100644 --- a/addons/account_cancel/i18n/es_CL.po +++ b/addons/account_cancel/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_CR.po b/addons/account_cancel/i18n/es_CR.po index 8c16282edac..93c046efd02 100644 --- a/addons/account_cancel/i18n/es_CR.po +++ b/addons/account_cancel/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po index df39935d1d0..28f812e94cf 100644 --- a/addons/account_cancel/i18n/es_EC.po +++ b/addons/account_cancel/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_MX.po b/addons/account_cancel/i18n/es_MX.po index e0f8e0ad844..86ebfc4ae24 100644 --- a/addons/account_cancel/i18n/es_MX.po +++ b/addons/account_cancel/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/es_PY.po b/addons/account_cancel/i18n/es_PY.po index 91fa3f038d9..d55498f9f8e 100644 --- a/addons/account_cancel/i18n/es_PY.po +++ b/addons/account_cancel/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fa.po b/addons/account_cancel/i18n/fa.po index a8112ef3a6a..27be13b2685 100644 --- a/addons/account_cancel/i18n/fa.po +++ b/addons/account_cancel/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fi.po b/addons/account_cancel/i18n/fi.po index ac4525fcdec..8172b9d5966 100644 --- a/addons/account_cancel/i18n/fi.po +++ b/addons/account_cancel/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/fr.po b/addons/account_cancel/i18n/fr.po index 93c06d7ff8d..3bac853120e 100644 --- a/addons/account_cancel/i18n/fr.po +++ b/addons/account_cancel/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gl.po b/addons/account_cancel/i18n/gl.po index 1efc5558eb9..1600d9c9419 100644 --- a/addons/account_cancel/i18n/gl.po +++ b/addons/account_cancel/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/gu.po b/addons/account_cancel/i18n/gu.po index ae94abdf467..466a87c861d 100644 --- a/addons/account_cancel/i18n/gu.po +++ b/addons/account_cancel/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hi.po b/addons/account_cancel/i18n/hi.po index d98eb732037..0a0b05d917c 100644 --- a/addons/account_cancel/i18n/hi.po +++ b/addons/account_cancel/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hr.po b/addons/account_cancel/i18n/hr.po index e69fbdb1290..a285b8a48ab 100644 --- a/addons/account_cancel/i18n/hr.po +++ b/addons/account_cancel/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/hu.po b/addons/account_cancel/i18n/hu.po index bdb71840baa..40258cfcc50 100644 --- a/addons/account_cancel/i18n/hu.po +++ b/addons/account_cancel/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/id.po b/addons/account_cancel/i18n/id.po index f8416c9e0d1..9a65c5cd389 100644 --- a/addons/account_cancel/i18n/id.po +++ b/addons/account_cancel/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/it.po b/addons/account_cancel/i18n/it.po index 13635cdcb9e..914df59f7c7 100644 --- a/addons/account_cancel/i18n/it.po +++ b/addons/account_cancel/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ja.po b/addons/account_cancel/i18n/ja.po index 2ba33bbf230..9e509644718 100644 --- a/addons/account_cancel/i18n/ja.po +++ b/addons/account_cancel/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/kk.po b/addons/account_cancel/i18n/kk.po index 7dad8dd3f20..911e1a37bac 100644 --- a/addons/account_cancel/i18n/kk.po +++ b/addons/account_cancel/i18n/kk.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lo.po b/addons/account_cancel/i18n/lo.po index 615888e699e..a52db718ff3 100644 --- a/addons/account_cancel/i18n/lo.po +++ b/addons/account_cancel/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lt.po b/addons/account_cancel/i18n/lt.po index c29471cab64..b081d88d9ff 100644 --- a/addons/account_cancel/i18n/lt.po +++ b/addons/account_cancel/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/lv.po b/addons/account_cancel/i18n/lv.po index 8ce9229514f..7ab5e180b71 100644 --- a/addons/account_cancel/i18n/lv.po +++ b/addons/account_cancel/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mk.po b/addons/account_cancel/i18n/mk.po index 4063eb62fd8..6853d12cfa8 100644 --- a/addons/account_cancel/i18n/mk.po +++ b/addons/account_cancel/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/mn.po b/addons/account_cancel/i18n/mn.po index 786180cbd58..de802179430 100644 --- a/addons/account_cancel/i18n/mn.po +++ b/addons/account_cancel/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nb.po b/addons/account_cancel/i18n/nb.po index 7291f2bbed9..6323c553542 100644 --- a/addons/account_cancel/i18n/nb.po +++ b/addons/account_cancel/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl.po b/addons/account_cancel/i18n/nl.po index 5badc72f9d4..b1d84860f70 100644 --- a/addons/account_cancel/i18n/nl.po +++ b/addons/account_cancel/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/nl_BE.po b/addons/account_cancel/i18n/nl_BE.po index 93050513883..c03a924e2e0 100644 --- a/addons/account_cancel/i18n/nl_BE.po +++ b/addons/account_cancel/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/oc.po b/addons/account_cancel/i18n/oc.po index 291b2167a8d..9df36e23d49 100644 --- a/addons/account_cancel/i18n/oc.po +++ b/addons/account_cancel/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pl.po b/addons/account_cancel/i18n/pl.po index 2336500643e..2e5a427ca76 100644 --- a/addons/account_cancel/i18n/pl.po +++ b/addons/account_cancel/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt.po b/addons/account_cancel/i18n/pt.po index 07a1efe63a1..10831aa209c 100644 --- a/addons/account_cancel/i18n/pt.po +++ b/addons/account_cancel/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/pt_BR.po b/addons/account_cancel/i18n/pt_BR.po index 9334c403942..2e0bfd3b4c5 100644 --- a/addons/account_cancel/i18n/pt_BR.po +++ b/addons/account_cancel/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ro.po b/addons/account_cancel/i18n/ro.po index 6e0a2e8b7bf..fe5dce789df 100644 --- a/addons/account_cancel/i18n/ro.po +++ b/addons/account_cancel/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ru.po b/addons/account_cancel/i18n/ru.po index 68a47cd91a9..309b1bf7e51 100644 --- a/addons/account_cancel/i18n/ru.po +++ b/addons/account_cancel/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sl.po b/addons/account_cancel/i18n/sl.po index a44f2d1a4fe..4b887ba0e32 100644 --- a/addons/account_cancel/i18n/sl.po +++ b/addons/account_cancel/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sq.po b/addons/account_cancel/i18n/sq.po index 9ab7af43238..db6d2b3e169 100644 --- a/addons/account_cancel/i18n/sq.po +++ b/addons/account_cancel/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr.po b/addons/account_cancel/i18n/sr.po index b6faa46989d..c04d026e4f1 100644 --- a/addons/account_cancel/i18n/sr.po +++ b/addons/account_cancel/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sr@latin.po b/addons/account_cancel/i18n/sr@latin.po index e4829f3f7e2..d30342aa5ce 100644 --- a/addons/account_cancel/i18n/sr@latin.po +++ b/addons/account_cancel/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/sv.po b/addons/account_cancel/i18n/sv.po index 2a74efd14b7..4f7c06d884b 100644 --- a/addons/account_cancel/i18n/sv.po +++ b/addons/account_cancel/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/ta.po b/addons/account_cancel/i18n/ta.po index 3f6effb2633..26b1d270cbb 100644 --- a/addons/account_cancel/i18n/ta.po +++ b/addons/account_cancel/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/tr.po b/addons/account_cancel/i18n/tr.po index ab45a2b2d33..3f4a80bf5f9 100644 --- a/addons/account_cancel/i18n/tr.po +++ b/addons/account_cancel/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/vi.po b/addons/account_cancel/i18n/vi.po index ac60b955161..3b17c04e91e 100644 --- a/addons/account_cancel/i18n/vi.po +++ b/addons/account_cancel/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_CN.po b/addons/account_cancel/i18n/zh_CN.po index 497a61e64ba..b532092f25d 100644 --- a/addons/account_cancel/i18n/zh_CN.po +++ b/addons/account_cancel/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/zh_TW.po b/addons/account_cancel/i18n/zh_TW.po index 67609eb044b..4a83ef8cc4c 100644 --- a/addons/account_cancel/i18n/zh_TW.po +++ b/addons/account_cancel/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_chart/i18n/ar.po b/addons/account_chart/i18n/ar.po index 5fa9215547e..65e0b76fb41 100644 --- a/addons/account_chart/i18n/ar.po +++ b/addons/account_chart/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bg.po b/addons/account_chart/i18n/bg.po index 03de25d645a..09e043be934 100644 --- a/addons/account_chart/i18n/bg.po +++ b/addons/account_chart/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/bs.po b/addons/account_chart/i18n/bs.po index bb382a00a1f..7ac60669f75 100644 --- a/addons/account_chart/i18n/bs.po +++ b/addons/account_chart/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po index 74ca4ee12be..3833df4f9eb 100644 --- a/addons/account_chart/i18n/ca.po +++ b/addons/account_chart/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/cs.po b/addons/account_chart/i18n/cs.po index e45003e91ac..c26aa1fde38 100644 --- a/addons/account_chart/i18n/cs.po +++ b/addons/account_chart/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/da.po b/addons/account_chart/i18n/da.po index d874a974046..67211e2c6d5 100644 --- a/addons/account_chart/i18n/da.po +++ b/addons/account_chart/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/de.po b/addons/account_chart/i18n/de.po index 5d9410bcec3..175259d735d 100644 --- a/addons/account_chart/i18n/de.po +++ b/addons/account_chart/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/el.po b/addons/account_chart/i18n/el.po index 0f8ce0ea907..b901893ba0b 100644 --- a/addons/account_chart/i18n/el.po +++ b/addons/account_chart/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/en_GB.po b/addons/account_chart/i18n/en_GB.po index e4174545d7c..7cf3ab7bc15 100644 --- a/addons/account_chart/i18n/en_GB.po +++ b/addons/account_chart/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es.po b/addons/account_chart/i18n/es.po index 43e47077bb9..7ea6469121d 100644 --- a/addons/account_chart/i18n/es.po +++ b/addons/account_chart/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_AR.po b/addons/account_chart/i18n/es_AR.po index 96392ab5d19..a4c4b25ddbd 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CL.po b/addons/account_chart/i18n/es_CL.po index 3f5d78c3c52..462b6de9e8b 100644 --- a/addons/account_chart/i18n/es_CL.po +++ b/addons/account_chart/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_CR.po b/addons/account_chart/i18n/es_CR.po index 1a0c505377e..126f60a3947 100644 --- a/addons/account_chart/i18n/es_CR.po +++ b/addons/account_chart/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po index fee0684846b..28ebd48ff1a 100644 --- a/addons/account_chart/i18n/es_EC.po +++ b/addons/account_chart/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_MX.po b/addons/account_chart/i18n/es_MX.po index a2e7f0a1c47..745ad622f10 100644 --- a/addons/account_chart/i18n/es_MX.po +++ b/addons/account_chart/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/es_PY.po b/addons/account_chart/i18n/es_PY.po index ceff82442e0..5643ea882e2 100644 --- a/addons/account_chart/i18n/es_PY.po +++ b/addons/account_chart/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/et.po b/addons/account_chart/i18n/et.po index a2e71b0efab..69a40f6c76b 100644 --- a/addons/account_chart/i18n/et.po +++ b/addons/account_chart/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/eu.po b/addons/account_chart/i18n/eu.po index 29c286caeba..5ff98e819b5 100644 --- a/addons/account_chart/i18n/eu.po +++ b/addons/account_chart/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fa.po b/addons/account_chart/i18n/fa.po index 0bf3edb412f..7c68ed89a56 100644 --- a/addons/account_chart/i18n/fa.po +++ b/addons/account_chart/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fi.po b/addons/account_chart/i18n/fi.po index 162cdecefa3..d1c932deba5 100644 --- a/addons/account_chart/i18n/fi.po +++ b/addons/account_chart/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/fr.po b/addons/account_chart/i18n/fr.po index d0489306d57..02c23e2c9ae 100644 --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gl.po b/addons/account_chart/i18n/gl.po index aa4b9c5e823..7ec2326cfb4 100644 --- a/addons/account_chart/i18n/gl.po +++ b/addons/account_chart/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/gu.po b/addons/account_chart/i18n/gu.po index a5946a03841..c1a77821732 100644 --- a/addons/account_chart/i18n/gu.po +++ b/addons/account_chart/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hi.po b/addons/account_chart/i18n/hi.po index b781f2c3297..3e731a1eb46 100644 --- a/addons/account_chart/i18n/hi.po +++ b/addons/account_chart/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hr.po b/addons/account_chart/i18n/hr.po index fd4e133eca7..7ae3d793482 100644 --- a/addons/account_chart/i18n/hr.po +++ b/addons/account_chart/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/hu.po b/addons/account_chart/i18n/hu.po index 953f10b061f..1390ad8b045 100644 --- a/addons/account_chart/i18n/hu.po +++ b/addons/account_chart/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/id.po b/addons/account_chart/i18n/id.po index d778fe366ae..d145563be97 100644 --- a/addons/account_chart/i18n/id.po +++ b/addons/account_chart/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/it.po b/addons/account_chart/i18n/it.po index 6bc4264d02f..7da2cf28a57 100644 --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ja.po b/addons/account_chart/i18n/ja.po index 7103fb46b22..5653bb726eb 100644 --- a/addons/account_chart/i18n/ja.po +++ b/addons/account_chart/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ko.po b/addons/account_chart/i18n/ko.po index f86571d927d..7ad819b5a01 100644 --- a/addons/account_chart/i18n/ko.po +++ b/addons/account_chart/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lo.po b/addons/account_chart/i18n/lo.po index 532c82e102c..26bf46580df 100644 --- a/addons/account_chart/i18n/lo.po +++ b/addons/account_chart/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lt.po b/addons/account_chart/i18n/lt.po index ce255206cbb..531af9eb6a2 100644 --- a/addons/account_chart/i18n/lt.po +++ b/addons/account_chart/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/lv.po b/addons/account_chart/i18n/lv.po index 6eb815cb1a2..362ffe5ced7 100644 --- a/addons/account_chart/i18n/lv.po +++ b/addons/account_chart/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mk.po b/addons/account_chart/i18n/mk.po index 3e534fe0096..0509efd3ea9 100644 --- a/addons/account_chart/i18n/mk.po +++ b/addons/account_chart/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/mn.po b/addons/account_chart/i18n/mn.po index 96532ba715c..21a84df2d6c 100644 --- a/addons/account_chart/i18n/mn.po +++ b/addons/account_chart/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nb.po b/addons/account_chart/i18n/nb.po index d056805030f..9c18c882136 100644 --- a/addons/account_chart/i18n/nb.po +++ b/addons/account_chart/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl.po b/addons/account_chart/i18n/nl.po index 820b7bc6072..5b0f44047ab 100644 --- a/addons/account_chart/i18n/nl.po +++ b/addons/account_chart/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/nl_BE.po b/addons/account_chart/i18n/nl_BE.po index faae90b5724..40add96110b 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/oc.po b/addons/account_chart/i18n/oc.po index 51bc11df971..e27a675b4ca 100644 --- a/addons/account_chart/i18n/oc.po +++ b/addons/account_chart/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pl.po b/addons/account_chart/i18n/pl.po index 0f235b241cd..50b932be105 100644 --- a/addons/account_chart/i18n/pl.po +++ b/addons/account_chart/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt.po b/addons/account_chart/i18n/pt.po index de777dae9f5..16c991c3320 100644 --- a/addons/account_chart/i18n/pt.po +++ b/addons/account_chart/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/pt_BR.po b/addons/account_chart/i18n/pt_BR.po index 1f9c005a1da..1fd42b66a7f 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po index 99a78da8409..12b2a183463 100644 --- a/addons/account_chart/i18n/ro.po +++ b/addons/account_chart/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ru.po b/addons/account_chart/i18n/ru.po index da48f9f603c..3591d1cc528 100644 --- a/addons/account_chart/i18n/ru.po +++ b/addons/account_chart/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sk.po b/addons/account_chart/i18n/sk.po index f37086c21e9..22ff09fa0c5 100644 --- a/addons/account_chart/i18n/sk.po +++ b/addons/account_chart/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sl.po b/addons/account_chart/i18n/sl.po index df0e113dcd6..b24dd9819e0 100644 --- a/addons/account_chart/i18n/sl.po +++ b/addons/account_chart/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sq.po b/addons/account_chart/i18n/sq.po index f7265a317a1..cd0cda69ded 100644 --- a/addons/account_chart/i18n/sq.po +++ b/addons/account_chart/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr.po b/addons/account_chart/i18n/sr.po index 39f0bdb3962..06a903b5191 100644 --- a/addons/account_chart/i18n/sr.po +++ b/addons/account_chart/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sr@latin.po b/addons/account_chart/i18n/sr@latin.po index 291e870e6e2..5d276ad7f4d 100644 --- a/addons/account_chart/i18n/sr@latin.po +++ b/addons/account_chart/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/sv.po b/addons/account_chart/i18n/sv.po index 1886b81a115..072e5b9b73c 100644 --- a/addons/account_chart/i18n/sv.po +++ b/addons/account_chart/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/ta.po b/addons/account_chart/i18n/ta.po index db66424e06c..cdced43e244 100644 --- a/addons/account_chart/i18n/ta.po +++ b/addons/account_chart/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/th.po b/addons/account_chart/i18n/th.po index 4bc9813aaeb..17b06dddb4e 100644 --- a/addons/account_chart/i18n/th.po +++ b/addons/account_chart/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/tr.po b/addons/account_chart/i18n/tr.po index 76acf55ceab..e421a439ba1 100644 --- a/addons/account_chart/i18n/tr.po +++ b/addons/account_chart/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/uk.po b/addons/account_chart/i18n/uk.po index 52af379c446..da17216083f 100644 --- a/addons/account_chart/i18n/uk.po +++ b/addons/account_chart/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/vi.po b/addons/account_chart/i18n/vi.po index fc0477490aa..333cffac914 100644 --- a/addons/account_chart/i18n/vi.po +++ b/addons/account_chart/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_CN.po b/addons/account_chart/i18n/zh_CN.po index 1d495b67c15..d6da6739d6b 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_chart/i18n/zh_TW.po b/addons/account_chart/i18n/zh_TW.po index 03a35e77a7c..77da100d56f 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:32+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information diff --git a/addons/account_check_writing/i18n/ar.po b/addons/account_check_writing/i18n/ar.po index a7204a6fac3..5b5227b3f03 100644 --- a/addons/account_check_writing/i18n/ar.po +++ b/addons/account_check_writing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/cs.po b/addons/account_check_writing/i18n/cs.po index 5c431a216da..234242ac9ee 100644 --- a/addons/account_check_writing/i18n/cs.po +++ b/addons/account_check_writing/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/de.po b/addons/account_check_writing/i18n/de.po index 3c8edebd749..ececdc8ba1c 100644 --- a/addons/account_check_writing/i18n/de.po +++ b/addons/account_check_writing/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/en_GB.po b/addons/account_check_writing/i18n/en_GB.po index 9b6731f1815..2c76226df61 100644 --- a/addons/account_check_writing/i18n/en_GB.po +++ b/addons/account_check_writing/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es.po b/addons/account_check_writing/i18n/es.po index da19fb9212f..25ef3be65b0 100644 --- a/addons/account_check_writing/i18n/es.po +++ b/addons/account_check_writing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_CR.po b/addons/account_check_writing/i18n/es_CR.po index 82d7c4874d1..c4c7f337b8a 100644 --- a/addons/account_check_writing/i18n/es_CR.po +++ b/addons/account_check_writing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_EC.po b/addons/account_check_writing/i18n/es_EC.po index 445b99afd53..eccfdc49450 100644 --- a/addons/account_check_writing/i18n/es_EC.po +++ b/addons/account_check_writing/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/es_MX.po b/addons/account_check_writing/i18n/es_MX.po index 6974d18d69d..96035e199ee 100644 --- a/addons/account_check_writing/i18n/es_MX.po +++ b/addons/account_check_writing/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fi.po b/addons/account_check_writing/i18n/fi.po index adca6df1f70..16705edc86e 100644 --- a/addons/account_check_writing/i18n/fi.po +++ b/addons/account_check_writing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/fr.po b/addons/account_check_writing/i18n/fr.po index 05b11a086ef..a0f0d2ee214 100644 --- a/addons/account_check_writing/i18n/fr.po +++ b/addons/account_check_writing/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/gu.po b/addons/account_check_writing/i18n/gu.po index 4eeaa628762..d048c62f85c 100644 --- a/addons/account_check_writing/i18n/gu.po +++ b/addons/account_check_writing/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hr.po b/addons/account_check_writing/i18n/hr.po index 3a15fbb0d23..ee4bdc3c67a 100644 --- a/addons/account_check_writing/i18n/hr.po +++ b/addons/account_check_writing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ja.po b/addons/account_check_writing/i18n/ja.po index e1ec6b200d3..ec26f00b759 100644 --- a/addons/account_check_writing/i18n/ja.po +++ b/addons/account_check_writing/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/lt.po b/addons/account_check_writing/i18n/lt.po index 5a7f15a3ec4..b86b1e66444 100644 --- a/addons/account_check_writing/i18n/lt.po +++ b/addons/account_check_writing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mk.po b/addons/account_check_writing/i18n/mk.po index 0b9a8aa6e2f..166306044ec 100644 --- a/addons/account_check_writing/i18n/mk.po +++ b/addons/account_check_writing/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/mn.po b/addons/account_check_writing/i18n/mn.po index c03c4ecd993..bb6ae3747e2 100644 --- a/addons/account_check_writing/i18n/mn.po +++ b/addons/account_check_writing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nb.po b/addons/account_check_writing/i18n/nb.po index e43f0592f63..770c895949a 100644 --- a/addons/account_check_writing/i18n/nb.po +++ b/addons/account_check_writing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/nl.po b/addons/account_check_writing/i18n/nl.po index 69653151dfa..1549ea37bc3 100644 --- a/addons/account_check_writing/i18n/nl.po +++ b/addons/account_check_writing/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:29+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pl.po b/addons/account_check_writing/i18n/pl.po index c82d78cc53c..6905bb79458 100644 --- a/addons/account_check_writing/i18n/pl.po +++ b/addons/account_check_writing/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt.po b/addons/account_check_writing/i18n/pt.po index 8f58ba2476b..5530f7059a0 100644 --- a/addons/account_check_writing/i18n/pt.po +++ b/addons/account_check_writing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/pt_BR.po b/addons/account_check_writing/i18n/pt_BR.po index dd41b880587..73cca531152 100644 --- a/addons/account_check_writing/i18n/pt_BR.po +++ b/addons/account_check_writing/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ro.po b/addons/account_check_writing/i18n/ro.po index 6877d85a468..ddd63c949e1 100644 --- a/addons/account_check_writing/i18n/ro.po +++ b/addons/account_check_writing/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/ru.po b/addons/account_check_writing/i18n/ru.po index 68e14e02f6f..9723df6670d 100644 --- a/addons/account_check_writing/i18n/ru.po +++ b/addons/account_check_writing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sl.po b/addons/account_check_writing/i18n/sl.po index 8fd8c935413..714b93e4080 100644 --- a/addons/account_check_writing/i18n/sl.po +++ b/addons/account_check_writing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sr@latin.po b/addons/account_check_writing/i18n/sr@latin.po index 78de5734496..05bf50ba9df 100644 --- a/addons/account_check_writing/i18n/sr@latin.po +++ b/addons/account_check_writing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/sv.po b/addons/account_check_writing/i18n/sv.po index 0f6895df105..a01894a6750 100644 --- a/addons/account_check_writing/i18n/sv.po +++ b/addons/account_check_writing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/tr.po b/addons/account_check_writing/i18n/tr.po index afaacc17789..7211098985a 100644 --- a/addons/account_check_writing/i18n/tr.po +++ b/addons/account_check_writing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: account_check_writing diff --git a/addons/account_check_writing/i18n/zh_CN.po b/addons/account_check_writing/i18n/zh_CN.po index d68eb705aa2..f89f46bd49e 100644 --- a/addons/account_check_writing/i18n/zh_CN.po +++ b/addons/account_check_writing/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/zh_TW.po b/addons/account_check_writing/i18n/zh_TW.po index 56811768a50..fd03303fbc6 100644 --- a/addons/account_check_writing/i18n/zh_TW.po +++ b/addons/account_check_writing/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_followup/i18n/ar.po b/addons/account_followup/i18n/ar.po index 8aba6593c29..8eb1b214587 100644 --- a/addons/account_followup/i18n/ar.po +++ b/addons/account_followup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po index 10b3c5df51f..ff2c219c049 100644 --- a/addons/account_followup/i18n/bg.po +++ b/addons/account_followup/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po index 2be87265a99..9f1e135163f 100644 --- a/addons/account_followup/i18n/bs.po +++ b/addons/account_followup/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po index b464ff53347..b5ad77d3eb1 100644 --- a/addons/account_followup/i18n/ca.po +++ b/addons/account_followup/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po index 4e012c3995b..2b75352af8f 100644 --- a/addons/account_followup/i18n/cs.po +++ b/addons/account_followup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/da.po b/addons/account_followup/i18n/da.po index c83bc81a8b6..7d76bd9d3b2 100644 --- a/addons/account_followup/i18n/da.po +++ b/addons/account_followup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po index c36b5a8e9ea..ad29d9b66cc 100644 --- a/addons/account_followup/i18n/de.po +++ b/addons/account_followup/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po index a42c286556b..704d6b62f50 100644 --- a/addons/account_followup/i18n/el.po +++ b/addons/account_followup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/en_GB.po b/addons/account_followup/i18n/en_GB.po index a2466035eb8..8ca7d7b8cf4 100644 --- a/addons/account_followup/i18n/en_GB.po +++ b/addons/account_followup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po index 5f55741bcad..1b564596a4b 100644 --- a/addons/account_followup/i18n/es.po +++ b/addons/account_followup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index 6501c63519d..8934c8d04b9 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_CR.po b/addons/account_followup/i18n/es_CR.po index 195a340ab22..1385965ae39 100644 --- a/addons/account_followup/i18n/es_CR.po +++ b/addons/account_followup/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po index ebd2a7c174d..8b82d796329 100644 --- a/addons/account_followup/i18n/es_EC.po +++ b/addons/account_followup/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/es_PY.po b/addons/account_followup/i18n/es_PY.po index 06c360c1e74..d418e1bad5c 100644 --- a/addons/account_followup/i18n/es_PY.po +++ b/addons/account_followup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po index 60fc7b1da67..2dea13521d4 100644 --- a/addons/account_followup/i18n/et.po +++ b/addons/account_followup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fa.po b/addons/account_followup/i18n/fa.po index 5fef96bc116..8c3c06e4bf3 100644 --- a/addons/account_followup/i18n/fa.po +++ b/addons/account_followup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po index 63989dd2766..31efedaed57 100644 --- a/addons/account_followup/i18n/fi.po +++ b/addons/account_followup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po index 43b9a2898db..8cb170b10ca 100644 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/gl.po b/addons/account_followup/i18n/gl.po index 870b25f1c08..44bafad30e2 100644 --- a/addons/account_followup/i18n/gl.po +++ b/addons/account_followup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po index a5cde3fc77f..94b8f0d5fed 100644 --- a/addons/account_followup/i18n/hr.po +++ b/addons/account_followup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po index a31d2961271..ea544e1896d 100644 --- a/addons/account_followup/i18n/hu.po +++ b/addons/account_followup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po index 136af71c11b..8547764f550 100644 --- a/addons/account_followup/i18n/id.po +++ b/addons/account_followup/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po index ed3779a1970..53a6b11296c 100644 --- a/addons/account_followup/i18n/it.po +++ b/addons/account_followup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po index be7a32b875d..ec829c4bddb 100644 --- a/addons/account_followup/i18n/ja.po +++ b/addons/account_followup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po index b7f0ac60737..a758b5008fb 100644 --- a/addons/account_followup/i18n/ko.po +++ b/addons/account_followup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index d0355b1762b..831b14fe9d6 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/mk.po b/addons/account_followup/i18n/mk.po index 21ae7db80ed..fc1c092eb7b 100644 --- a/addons/account_followup/i18n/mk.po +++ b/addons/account_followup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po index 4cef7f9f607..784913912ea 100644 --- a/addons/account_followup/i18n/mn.po +++ b/addons/account_followup/i18n/mn.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-03-20 10:13+0000\n" +"PO-Revision-Date: 2013-03-27 09:01+0000\n" "Last-Translator: gobi \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -328,7 +328,7 @@ msgstr "" " тулд хугацаа дуусах талаар хэр зэрэг ойрхон ямар " "арга \n" " хэмжээнүүд авахыг тодорхойлно. Эдгээр арга \n" -" хэмжээнүүд нь мөшгилтийн түвшингүүдэд багцлагдаж \n" +" хэмжээнүүд нь мөшгөлтийн түвшингүүдэд багцлагдаж \n" " нэхэмжлэлийн хугацаа дууссанаас хэд хоног " "өнгөрснөөс \n" " хамааруулан төрөл бүрийн арга хэмжээг эхлүүлнэ. " @@ -351,7 +351,7 @@ msgstr "Харилцагч" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "Компанийн хэмжээнд зөвхөн нэг л мөшгилт зөвшөөрөгдөнө." +msgstr "Компанийн хэмжээнд зөвхөн нэг л мөшгөлт зөвшөөрөгдөнө." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -382,7 +382,7 @@ msgstr "Имэйл илгээгээд захидал үүсгэнэ" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "Гар мөшгилтүүд" +msgstr "Гар мөшгөлтүүд" #. module: account_followup #: view:account_followup.followup.line:0 @@ -513,7 +513,7 @@ msgstr "Захидал илгээх" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form msgid "Payment Follow-ups" -msgstr "Төлбөрийн мөшгилтүүд" +msgstr "Төлбөрийн мөшгөлтүүд" #. module: account_followup #: code:addons/account_followup/report/account_followup_print.py:86 @@ -522,7 +522,7 @@ msgid "" "The followup plan defined for the current company does not have any followup " "action." msgstr "" -"Идэвхтэй компанид тодорхойлогдсон мөшгилтөнд ямар ч мөшгилтийн арга " +"Идэвхтэй компанид тодорхойлогдсон мөшгөлтөнд ямар ч мөшгөлтийн арга " "хэмжээнүүд байхгүй байна." #. module: account_followup @@ -539,7 +539,7 @@ msgstr "Мөшгилтийн түвшин" #. module: account_followup #: field:account_followup.stat,date_followup:0 msgid "Latest followup" -msgstr "Сүүлийн мөшгилт" +msgstr "Сүүлийн мөшгөлт" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup @@ -564,12 +564,12 @@ msgstr "Батламжлах имэйл илгээх" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up Entries with period in current year" -msgstr "Одоогийн жилийн мөчлөгтэй мөшгилтийн бичилтүүд" +msgstr "Одоогийн жилийн мөчлөгтэй мөшгөлтийн бичилтүүд" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "Хамгийн сүүлийн мөшгилт" +msgstr "Хамгийн сүүлийн мөшгөлт" #. module: account_followup #: field:account_followup.print,partner_lang:0 @@ -633,7 +633,7 @@ msgstr "Харилцагчийн имэйл хаяг бөглөгдөөгүй т #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "Дансны мөшгилт" +msgstr "Дансны мөшгөлт" #. module: account_followup #: help:res.partner,payment_responsible_id:0 diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po index aee2cdc5567..e391a51dca9 100644 --- a/addons/account_followup/i18n/nb.po +++ b/addons/account_followup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po index 2607337567e..49f57a3cbe2 100644 --- a/addons/account_followup/i18n/nl.po +++ b/addons/account_followup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index 89901e5c3db..0dd7a3cc916 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po index d83e3becc6f..0fe096ae4bc 100644 --- a/addons/account_followup/i18n/oc.po +++ b/addons/account_followup/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po index e412d670b0a..b3511033cbc 100644 --- a/addons/account_followup/i18n/pl.po +++ b/addons/account_followup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index 3a7629e6ac0..87e335dd2a9 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index d626c73cd10..10db49e0943 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po index 46d9e00d47d..2cabd9aab4f 100644 --- a/addons/account_followup/i18n/ro.po +++ b/addons/account_followup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po index fbb296a72e3..077662f3a8c 100644 --- a/addons/account_followup/i18n/ru.po +++ b/addons/account_followup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index 59eb4d2463c..e7b3f1c0f86 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po index a9adc304ce9..8a97a6ead4f 100644 --- a/addons/account_followup/i18n/sq.po +++ b/addons/account_followup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:32+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po index a092d55d304..ef33c7002ae 100644 --- a/addons/account_followup/i18n/sr.po +++ b/addons/account_followup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po index 5ce7530476c..7c0a620f28e 100644 --- a/addons/account_followup/i18n/sr@latin.po +++ b/addons/account_followup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index e10cd366cdf..c930a2442ad 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po index b2e3b60a50a..ef73bf389a8 100644 --- a/addons/account_followup/i18n/tlh.po +++ b/addons/account_followup/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index 9016cbbe342..e3daa867935 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po index 24c5be71657..ead396b1f06 100644 --- a/addons/account_followup/i18n/uk.po +++ b/addons/account_followup/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po index 230aaf18b9a..52719050ce4 100644 --- a/addons/account_followup/i18n/vi.po +++ b/addons/account_followup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index 4f1dfd1b0e3..82bac66b587 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index 298227788e7..08b45ef8a0f 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po index 4b5058f33a0..de1829a98de 100644 --- a/addons/account_payment/i18n/am.po +++ b/addons/account_payment/i18n/am.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ar.po b/addons/account_payment/i18n/ar.po index d2095c7f088..8c25c3e7017 100644 --- a/addons/account_payment/i18n/ar.po +++ b/addons/account_payment/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bg.po b/addons/account_payment/i18n/bg.po index 5049182ad29..0b72efcf328 100644 --- a/addons/account_payment/i18n/bg.po +++ b/addons/account_payment/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/bs.po b/addons/account_payment/i18n/bs.po index 0c6f0bf8574..adca86a7c7b 100644 --- a/addons/account_payment/i18n/bs.po +++ b/addons/account_payment/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ca.po b/addons/account_payment/i18n/ca.po index 00f2d4d30cf..18c2e660ba8 100644 --- a/addons/account_payment/i18n/ca.po +++ b/addons/account_payment/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/cs.po b/addons/account_payment/i18n/cs.po index 1149e555454..8a58578558c 100644 --- a/addons/account_payment/i18n/cs.po +++ b/addons/account_payment/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po index 9fb3384a511..bb4a858add7 100644 --- a/addons/account_payment/i18n/da.po +++ b/addons/account_payment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po index a3ab63d942f..76deac5f038 100644 --- a/addons/account_payment/i18n/de.po +++ b/addons/account_payment/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/el.po b/addons/account_payment/i18n/el.po index ed6d1ceb72a..78e1c09d6f4 100644 --- a/addons/account_payment/i18n/el.po +++ b/addons/account_payment/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/en_GB.po b/addons/account_payment/i18n/en_GB.po index 8f1fa4a5cf5..e04b1adaefb 100644 --- a/addons/account_payment/i18n/en_GB.po +++ b/addons/account_payment/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es.po b/addons/account_payment/i18n/es.po index 13cc03792fa..4025c2d2710 100644 --- a/addons/account_payment/i18n/es.po +++ b/addons/account_payment/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_AR.po b/addons/account_payment/i18n/es_AR.po index 20d5c166e68..9b9412cbc77 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CL.po b/addons/account_payment/i18n/es_CL.po index 1404b2566bc..7cc75107147 100644 --- a/addons/account_payment/i18n/es_CL.po +++ b/addons/account_payment/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_CR.po b/addons/account_payment/i18n/es_CR.po index 9ae2dcbcc10..8a4152b2713 100644 --- a/addons/account_payment/i18n/es_CR.po +++ b/addons/account_payment/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po index cd560919bfe..6affbb33ebe 100644 --- a/addons/account_payment/i18n/es_EC.po +++ b/addons/account_payment/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/es_PY.po b/addons/account_payment/i18n/es_PY.po index aecb68c2f67..a55bbed1b26 100644 --- a/addons/account_payment/i18n/es_PY.po +++ b/addons/account_payment/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/et.po b/addons/account_payment/i18n/et.po index ffd86e50336..26c041457f6 100644 --- a/addons/account_payment/i18n/et.po +++ b/addons/account_payment/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fa.po b/addons/account_payment/i18n/fa.po index f4f4b9a2662..cbbff75a9be 100644 --- a/addons/account_payment/i18n/fa.po +++ b/addons/account_payment/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fi.po b/addons/account_payment/i18n/fi.po index a74d5527340..d106bbb0848 100644 --- a/addons/account_payment/i18n/fi.po +++ b/addons/account_payment/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/fr.po b/addons/account_payment/i18n/fr.po index 3ddccef0d0a..12b88c558aa 100644 --- a/addons/account_payment/i18n/fr.po +++ b/addons/account_payment/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po index 1e985b80089..61185fd7e12 100644 --- a/addons/account_payment/i18n/gl.po +++ b/addons/account_payment/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hi.po b/addons/account_payment/i18n/hi.po index d5571856475..ade14abe2f5 100644 --- a/addons/account_payment/i18n/hi.po +++ b/addons/account_payment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hr.po b/addons/account_payment/i18n/hr.po index 98d1ea5df23..dae26ed3637 100644 --- a/addons/account_payment/i18n/hr.po +++ b/addons/account_payment/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index 841e4515afc..842487b2875 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -29,6 +29,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson átutalási megbízás létrehozásához.\n" +"

\n" +" Az átutalási, fizetési megbízás egy fizetési igény " +"kiegyenlítése a beszállító felé vagy \n" +" egy vevő jóváíró számlájához a vállalkozásánál.\n" +"

\n" +" " #. module: account_payment #: field:payment.line,currency:0 @@ -82,7 +90,7 @@ msgstr "Vállalat" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment msgid "Accounting / Payments" -msgstr "" +msgstr "Könyvelés / Átutalások, fizetések" #. module: account_payment #: selection:payment.line,state:0 @@ -124,13 +132,15 @@ msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." msgstr "" +"Nem tud visszavonni olyan számlát ami már be lett töltve, importálva az " +"utalásba. Vegye le a következő utalási megbízásból : %s." #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: account_payment #: report:payment.order:0 @@ -195,6 +205,10 @@ msgid "" " Once the bank is confirmed the status is set to 'Confirmed'.\n" " Then the order is paid the status is 'Done'." msgstr "" +"Ha az utalás, megbízás be lett rögzítve akkor annak állapota 'Tervezet'.\n" +" Ha a bank jóváhagyta annak rögzítési állapotát akkor az állapota " +"'Jóváhagyott'.\n" +" Ha az utalás, fizetés végrehajtva akkor annak az állapota 'Elvégezve'." #. module: account_payment #: view:payment.order:0 @@ -220,7 +234,7 @@ msgstr "Struktúrált" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "" +msgstr "Utalási sorok betöltése, importálása" #. module: account_payment #: view:payment.line:0 @@ -262,7 +276,7 @@ msgstr "" #. module: account_payment #: field:payment.order,date_created:0 msgid "Creation Date" -msgstr "" +msgstr "Létrehozás dátuma" #. module: account_payment #: help:payment.mode,journal:0 @@ -272,7 +286,7 @@ msgstr "A fizetési mód bank- vagy pénztárnaplója" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Fixed date" -msgstr "Rögzített" +msgstr "Rögzített dátum" #. module: account_payment #: field:payment.line,info_partner:0 @@ -370,7 +384,7 @@ msgstr "Átutalás hozzáadása a kivonathoz" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "" +msgstr "A beviteli soron nem lett partner meghatározva" #. module: account_payment #: help:payment.mode,name:0 @@ -402,7 +416,7 @@ msgstr "Tervezet" #: view:payment.order:0 #: field:payment.order,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: account_payment #: help:payment.line,communication2:0 @@ -433,7 +447,7 @@ msgstr "Átutalás sorok" #. module: account_payment #: model:ir.model,name:account_payment.model_account_move_line msgid "Journal Items" -msgstr "Könyvelési tételsorok" +msgstr "Könyvelési napló tételsorok" #. module: account_payment #: help:payment.line,move_line_id:0 @@ -450,7 +464,7 @@ msgstr "Keresés" #. module: account_payment #: field:payment.order,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Felelős" #. module: account_payment #: field:payment.line,date:0 @@ -465,7 +479,7 @@ msgstr "Összesen:" #. module: account_payment #: field:payment.order,date_done:0 msgid "Execution Date" -msgstr "" +msgstr "Kivitelezés dátuma" #. module: account_payment #: view:account.payment.populate.statement:0 @@ -539,12 +553,12 @@ msgstr "Közlemény" #: view:account.payment.populate.statement:0 #: view:payment.order.create:0 msgid "Cancel" -msgstr "Mégse" +msgstr "Visszavonás" #. module: account_payment #: field:payment.line,bank_id:0 msgid "Destination Bank Account" -msgstr "" +msgstr "Jogosult bankszámla száma" #. module: account_payment #: view:payment.line:0 @@ -582,7 +596,7 @@ msgstr "Közlemény folytatása" #. module: account_payment #: field:payment.order,date_scheduled:0 msgid "Scheduled Date" -msgstr "" +msgstr "Tervezett dátum" #. module: account_payment #: view:account.payment.make.payment:0 @@ -682,14 +696,14 @@ msgstr "Átutalás végrehajtása" #. module: account_payment #: field:payment.order,date_prefered:0 msgid "Preferred Date" -msgstr "" +msgstr "Előnyben részesített dátum" #. module: account_payment #: view:account.payment.make.payment:0 #: view:account.payment.populate.statement:0 #: view:payment.order.create:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: account_payment #: help:payment.mode,bank_id:0 diff --git a/addons/account_payment/i18n/id.po b/addons/account_payment/i18n/id.po index 01f693a000f..30555bab56b 100644 --- a/addons/account_payment/i18n/id.po +++ b/addons/account_payment/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/it.po b/addons/account_payment/i18n/it.po index 28d82cf6c7c..4c8b2f598d2 100644 --- a/addons/account_payment/i18n/it.po +++ b/addons/account_payment/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ja.po b/addons/account_payment/i18n/ja.po index fe7a8d7c0ac..fb5036abd55 100644 --- a/addons/account_payment/i18n/ja.po +++ b/addons/account_payment/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ko.po b/addons/account_payment/i18n/ko.po index f21d4f0d9f6..86e095cdce6 100644 --- a/addons/account_payment/i18n/ko.po +++ b/addons/account_payment/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lt.po b/addons/account_payment/i18n/lt.po index d827551424d..a1a59de9866 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po index 69d12f9a87d..b8b0e817113 100644 --- a/addons/account_payment/i18n/lv.po +++ b/addons/account_payment/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mk.po b/addons/account_payment/i18n/mk.po index 98f641e4289..0958c61c007 100644 --- a/addons/account_payment/i18n/mk.po +++ b/addons/account_payment/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po index ba34febb2f2..85fc4dcd326 100644 --- a/addons/account_payment/i18n/mn.po +++ b/addons/account_payment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:23+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po index 56d53ffffb0..c24e7b4987d 100644 --- a/addons/account_payment/i18n/nb.po +++ b/addons/account_payment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl.po b/addons/account_payment/i18n/nl.po index 2dfd15c9a5f..c71f59fe282 100644 --- a/addons/account_payment/i18n/nl.po +++ b/addons/account_payment/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index c02dd587591..cff0e791948 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/oc.po b/addons/account_payment/i18n/oc.po index c54aac0981b..842d7181c4f 100644 --- a/addons/account_payment/i18n/oc.po +++ b/addons/account_payment/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pl.po b/addons/account_payment/i18n/pl.po index 4f8eecda65d..17d44953318 100644 --- a/addons/account_payment/i18n/pl.po +++ b/addons/account_payment/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt.po b/addons/account_payment/i18n/pt.po index a106425722d..3a8b1db130f 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/pt_BR.po b/addons/account_payment/i18n/pt_BR.po index 8b9e3b48822..685e05662c8 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ro.po b/addons/account_payment/i18n/ro.po index d1ec1323abc..7a685aa12c7 100644 --- a/addons/account_payment/i18n/ro.po +++ b/addons/account_payment/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/ru.po b/addons/account_payment/i18n/ru.po index 841801cf3b1..7d58358be3d 100644 --- a/addons/account_payment/i18n/ru.po +++ b/addons/account_payment/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sl.po b/addons/account_payment/i18n/sl.po index 3e9d6830246..1c59155e389 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sq.po b/addons/account_payment/i18n/sq.po index efc17a8a0cc..093ed714964 100644 --- a/addons/account_payment/i18n/sq.po +++ b/addons/account_payment/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr.po b/addons/account_payment/i18n/sr.po index 34fa63482dd..3c931d0a0d5 100644 --- a/addons/account_payment/i18n/sr.po +++ b/addons/account_payment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sr@latin.po b/addons/account_payment/i18n/sr@latin.po index 1a9c297a56b..6f32b88569c 100644 --- a/addons/account_payment/i18n/sr@latin.po +++ b/addons/account_payment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/sv.po b/addons/account_payment/i18n/sv.po index 29348ceca2b..5c7ce4fe7ec 100644 --- a/addons/account_payment/i18n/sv.po +++ b/addons/account_payment/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tlh.po b/addons/account_payment/i18n/tlh.po index 4f2941d0c7f..5770d6c78df 100644 --- a/addons/account_payment/i18n/tlh.po +++ b/addons/account_payment/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/tr.po b/addons/account_payment/i18n/tr.po index 1fd77109adc..739efb7190f 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po index f801e2e823c..b99d18d358c 100644 --- a/addons/account_payment/i18n/uk.po +++ b/addons/account_payment/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/vi.po b/addons/account_payment/i18n/vi.po index 5698aa7d6a1..0e7cd680546 100644 --- a/addons/account_payment/i18n/vi.po +++ b/addons/account_payment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_CN.po b/addons/account_payment/i18n/zh_CN.po index dd3d73a96dd..4d1a64c6b48 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_payment/i18n/zh_TW.po b/addons/account_payment/i18n/zh_TW.po index 421b7249e1a..afb4e6fff24 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree diff --git a/addons/account_sequence/i18n/ar.po b/addons/account_sequence/i18n/ar.po index 66df9a739da..a03a5be755d 100644 --- a/addons/account_sequence/i18n/ar.po +++ b/addons/account_sequence/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/bg.po b/addons/account_sequence/i18n/bg.po index eaa347f0bc4..0932d46acc4 100644 --- a/addons/account_sequence/i18n/bg.po +++ b/addons/account_sequence/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ca.po b/addons/account_sequence/i18n/ca.po index c9b4319df3a..7692f1371a9 100644 --- a/addons/account_sequence/i18n/ca.po +++ b/addons/account_sequence/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/da.po b/addons/account_sequence/i18n/da.po index 888197490c2..9313f75f294 100644 --- a/addons/account_sequence/i18n/da.po +++ b/addons/account_sequence/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/de.po b/addons/account_sequence/i18n/de.po index 2ef4ec9e307..4e7b2beb63a 100644 --- a/addons/account_sequence/i18n/de.po +++ b/addons/account_sequence/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/el.po b/addons/account_sequence/i18n/el.po index 7abe6adcc6d..44ebfcd5084 100644 --- a/addons/account_sequence/i18n/el.po +++ b/addons/account_sequence/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/en_GB.po b/addons/account_sequence/i18n/en_GB.po index 312b0338fcc..ea446211e4b 100644 --- a/addons/account_sequence/i18n/en_GB.po +++ b/addons/account_sequence/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es.po b/addons/account_sequence/i18n/es.po index e4ad83d6f68..c91f06a31d7 100644 --- a/addons/account_sequence/i18n/es.po +++ b/addons/account_sequence/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_CR.po b/addons/account_sequence/i18n/es_CR.po index aa8b9d2a84a..c12e563f47a 100644 --- a/addons/account_sequence/i18n/es_CR.po +++ b/addons/account_sequence/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_EC.po b/addons/account_sequence/i18n/es_EC.po index da587097c44..15d4ac20752 100644 --- a/addons/account_sequence/i18n/es_EC.po +++ b/addons/account_sequence/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/es_PY.po b/addons/account_sequence/i18n/es_PY.po index e04c8f34535..aa3e220db12 100644 --- a/addons/account_sequence/i18n/es_PY.po +++ b/addons/account_sequence/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fa.po b/addons/account_sequence/i18n/fa.po index cb50aeeb15a..8bb0a39fe76 100644 --- a/addons/account_sequence/i18n/fa.po +++ b/addons/account_sequence/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/fr.po b/addons/account_sequence/i18n/fr.po index c01ebf2db2a..18a809c893e 100644 --- a/addons/account_sequence/i18n/fr.po +++ b/addons/account_sequence/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/gl.po b/addons/account_sequence/i18n/gl.po index d44f33a1057..482bf63faf8 100644 --- a/addons/account_sequence/i18n/gl.po +++ b/addons/account_sequence/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hr.po b/addons/account_sequence/i18n/hr.po index 12d72ac57e4..07db32f40c6 100644 --- a/addons/account_sequence/i18n/hr.po +++ b/addons/account_sequence/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/hu.po b/addons/account_sequence/i18n/hu.po index 9342e4152be..4028164fe47 100644 --- a/addons/account_sequence/i18n/hu.po +++ b/addons/account_sequence/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/id.po b/addons/account_sequence/i18n/id.po index 4e5f4533352..106b50c62ab 100644 --- a/addons/account_sequence/i18n/id.po +++ b/addons/account_sequence/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/it.po b/addons/account_sequence/i18n/it.po index 6628a743109..bdec3403a4a 100644 --- a/addons/account_sequence/i18n/it.po +++ b/addons/account_sequence/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ja.po b/addons/account_sequence/i18n/ja.po index 68a3a29b645..9c037e4e1f9 100644 --- a/addons/account_sequence/i18n/ja.po +++ b/addons/account_sequence/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/lv.po b/addons/account_sequence/i18n/lv.po index cb0486bf842..4b47021834c 100644 --- a/addons/account_sequence/i18n/lv.po +++ b/addons/account_sequence/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/mk.po b/addons/account_sequence/i18n/mk.po index a9e6f57fa77..6ed5d4d5cce 100644 --- a/addons/account_sequence/i18n/mk.po +++ b/addons/account_sequence/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/mn.po b/addons/account_sequence/i18n/mn.po index 6707cd8df83..95275c59c44 100644 --- a/addons/account_sequence/i18n/mn.po +++ b/addons/account_sequence/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nb.po b/addons/account_sequence/i18n/nb.po index ee387cf909f..813da449c52 100644 --- a/addons/account_sequence/i18n/nb.po +++ b/addons/account_sequence/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl.po b/addons/account_sequence/i18n/nl.po index 4f300b9516b..b01dab84e6a 100644 --- a/addons/account_sequence/i18n/nl.po +++ b/addons/account_sequence/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/nl_BE.po b/addons/account_sequence/i18n/nl_BE.po index e2c5542f76e..486d09d5029 100644 --- a/addons/account_sequence/i18n/nl_BE.po +++ b/addons/account_sequence/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pl.po b/addons/account_sequence/i18n/pl.po index 2bbeccc7279..23ea5a866d1 100644 --- a/addons/account_sequence/i18n/pl.po +++ b/addons/account_sequence/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt.po b/addons/account_sequence/i18n/pt.po index 6ce11231815..acba41eadd4 100644 --- a/addons/account_sequence/i18n/pt.po +++ b/addons/account_sequence/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/pt_BR.po b/addons/account_sequence/i18n/pt_BR.po index 77411558264..b871302b513 100644 --- a/addons/account_sequence/i18n/pt_BR.po +++ b/addons/account_sequence/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ro.po b/addons/account_sequence/i18n/ro.po index d7bf055b495..1cf389e3005 100644 --- a/addons/account_sequence/i18n/ro.po +++ b/addons/account_sequence/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/ru.po b/addons/account_sequence/i18n/ru.po index 4840ea68b7d..5eba0ac39e5 100644 --- a/addons/account_sequence/i18n/ru.po +++ b/addons/account_sequence/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sl.po b/addons/account_sequence/i18n/sl.po index 55d984e3254..69d8993876b 100644 --- a/addons/account_sequence/i18n/sl.po +++ b/addons/account_sequence/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sq.po b/addons/account_sequence/i18n/sq.po index ff4b10fbd83..989949b6609 100644 --- a/addons/account_sequence/i18n/sq.po +++ b/addons/account_sequence/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:30+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sr@latin.po b/addons/account_sequence/i18n/sr@latin.po index f9d4bb1f070..83bc56232bd 100644 --- a/addons/account_sequence/i18n/sr@latin.po +++ b/addons/account_sequence/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/sv.po b/addons/account_sequence/i18n/sv.po index f0d7065b454..309008df3d5 100644 --- a/addons/account_sequence/i18n/sv.po +++ b/addons/account_sequence/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/tr.po b/addons/account_sequence/i18n/tr.po index c6796a54430..5843ecee2bd 100644 --- a/addons/account_sequence/i18n/tr.po +++ b/addons/account_sequence/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/vi.po b/addons/account_sequence/i18n/vi.po index c2751be37d5..1d759a31752 100644 --- a/addons/account_sequence/i18n/vi.po +++ b/addons/account_sequence/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_CN.po b/addons/account_sequence/i18n/zh_CN.po index ee8ee0ec1b3..753357d8b47 100644 --- a/addons/account_sequence/i18n/zh_CN.po +++ b/addons/account_sequence/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/zh_TW.po b/addons/account_sequence/i18n/zh_TW.po index a513c8dbd9d..bfbb93474cf 100644 --- a/addons/account_sequence/i18n/zh_TW.po +++ b/addons/account_sequence/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_test/i18n/ar.po b/addons/account_test/i18n/ar.po index e42baeb7e36..69a81dea1b9 100644 --- a/addons/account_test/i18n/ar.po +++ b/addons/account_test/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/en_GB.po b/addons/account_test/i18n/en_GB.po index cf042f5421d..b1b5cf96ea2 100644 --- a/addons/account_test/i18n/en_GB.po +++ b/addons/account_test/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/es.po b/addons/account_test/i18n/es.po index a2e77b5da82..f61ca583465 100644 --- a/addons/account_test/i18n/es.po +++ b/addons/account_test/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/fr.po b/addons/account_test/i18n/fr.po index 99eae2db006..f47f2875526 100644 --- a/addons/account_test/i18n/fr.po +++ b/addons/account_test/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/hr.po b/addons/account_test/i18n/hr.po index d0069d38012..694fe9c6b63 100644 --- a/addons/account_test/i18n/hr.po +++ b/addons/account_test/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/it.po b/addons/account_test/i18n/it.po index 5f8c4c74229..1d2cd5a80b8 100644 --- a/addons/account_test/i18n/it.po +++ b/addons/account_test/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/mk.po b/addons/account_test/i18n/mk.po index ddc853889e8..2c752b0f214 100644 --- a/addons/account_test/i18n/mk.po +++ b/addons/account_test/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/mn.po b/addons/account_test/i18n/mn.po index 9dc6c1dca71..e7cf86c3b0a 100644 --- a/addons/account_test/i18n/mn.po +++ b/addons/account_test/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nb.po b/addons/account_test/i18n/nb.po index f36124cd5e6..867ee51a8ff 100644 --- a/addons/account_test/i18n/nb.po +++ b/addons/account_test/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/nl.po b/addons/account_test/i18n/nl.po index 57853b916f3..4b0dd522fff 100644 --- a/addons/account_test/i18n/nl.po +++ b/addons/account_test/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pt.po b/addons/account_test/i18n/pt.po index c7c6498a358..8b7864e9b14 100644 --- a/addons/account_test/i18n/pt.po +++ b/addons/account_test/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/pt_BR.po b/addons/account_test/i18n/pt_BR.po index 1fe0e7b3acc..ea198855012 100644 --- a/addons/account_test/i18n/pt_BR.po +++ b/addons/account_test/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/ro.po b/addons/account_test/i18n/ro.po index 03da0d5493a..c807c1a1acc 100644 --- a/addons/account_test/i18n/ro.po +++ b/addons/account_test/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/sl.po b/addons/account_test/i18n/sl.po index 82ff589140e..7eac49b0f72 100644 --- a/addons/account_test/i18n/sl.po +++ b/addons/account_test/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/tr.po b/addons/account_test/i18n/tr.po index c18569e485b..90905ae94f4 100644 --- a/addons/account_test/i18n/tr.po +++ b/addons/account_test/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/zh_CN.po b/addons/account_test/i18n/zh_CN.po index 2f1eb1e8411..b92230100e7 100644 --- a/addons/account_test/i18n/zh_CN.po +++ b/addons/account_test/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_voucher/i18n/ar.po b/addons/account_voucher/i18n/ar.po index f12e35d77a1..2fa419cb1aa 100644 --- a/addons/account_voucher/i18n/ar.po +++ b/addons/account_voucher/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index 3c06f3eea8b..aab07fa569d 100644 --- a/addons/account_voucher/i18n/bg.po +++ b/addons/account_voucher/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index 653895246c8..b7fcdd7ec66 100644 --- a/addons/account_voucher/i18n/bs.po +++ b/addons/account_voucher/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index d04ecb63994..f52c8197825 100644 --- a/addons/account_voucher/i18n/ca.po +++ b/addons/account_voucher/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 113b0290a6e..61c218fc9ea 100644 --- a/addons/account_voucher/i18n/cs.po +++ b/addons/account_voucher/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index ef5d20dad45..435f7bec400 100644 --- a/addons/account_voucher/i18n/da.po +++ b/addons/account_voucher/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index 5404f2ad928..1c45b61c4c7 100644 --- a/addons/account_voucher/i18n/de.po +++ b/addons/account_voucher/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index e3e3da0c0f8..bbdd5d91786 100644 --- a/addons/account_voucher/i18n/el.po +++ b/addons/account_voucher/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/en_GB.po b/addons/account_voucher/i18n/en_GB.po index 6225444cd18..abf2665c9a8 100644 --- a/addons/account_voucher/i18n/en_GB.po +++ b/addons/account_voucher/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index d222d122480..6167dd637fe 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 85118c081e5..46c1d6b8209 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index 3f7236d7817..34acc352dcc 100644 --- a/addons/account_voucher/i18n/es_CR.po +++ b/addons/account_voucher/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po index c6c16929797..b8d4adf3e6b 100644 --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index 4ba47f0ad35..02cb0f12d2b 100644 --- a/addons/account_voucher/i18n/es_PY.po +++ b/addons/account_voucher/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index 1aab146c34c..eb84fc443fa 100644 --- a/addons/account_voucher/i18n/et.po +++ b/addons/account_voucher/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fa.po b/addons/account_voucher/i18n/fa.po index 57b6c82bcfd..710d69fe6e9 100644 --- a/addons/account_voucher/i18n/fa.po +++ b/addons/account_voucher/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index 5a6ce8fcdd0..bb9644ca467 100644 --- a/addons/account_voucher/i18n/fr.po +++ b/addons/account_voucher/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index c49e4edf4e6..85ac0f5e043 100644 --- a/addons/account_voucher/i18n/gl.po +++ b/addons/account_voucher/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index 6e79fce6119..de3a9832dfa 100644 --- a/addons/account_voucher/i18n/gu.po +++ b/addons/account_voucher/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index 6b9aecfa3b3..9a56f07b936 100644 --- a/addons/account_voucher/i18n/hi.po +++ b/addons/account_voucher/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index a0e82ded5e7..3a315dac12f 100644 --- a/addons/account_voucher/i18n/hr.po +++ b/addons/account_voucher/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 5ee695fe9bf..6d4b0273148 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -25,7 +25,7 @@ msgstr "" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:369 @@ -60,11 +60,13 @@ msgid "" "Computed as the difference between the amount stated in the voucher and the " "sum of allocation on the voucher lines." msgstr "" +"Különbség ami a nyugtán lévő végösszeg és a nyugta soraiban lévő rész " +"összegek különbsége." #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Frissítés)" #. module: account_voucher #: view:account.voucher:0 @@ -91,7 +93,7 @@ msgstr "Március" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olvasatlan üzenetek" #. module: account_voucher #: view:account.voucher:0 @@ -116,13 +118,13 @@ msgstr "Tranzakció hivatkozási száma" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Számla kibocsátási éve szerinti csoportosítás" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Értékesítő" #. module: account_voucher #: view:account.voucher:0 @@ -151,7 +153,7 @@ msgstr "Jóváhagyás" #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Beszállítói átutalások, fizetések" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -185,7 +187,7 @@ msgstr "Főkönyvi számla" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "Tartozik" +msgstr "Tartozások" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -213,7 +215,7 @@ msgstr "Megjegyzések" #. module: account_voucher #: field:account.voucher,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Üzenetek" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt @@ -231,7 +233,7 @@ msgstr "Könyvelési tételsor" #: code:addons/account_voucher/account_voucher.py:981 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: account_voucher #: field:account.voucher.line,amount:0 @@ -363,7 +365,7 @@ msgstr "" #: code:addons/account_voucher/account_voucher.py:1112 #, python-format msgid "Wrong voucher line" -msgstr "" +msgstr "Nem megfelelő nyugta sorok" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -446,7 +448,7 @@ msgstr "Típus" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Pro-forma nyugták" #. module: account_voucher #: view:account.voucher:0 @@ -500,7 +502,7 @@ msgstr "Nyugta" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 msgid "Multi Currency Voucher" -msgstr "" +msgstr "Több pénznemű nyugták" #. module: account_voucher #: view:account.voucher:0 @@ -555,7 +557,7 @@ msgstr "ÁFA összege" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "" +msgstr "Jóváhagyott nyugták" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -665,12 +667,12 @@ msgstr "Vevők és szállítók" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Payment" -msgstr "" +msgstr "Nyugta kiegyenlítés" #. module: account_voucher #: field:sale.receipt.report,state:0 msgid "Voucher Status" -msgstr "" +msgstr "Nyugta állapota" #. module: account_voucher #: field:account.voucher,company_id:0 @@ -683,7 +685,7 @@ msgstr "Vállalat" #. module: account_voucher #: help:account.voucher,paid:0 msgid "The Voucher has been totally paid." -msgstr "" +msgstr "A nyugta ki lett egyenlítve" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -705,7 +707,7 @@ msgstr "" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Nyugta tervezetek" #. module: account_voucher #: view:sale.receipt.report:0 @@ -716,7 +718,7 @@ msgstr "Bruttó érték" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "" +msgstr "Beszerzési nyugta" #. module: account_voucher #: view:account.voucher:0 @@ -1274,3 +1276,6 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" + +#~ msgid "Sale voucher" +#~ msgstr "Értékesítési nyugta" diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index 4bcdd736bc3..55fd0cca7cb 100644 --- a/addons/account_voucher/i18n/id.po +++ b/addons/account_voucher/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index ae1ce313c8f..fd1d6321a18 100644 --- a/addons/account_voucher/i18n/it.po +++ b/addons/account_voucher/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index 55d799cd85f..2da6a5631ee 100644 --- a/addons/account_voucher/i18n/ja.po +++ b/addons/account_voucher/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index 30ba381f22d..26ed641dac9 100644 --- a/addons/account_voucher/i18n/ko.po +++ b/addons/account_voucher/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index f1a5dcfc6da..13604656a62 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index 998dc2c9b36..8d0568fa95e 100644 --- a/addons/account_voucher/i18n/mk.po +++ b/addons/account_voucher/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index 1e282094ac4..045a7e36ee1 100644 --- a/addons/account_voucher/i18n/mn.po +++ b/addons/account_voucher/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-26 05:32+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nb.po b/addons/account_voucher/i18n/nb.po index 11a6775c309..b1fe9fd267e 100644 --- a/addons/account_voucher/i18n/nb.po +++ b/addons/account_voucher/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index e56df6aba21..7ca8b44afc0 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index c7da1440912..da33b638ece 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index 81cb32d8c9e..7be1529e065 100644 --- a/addons/account_voucher/i18n/oc.po +++ b/addons/account_voucher/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index 61f8897ce41..d3721ad5684 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index 2a232522eda..06e5dbff3a6 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index 6184a20e9be..1c9f359c3cf 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index 228d43b965a..96d714cbfe4 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index cc2aa374d47..d522122d909 100644 --- a/addons/account_voucher/i18n/ru.po +++ b/addons/account_voucher/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index 7e7493a1b74..5adc363b5ed 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index ceba10b200e..5438ea10c91 100644 --- a/addons/account_voucher/i18n/sq.po +++ b/addons/account_voucher/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:33+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index c932fc50499..09b92e64573 100644 --- a/addons/account_voucher/i18n/sr.po +++ b/addons/account_voucher/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index 9c4d5749cee..a2a7833f5f4 100644 --- a/addons/account_voucher/i18n/sr@latin.po +++ b/addons/account_voucher/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index 2f2e2f7fbad..052297c04f6 100644 --- a/addons/account_voucher/i18n/sv.po +++ b/addons/account_voucher/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index 0c55398a3fd..1e62ab8464c 100644 --- a/addons/account_voucher/i18n/tlh.po +++ b/addons/account_voucher/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index 9a450bd8201..88a5c914137 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index fa0b57b00d5..a5c9b03dc29 100644 --- a/addons/account_voucher/i18n/uk.po +++ b/addons/account_voucher/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index 2b1a0a3e0df..2972bca4e1a 100644 --- a/addons/account_voucher/i18n/vi.po +++ b/addons/account_voucher/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index bc4a23c6166..140c9244b3e 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 36ca2256a00..620ddd6fee8 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index 108ed60553f..e119012dbf9 100644 --- a/addons/analytic/i18n/ar.po +++ b/addons/analytic/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index 28030d4b197..53a3c457b86 100644 --- a/addons/analytic/i18n/bg.po +++ b/addons/analytic/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index e2d0c088e48..29d6ce7be5f 100644 --- a/addons/analytic/i18n/bs.po +++ b/addons/analytic/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index 3697aa48f13..bc400ed84b1 100644 --- a/addons/analytic/i18n/ca.po +++ b/addons/analytic/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index b1bc5174959..a07d4a775e6 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index d8c84adaaac..5601d015b90 100644 --- a/addons/analytic/i18n/da.po +++ b/addons/analytic/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index 349dc54d783..bae7cf4fc22 100644 --- a/addons/analytic/i18n/de.po +++ b/addons/analytic/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index 23cbb7452cd..7ad21e72161 100644 --- a/addons/analytic/i18n/el.po +++ b/addons/analytic/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/en_GB.po b/addons/analytic/i18n/en_GB.po index ed33026c597..c880bd55ad0 100644 --- a/addons/analytic/i18n/en_GB.po +++ b/addons/analytic/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index 12bb2ed0ebd..da8f64b48bb 100644 --- a/addons/analytic/i18n/es.po +++ b/addons/analytic/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index 3cd918e8584..5b035362f1d 100644 --- a/addons/analytic/i18n/es_CR.po +++ b/addons/analytic/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index 1ddf3a8d476..4e6cbd7aded 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index f9afbad88d2..105191eaf6a 100644 --- a/addons/analytic/i18n/es_PY.po +++ b/addons/analytic/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index 89ed6c3a2d6..0e94af27ea6 100644 --- a/addons/analytic/i18n/et.po +++ b/addons/analytic/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index 48124cde9d1..d2bfffbeba7 100644 --- a/addons/analytic/i18n/fa.po +++ b/addons/analytic/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index b086760a2a7..c791206a626 100644 --- a/addons/analytic/i18n/fi.po +++ b/addons/analytic/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index e2cb51cb733..0487242a7a4 100644 --- a/addons/analytic/i18n/fr.po +++ b/addons/analytic/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index 58b6bcdcefe..5d058e84095 100644 --- a/addons/analytic/i18n/gl.po +++ b/addons/analytic/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index 4be03d653c1..f40c6f02387 100644 --- a/addons/analytic/i18n/hr.po +++ b/addons/analytic/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index 449e53112e6..55b7e79f591 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -25,13 +25,13 @@ msgstr "Alárendelt gyűjtőkódok" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "Folyamatban" #. module: analytic #: code:addons/analytic/analytic.py:229 #, python-format msgid "Contract: " -msgstr "" +msgstr "Szerződés: " #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending @@ -46,7 +46,7 @@ msgstr "Sablon" #. module: analytic #: view:account.analytic.account:0 msgid "End Date" -msgstr "" +msgstr "Befejezés dátuma" #. module: analytic #: help:account.analytic.line,unit_amount:0 @@ -75,12 +75,12 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "Projekt szerződése" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "Fiók/Szerződés neve" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -90,7 +90,7 @@ msgstr "Felelős" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Követők" #. module: analytic #: selection:account.analytic.account,state:0 @@ -100,28 +100,28 @@ msgstr "Lezárt" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending msgid "Contract to Renew" -msgstr "" +msgstr "Megújítandó szerződés" #. module: analytic #: selection:account.analytic.account,state:0 msgid "New" -msgstr "" +msgstr "Új" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "" +msgstr "Projektmenedzser" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: analytic #: code:addons/analytic/analytic.py:271 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (másolat)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -143,12 +143,12 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olvasatlan üzenetek" #. module: analytic #: constraint:account.analytic.account:0 msgid "Error! You cannot create recursive analytic accounts." -msgstr "" +msgstr "Hiba! Nem tud visszatérő Elemző/Gyűjtő számlákat létrehozni." #. module: analytic #: field:account.analytic.account,company_id:0 @@ -159,7 +159,7 @@ msgstr "Vállalat" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "Megújítás" #. module: analytic #: help:account.analytic.account,message_summary:0 @@ -195,7 +195,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ez egy követő" #. module: analytic #: field:account.analytic.line,user_id:0 @@ -215,12 +215,12 @@ msgstr "Dátum" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed msgid "Contract Finished" -msgstr "" +msgstr "Szerződés végrehejtva" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Kikötések és feltételek" #. module: analytic #: help:account.analytic.line,amount:0 @@ -234,22 +234,22 @@ msgstr "" #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Vevő" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 msgid "Account Hierarchy" -msgstr "" +msgstr "Számla fiók hierarchia, rangsor" #. module: analytic #: field:account.analytic.account,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Üzenetek" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Üzenetek és kommunikációs történet" #. module: analytic #: constraint:account.analytic.line:0 @@ -259,23 +259,23 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "Szerződé információja" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "Szerződés sablonja" #. module: analytic #: field:account.analytic.account,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Összegzés" #. module: analytic #: field:account.analytic.account,quantity_max:0 msgid "Prepaid Service Units" -msgstr "" +msgstr "Előre fizetett szolgáltatási egység" #. module: analytic #: field:account.analytic.account,credit:0 @@ -285,7 +285,7 @@ msgstr "Követel" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened msgid "Contract Opened" -msgstr "" +msgstr "Szerződés megnyitva, elindítva" #. module: analytic #: help:account.analytic.account,type:0 @@ -299,6 +299,14 @@ msgid "" "The special type 'Template of Contract' allows you to define a template with " "default data that you can reuse easily." msgstr "" +"A nézet típus kiválasztásával, megtiltja ezzel a fiókkal a napló bejegyzés " +"készítését.\n" +"Az 'Elemző/gyüjtő számla' típust olyan fiókokhoz használja, melyeket csak " +"könyveléshez használ.\n" +"Ha Szerződést vagy Projektet választ, lehetősége lesz kezelni a fiók " +"érvényesítés és számlázási lehetőségeit.\n" +"A speciális 'Szerződési sablon' típus lehetővé teszi alapértékekkel " +"kitöltött sablon létrehozását, melyet könnyen ismét felhasználhat." #. module: analytic #: selection:account.analytic.account,state:0 @@ -308,7 +316,7 @@ msgstr "Érvénytelenített" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "Elemző nézet" #. module: analytic #: field:account.analytic.account,balance:0 @@ -403,3 +411,9 @@ msgstr "Gyűjtőkód tételek" #~ msgid "Full Account Name" #~ msgstr "Gyűjtőkód teljes neve" + +#~ msgid "Contract pending" +#~ msgstr "Szerződés függőben" + +#~ msgid "Contract closed" +#~ msgstr "Szerződés lezárva" diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index f38dd06fbea..c61ba4e7ba3 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index 283ed597549..ad894245e9f 100644 --- a/addons/analytic/i18n/ja.po +++ b/addons/analytic/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index 8766f7681c8..c9b6cf74f68 100644 --- a/addons/analytic/i18n/lv.po +++ b/addons/analytic/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index 1056d3c58e8..34f6a3a7f35 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: analytic diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index 4e27dd56086..9b41a079dcd 100644 --- a/addons/analytic/i18n/mn.po +++ b/addons/analytic/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:23+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index 858bfa490e8..4f44234a2ae 100644 --- a/addons/analytic/i18n/nb.po +++ b/addons/analytic/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index 0b2e8916bb5..e1e555fe42d 100644 --- a/addons/analytic/i18n/nl.po +++ b/addons/analytic/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index d2ff046752a..2f72b8f25d9 100644 --- a/addons/analytic/i18n/nl_BE.po +++ b/addons/analytic/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index 686fda1a1ac..75c826c8986 100644 --- a/addons/analytic/i18n/pl.po +++ b/addons/analytic/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index 735db4fd940..77ca5b1119f 100644 --- a/addons/analytic/i18n/pt.po +++ b/addons/analytic/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index 0e191d5a80c..a6c7de64b12 100644 --- a/addons/analytic/i18n/pt_BR.po +++ b/addons/analytic/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index 72e6354b805..4cc7b368c10 100644 --- a/addons/analytic/i18n/ro.po +++ b/addons/analytic/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index ccfbfcd6d6c..286bdb309ea 100644 --- a/addons/analytic/i18n/ru.po +++ b/addons/analytic/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index b09b595ba54..0bf01017d16 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index 23b46f616ff..c66989da30c 100644 --- a/addons/analytic/i18n/sq.po +++ b/addons/analytic/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index 601de10916d..fe03ae9db01 100644 --- a/addons/analytic/i18n/sr.po +++ b/addons/analytic/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index 2b712e4559a..551195dfe8d 100644 --- a/addons/analytic/i18n/sr@latin.po +++ b/addons/analytic/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index d42382856a0..3b4f3cb83be 100644 --- a/addons/analytic/i18n/sv.po +++ b/addons/analytic/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index 4a5dfd2ef27..ff0f7dfe625 100644 --- a/addons/analytic/i18n/tr.po +++ b/addons/analytic/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index fe5321df95c..fa36abed6d6 100644 --- a/addons/analytic/i18n/vi.po +++ b/addons/analytic/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index be756f4378f..997e85d5129 100644 --- a/addons/analytic/i18n/zh_CN.po +++ b/addons/analytic/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index fe8130a2380..b90cae249c6 100644 --- a/addons/analytic/i18n/zh_TW.po +++ b/addons/analytic/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index 47423fcde25..e1556999512 100644 --- a/addons/analytic_contract_hr_expense/i18n/ar.po +++ b/addons/analytic_contract_hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index 0bcec25b675..950231c8974 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_hr_expense/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/en_GB.po b/addons/analytic_contract_hr_expense/i18n/en_GB.po index f1a6c60a5c8..6871215487b 100644 --- a/addons/analytic_contract_hr_expense/i18n/en_GB.po +++ b/addons/analytic_contract_hr_expense/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index e55bc4b464d..7b7a0368829 100644 --- a/addons/analytic_contract_hr_expense/i18n/es.po +++ b/addons/analytic_contract_hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po index bf05ff06ae0..741bdde953c 100644 --- a/addons/analytic_contract_hr_expense/i18n/fr.po +++ b/addons/analytic_contract_hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index 60885c64293..31fbc5b3899 100644 --- a/addons/analytic_contract_hr_expense/i18n/hr.po +++ b/addons/analytic_contract_hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/hu.po b/addons/analytic_contract_hr_expense/i18n/hu.po index 9ff79c6d079..89eed0945bc 100644 --- a/addons/analytic_contract_hr_expense/i18n/hu.po +++ b/addons/analytic_contract_hr_expense/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index 3416a03e746..a7383bea8a2 100644 --- a/addons/analytic_contract_hr_expense/i18n/it.po +++ b/addons/analytic_contract_hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index 903134d5ee0..5b358b5cac8 100644 --- a/addons/analytic_contract_hr_expense/i18n/mk.po +++ b/addons/analytic_contract_hr_expense/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/mn.po b/addons/analytic_contract_hr_expense/i18n/mn.po index 0fe961fa15e..4df758c1a5d 100644 --- a/addons/analytic_contract_hr_expense/i18n/mn.po +++ b/addons/analytic_contract_hr_expense/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index 632a6773b18..1f335fc83a8 100644 --- a/addons/analytic_contract_hr_expense/i18n/nb.po +++ b/addons/analytic_contract_hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index f691c6de5ef..978517a14f7 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl.po +++ b/addons/analytic_contract_hr_expense/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index ee4ab6b68f4..a4a968f58e3 100644 --- a/addons/analytic_contract_hr_expense/i18n/pl.po +++ b/addons/analytic_contract_hr_expense/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt.po b/addons/analytic_contract_hr_expense/i18n/pt.po index 2286dfff895..00038f631cb 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt.po +++ b/addons/analytic_contract_hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 07759f1b985..0459a0b6bf0 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/ro.po b/addons/analytic_contract_hr_expense/i18n/ro.po index be49678e05c..2a2b7390dfc 100644 --- a/addons/analytic_contract_hr_expense/i18n/ro.po +++ b/addons/analytic_contract_hr_expense/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po index 2297ce795a2..ebfc189f072 100644 --- a/addons/analytic_contract_hr_expense/i18n/sl.po +++ b/addons/analytic_contract_hr_expense/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/tr.po b/addons/analytic_contract_hr_expense/i18n/tr.po index 188caf46987..b20f7a27580 100644 --- a/addons/analytic_contract_hr_expense/i18n/tr.po +++ b/addons/analytic_contract_hr_expense/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index 8189ac0993c..23a6b21c06c 100644 --- a/addons/analytic_contract_hr_expense/i18n/zh_CN.po +++ b/addons/analytic_contract_hr_expense/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index de7019e152d..587db7192e2 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bg.po b/addons/analytic_user_function/i18n/bg.po index 12f594ca846..a0230e3e09e 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/bs.po b/addons/analytic_user_function/i18n/bs.po index 6584eca8480..1eb6aa5bca8 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ca.po b/addons/analytic_user_function/i18n/ca.po index ef454094d05..f3861a0ce7a 100644 --- a/addons/analytic_user_function/i18n/ca.po +++ b/addons/analytic_user_function/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/cs.po b/addons/analytic_user_function/i18n/cs.po index 79a5935acf4..7a6ecfbe1d9 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/da.po b/addons/analytic_user_function/i18n/da.po index f2135a932f7..4466f883298 100644 --- a/addons/analytic_user_function/i18n/da.po +++ b/addons/analytic_user_function/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/de.po b/addons/analytic_user_function/i18n/de.po index 78df120b78e..11474883fcb 100644 --- a/addons/analytic_user_function/i18n/de.po +++ b/addons/analytic_user_function/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/el.po b/addons/analytic_user_function/i18n/el.po index ab18a4e42ee..8594c8cd866 100644 --- a/addons/analytic_user_function/i18n/el.po +++ b/addons/analytic_user_function/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/en_GB.po b/addons/analytic_user_function/i18n/en_GB.po index 99c14337af8..92d2f8e24d9 100644 --- a/addons/analytic_user_function/i18n/en_GB.po +++ b/addons/analytic_user_function/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es.po b/addons/analytic_user_function/i18n/es.po index 06afd2cbb68..46e5431d880 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_AR.po b/addons/analytic_user_function/i18n/es_AR.po index 49e35b308d6..072031e9e08 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_CR.po b/addons/analytic_user_function/i18n/es_CR.po index 10f4828daf7..c060e137356 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po index 82f545753ba..02078d34a3e 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/es_PY.po b/addons/analytic_user_function/i18n/es_PY.po index 20a945ca92b..2564cd024ff 100644 --- a/addons/analytic_user_function/i18n/es_PY.po +++ b/addons/analytic_user_function/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/et.po b/addons/analytic_user_function/i18n/et.po index 96bbe130b52..ce890516029 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fa.po b/addons/analytic_user_function/i18n/fa.po index cf7b853895b..46dec257379 100644 --- a/addons/analytic_user_function/i18n/fa.po +++ b/addons/analytic_user_function/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fi.po b/addons/analytic_user_function/i18n/fi.po index 1c6d4c68648..a450fb5da47 100644 --- a/addons/analytic_user_function/i18n/fi.po +++ b/addons/analytic_user_function/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/fr.po b/addons/analytic_user_function/i18n/fr.po index 2ec203c4c5c..158973baa67 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index fa5f91e36dd..955bd24f826 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/gu.po b/addons/analytic_user_function/i18n/gu.po index 50da8b75ef3..5160f914522 100644 --- a/addons/analytic_user_function/i18n/gu.po +++ b/addons/analytic_user_function/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hr.po b/addons/analytic_user_function/i18n/hr.po index 0c20adb98b6..2e8594417e6 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po index 72bf27447d8..10335bc4f81 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/i18n/hu.po @@ -14,38 +14,38 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Gyűjtőkód tételsor" #. module: analytic_user_function #: view:account.analytic.account:0 msgid "Invoice Price Rate per User" -msgstr "" +msgstr "Számlázási ár mértéke felhasználónként" #. module: analytic_user_function #: field:analytic.user.funct.grid,product_id:0 msgid "Service" -msgstr "" +msgstr "Szolgáltatás" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid msgid "Price per User" -msgstr "" +msgstr "Felhasználónkénti ár" #. module: analytic_user_function #: field:analytic.user.funct.grid,price:0 msgid "Price" -msgstr "" +msgstr "Ár" #. module: analytic_user_function #: help:analytic.user.funct.grid,price:0 msgid "Price per hour for this user." -msgstr "" +msgstr "Ennek a felhasználónak a óránkénti ára." #. module: analytic_user_function #: field:analytic.user.funct.grid,account_id:0 @@ -58,12 +58,12 @@ msgstr "Gyűjtőkód" #: code:addons/analytic_user_function/analytic_user_function.py:135 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: analytic_user_function #: view:analytic.user.funct.grid:0 msgid "Invoicing Data" -msgstr "" +msgstr "Számlázási adatok" #. module: analytic_user_function #: field:account.analytic.account,user_product_ids:0 @@ -79,11 +79,16 @@ msgid "" " of the default values when invoicing the " "customer." msgstr "" +"Határozzon meg egy sajátos szolgáltatást (pl. Rangelső tanácsadó)\n" +" és árat egy pár felhasználóhoz ezeknek az " +"adatoknak az alap\n" +" adatok helyetti használatához a vevő " +"számlázására." #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Mértékegység" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:107 @@ -106,6 +111,13 @@ msgid "" " specific user. This allows to set invoicing\n" " conditions for a group of contracts." msgstr "" +"OpenERP visszamenőlegesen keresi a szülő fiókokban annak\n" +" ellenőrzésére, hogy sajátos körülmények vannak-" +"e\n" +" meghatározva a felhasználóhoz. Ez lehetővé " +"teszi\n" +" sajátos számlázási körülmény beállítását egy " +"vevő csoporthoz." #. module: analytic_user_function #: field:analytic.user.funct.grid,user_id:0 diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po index eedc9f7db8c..3114397b828 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po index d54678a3765..c8196b43821 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ja.po b/addons/analytic_user_function/i18n/ja.po index 8b971242ce8..4a89236df1d 100644 --- a/addons/analytic_user_function/i18n/ja.po +++ b/addons/analytic_user_function/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ko.po b/addons/analytic_user_function/i18n/ko.po index b574b232498..3ec98819c55 100644 --- a/addons/analytic_user_function/i18n/ko.po +++ b/addons/analytic_user_function/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/lt.po b/addons/analytic_user_function/i18n/lt.po index 0ac40839889..faa4fc08ecb 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mk.po b/addons/analytic_user_function/i18n/mk.po index 8b47b750a7c..3321e796c50 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index 080bc7c76f5..7bd84e2834e 100644 --- a/addons/analytic_user_function/i18n/mn.po +++ b/addons/analytic_user_function/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:23+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nb.po b/addons/analytic_user_function/i18n/nb.po index bf99390ed5c..70db9a703e2 100644 --- a/addons/analytic_user_function/i18n/nb.po +++ b/addons/analytic_user_function/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl.po b/addons/analytic_user_function/i18n/nl.po index 0dfaea41180..b8adf8d219f 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/nl_BE.po b/addons/analytic_user_function/i18n/nl_BE.po index 0d23b2ebdf1..9b7eb7cd5ca 100644 --- a/addons/analytic_user_function/i18n/nl_BE.po +++ b/addons/analytic_user_function/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/oc.po b/addons/analytic_user_function/i18n/oc.po index 1da0292247e..2d6fa63c2c6 100644 --- a/addons/analytic_user_function/i18n/oc.po +++ b/addons/analytic_user_function/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pl.po b/addons/analytic_user_function/i18n/pl.po index 8e4ab5fc85a..34be523ef0f 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt.po b/addons/analytic_user_function/i18n/pt.po index 12d155308b0..32f82b43625 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/pt_BR.po b/addons/analytic_user_function/i18n/pt_BR.po index 7ae695ac45a..715bcec4ecd 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ro.po b/addons/analytic_user_function/i18n/ro.po index cadb59c8907..cdf0400750c 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/ru.po b/addons/analytic_user_function/i18n/ru.po index 5f90a3bfe03..f75fbf2cc12 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po index bcce31af2f4..ac4df245374 100644 --- a/addons/analytic_user_function/i18n/sk.po +++ b/addons/analytic_user_function/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sl.po b/addons/analytic_user_function/i18n/sl.po index 101ca2adb9b..ac45fac2eae 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sq.po b/addons/analytic_user_function/i18n/sq.po index 08decc021f4..c60c3794f74 100644 --- a/addons/analytic_user_function/i18n/sq.po +++ b/addons/analytic_user_function/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr.po b/addons/analytic_user_function/i18n/sr.po index cac46df7815..b72d88a2d00 100644 --- a/addons/analytic_user_function/i18n/sr.po +++ b/addons/analytic_user_function/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sr@latin.po b/addons/analytic_user_function/i18n/sr@latin.po index 8af13b9bf54..d44f843f67f 100644 --- a/addons/analytic_user_function/i18n/sr@latin.po +++ b/addons/analytic_user_function/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/sv.po b/addons/analytic_user_function/i18n/sv.po index 57ba0cb9675..90f012a8b2d 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tlh.po b/addons/analytic_user_function/i18n/tlh.po index 3089d93ecde..ff9ffcac694 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/tr.po b/addons/analytic_user_function/i18n/tr.po index 03038d22417..0caad4c4df6 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/uk.po b/addons/analytic_user_function/i18n/uk.po index ffb9ce9c997..844a9c2f2cc 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/vi.po b/addons/analytic_user_function/i18n/vi.po index 923840499d6..b464dc48ca9 100644 --- a/addons/analytic_user_function/i18n/vi.po +++ b/addons/analytic_user_function/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_CN.po b/addons/analytic_user_function/i18n/zh_CN.po index dff4283e3af..ed6edc12959 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/zh_TW.po b/addons/analytic_user_function/i18n/zh_TW.po index 226f8682fac..6d60c0cde2f 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/anonymization/i18n/ar.po b/addons/anonymization/i18n/ar.po index 771fad70030..58ff98bcd4f 100644 --- a/addons/anonymization/i18n/ar.po +++ b/addons/anonymization/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/bg.po b/addons/anonymization/i18n/bg.po index f9a6b0804c7..0bb88b0084d 100644 --- a/addons/anonymization/i18n/bg.po +++ b/addons/anonymization/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ca.po b/addons/anonymization/i18n/ca.po index d4fd43841d3..3dabd0428cb 100644 --- a/addons/anonymization/i18n/ca.po +++ b/addons/anonymization/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/da.po b/addons/anonymization/i18n/da.po index 0ba614c6193..e2917aa4dcc 100644 --- a/addons/anonymization/i18n/da.po +++ b/addons/anonymization/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/de.po b/addons/anonymization/i18n/de.po index 533fe9cb1bf..16c30ff6b2b 100644 --- a/addons/anonymization/i18n/de.po +++ b/addons/anonymization/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/en_GB.po b/addons/anonymization/i18n/en_GB.po index 99d77689850..d9f3958796d 100644 --- a/addons/anonymization/i18n/en_GB.po +++ b/addons/anonymization/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es.po b/addons/anonymization/i18n/es.po index 053c4f11eba..053921dafdf 100644 --- a/addons/anonymization/i18n/es.po +++ b/addons/anonymization/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_CR.po b/addons/anonymization/i18n/es_CR.po index 546f483327a..b0c7982b7cf 100644 --- a/addons/anonymization/i18n/es_CR.po +++ b/addons/anonymization/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index 37e3f32f815..cf1e4514c26 100644 --- a/addons/anonymization/i18n/es_EC.po +++ b/addons/anonymization/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/es_PY.po b/addons/anonymization/i18n/es_PY.po index 402f51b137e..886dccaac7c 100644 --- a/addons/anonymization/i18n/es_PY.po +++ b/addons/anonymization/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/et.po b/addons/anonymization/i18n/et.po index 0489edc0176..885c0906006 100644 --- a/addons/anonymization/i18n/et.po +++ b/addons/anonymization/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fa.po b/addons/anonymization/i18n/fa.po index 1d81f692ab7..e7a69043cbb 100644 --- a/addons/anonymization/i18n/fa.po +++ b/addons/anonymization/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fi.po b/addons/anonymization/i18n/fi.po index 5b4703517ac..8ff4d9e365d 100644 --- a/addons/anonymization/i18n/fi.po +++ b/addons/anonymization/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/fr.po b/addons/anonymization/i18n/fr.po index 5099d0652b9..eb596c8101d 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/gl.po b/addons/anonymization/i18n/gl.po index aa612ab3968..7aa127aaff4 100644 --- a/addons/anonymization/i18n/gl.po +++ b/addons/anonymization/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hr.po b/addons/anonymization/i18n/hr.po index 28ee765f42a..759442edcdd 100644 --- a/addons/anonymization/i18n/hr.po +++ b/addons/anonymization/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/hu.po b/addons/anonymization/i18n/hu.po index fab93d18bad..162e35b5c8c 100644 --- a/addons/anonymization/i18n/hu.po +++ b/addons/anonymization/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/it.po b/addons/anonymization/i18n/it.po index 17ad5cff38d..a9e62ae472f 100644 --- a/addons/anonymization/i18n/it.po +++ b/addons/anonymization/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ja.po b/addons/anonymization/i18n/ja.po index 0ae01f3f961..a52c515e7a2 100644 --- a/addons/anonymization/i18n/ja.po +++ b/addons/anonymization/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/lv.po b/addons/anonymization/i18n/lv.po index 85805dca473..4f89304738d 100644 --- a/addons/anonymization/i18n/lv.po +++ b/addons/anonymization/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mk.po b/addons/anonymization/i18n/mk.po index 0492626d29b..0ee3e1b0ff0 100644 --- a/addons/anonymization/i18n/mk.po +++ b/addons/anonymization/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index 89d3c75d0de..e8b4fac61ef 100644 --- a/addons/anonymization/i18n/mn.po +++ b/addons/anonymization/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nb.po b/addons/anonymization/i18n/nb.po index 679b2ab8dd2..3d610b15adf 100644 --- a/addons/anonymization/i18n/nb.po +++ b/addons/anonymization/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/nl.po b/addons/anonymization/i18n/nl.po index 64b2974b157..e58587a3b8a 100644 --- a/addons/anonymization/i18n/nl.po +++ b/addons/anonymization/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pl.po b/addons/anonymization/i18n/pl.po index 6519b1a5a93..0b081b59362 100644 --- a/addons/anonymization/i18n/pl.po +++ b/addons/anonymization/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt.po b/addons/anonymization/i18n/pt.po index a29d97ba428..a63372f7442 100644 --- a/addons/anonymization/i18n/pt.po +++ b/addons/anonymization/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/pt_BR.po b/addons/anonymization/i18n/pt_BR.po index 02971c67e93..060364fccae 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ro.po b/addons/anonymization/i18n/ro.po index 25d59e864d2..bb2f4fa6d24 100644 --- a/addons/anonymization/i18n/ro.po +++ b/addons/anonymization/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/ru.po b/addons/anonymization/i18n/ru.po index de6f05f4e99..060bc1281ba 100644 --- a/addons/anonymization/i18n/ru.po +++ b/addons/anonymization/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sl.po b/addons/anonymization/i18n/sl.po index f433f6219b0..93e004bfab4 100644 --- a/addons/anonymization/i18n/sl.po +++ b/addons/anonymization/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sq.po b/addons/anonymization/i18n/sq.po index d66371a4a33..e2a98d91655 100644 --- a/addons/anonymization/i18n/sq.po +++ b/addons/anonymization/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sr@latin.po b/addons/anonymization/i18n/sr@latin.po index fc1c8d2d4f7..13412c17b55 100644 --- a/addons/anonymization/i18n/sr@latin.po +++ b/addons/anonymization/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/sv.po b/addons/anonymization/i18n/sv.po index 627ec8b78d7..45dd2487c4e 100644 --- a/addons/anonymization/i18n/sv.po +++ b/addons/anonymization/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/tr.po b/addons/anonymization/i18n/tr.po index 4aeb99afdc8..7d44ddd75c5 100644 --- a/addons/anonymization/i18n/tr.po +++ b/addons/anonymization/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_CN.po b/addons/anonymization/i18n/zh_CN.po index 1ed78879531..ccc876f1787 100644 --- a/addons/anonymization/i18n/zh_CN.po +++ b/addons/anonymization/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index af64ce87ef5..ebdf87f2a2a 100644 --- a/addons/anonymization/i18n/zh_TW.po +++ b/addons/anonymization/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:34+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/association/i18n/ar.po b/addons/association/i18n/ar.po index 31d061ec2c8..be7f7c98c00 100644 --- a/addons/association/i18n/ar.po +++ b/addons/association/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bg.po b/addons/association/i18n/bg.po index df75d6e89f1..55bf1921b56 100644 --- a/addons/association/i18n/bg.po +++ b/addons/association/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/bs.po b/addons/association/i18n/bs.po index 13530ee0fe0..edbd432f5a5 100644 --- a/addons/association/i18n/bs.po +++ b/addons/association/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ca.po b/addons/association/i18n/ca.po index d6a10eef1b3..ffb2a74cab2 100644 --- a/addons/association/i18n/ca.po +++ b/addons/association/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/cs.po b/addons/association/i18n/cs.po index d25555b4f32..eb30ed2e623 100644 --- a/addons/association/i18n/cs.po +++ b/addons/association/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/da.po b/addons/association/i18n/da.po index 010d3720331..c18f26e79a3 100644 --- a/addons/association/i18n/da.po +++ b/addons/association/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/de.po b/addons/association/i18n/de.po index a2dce6d1d5d..979f0302362 100644 --- a/addons/association/i18n/de.po +++ b/addons/association/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/el.po b/addons/association/i18n/el.po index ff62717e5e2..a6a29f28209 100644 --- a/addons/association/i18n/el.po +++ b/addons/association/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/en_GB.po b/addons/association/i18n/en_GB.po index b8969fae8c0..7e97adbc635 100644 --- a/addons/association/i18n/en_GB.po +++ b/addons/association/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es.po b/addons/association/i18n/es.po index 31fa74f1d0e..66c0c52d6c8 100644 --- a/addons/association/i18n/es.po +++ b/addons/association/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_CR.po b/addons/association/i18n/es_CR.po index cb9e15e37c5..e83e146438e 100644 --- a/addons/association/i18n/es_CR.po +++ b/addons/association/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_EC.po b/addons/association/i18n/es_EC.po index 6bc319f6b85..ebefb2cb94b 100644 --- a/addons/association/i18n/es_EC.po +++ b/addons/association/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/es_PY.po b/addons/association/i18n/es_PY.po index 7e0bedd4d8e..8f30ceff708 100644 --- a/addons/association/i18n/es_PY.po +++ b/addons/association/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/et.po b/addons/association/i18n/et.po index 9e4680b2e70..273620178db 100644 --- a/addons/association/i18n/et.po +++ b/addons/association/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fa.po b/addons/association/i18n/fa.po index 771f7ffc272..85c203ec956 100644 --- a/addons/association/i18n/fa.po +++ b/addons/association/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fi.po b/addons/association/i18n/fi.po index 3433f6cb18e..9637f18333a 100644 --- a/addons/association/i18n/fi.po +++ b/addons/association/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/fr.po b/addons/association/i18n/fr.po index deaa5eb65ec..1b602a42f4a 100644 --- a/addons/association/i18n/fr.po +++ b/addons/association/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gl.po b/addons/association/i18n/gl.po index ba44350821b..83a58776b1f 100644 --- a/addons/association/i18n/gl.po +++ b/addons/association/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/gu.po b/addons/association/i18n/gu.po index 8de63f84843..910bf06f80b 100644 --- a/addons/association/i18n/gu.po +++ b/addons/association/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hr.po b/addons/association/i18n/hr.po index f5acbeaf0ed..7d58b982a20 100644 --- a/addons/association/i18n/hr.po +++ b/addons/association/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/hu.po b/addons/association/i18n/hu.po index 1a93ff8a32c..0405b1c15a0 100644 --- a/addons/association/i18n/hu.po +++ b/addons/association/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 @@ -30,7 +30,7 @@ msgstr "Események kezelése" #. module: association #: field:profile.association.config.install_modules_wizard,project_gtd:0 msgid "Getting Things Done" -msgstr "" +msgstr "Getting Things Done - GTD módszer, végezzük el a feladatokat" #. module: association #: model:ir.module.module,description:association.module_meta_information @@ -82,6 +82,8 @@ msgid "" "GTD is a methodology to efficiently organise yourself and your tasks. This " "module fully integrates GTD principle with OpenERP's project management." msgstr "" +"A GTD a feladatok hatékony rendszerezésére szolgáló módszertan. Ez a modul " +"teljesen integrálja a GTD alapelvet az OpenERP projektmenedzsmentjébe." #. module: association #: view:profile.association.config.install_modules_wizard:0 diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po index 74cb9dd4b1c..0462688f4ab 100644 --- a/addons/association/i18n/id.po +++ b/addons/association/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/it.po b/addons/association/i18n/it.po index 569b2159443..0ff55c6ee7f 100644 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ja.po b/addons/association/i18n/ja.po index f0a95fc2e7d..80abb5bdd0c 100644 --- a/addons/association/i18n/ja.po +++ b/addons/association/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ko.po b/addons/association/i18n/ko.po index ea1c3083cd2..e71cbdfc614 100644 --- a/addons/association/i18n/ko.po +++ b/addons/association/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lo.po b/addons/association/i18n/lo.po index c69ef100f62..87834b50b70 100644 --- a/addons/association/i18n/lo.po +++ b/addons/association/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lt.po b/addons/association/i18n/lt.po index d6816f3c746..76980c93adf 100644 --- a/addons/association/i18n/lt.po +++ b/addons/association/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/lv.po b/addons/association/i18n/lv.po index 7aa7a29d724..36ee7009d3d 100644 --- a/addons/association/i18n/lv.po +++ b/addons/association/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mk.po b/addons/association/i18n/mk.po index 46bfc9ae812..08fc51359d7 100644 --- a/addons/association/i18n/mk.po +++ b/addons/association/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-07 05:44+0000\n" -"X-Generator: Launchpad (build 16514)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/mn.po b/addons/association/i18n/mn.po index 9b4470cf440..ee769ece2ef 100644 --- a/addons/association/i18n/mn.po +++ b/addons/association/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nb.po b/addons/association/i18n/nb.po index d8b4fb99270..db82ae9ca21 100644 --- a/addons/association/i18n/nb.po +++ b/addons/association/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/nl.po b/addons/association/i18n/nl.po index 5bace39a028..47d0cc0049f 100644 --- a/addons/association/i18n/nl.po +++ b/addons/association/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pl.po b/addons/association/i18n/pl.po index dcc2c38c516..5275e9611ab 100644 --- a/addons/association/i18n/pl.po +++ b/addons/association/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt.po b/addons/association/i18n/pt.po index 3413d74eb9c..f07c30ef136 100644 --- a/addons/association/i18n/pt.po +++ b/addons/association/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/pt_BR.po b/addons/association/i18n/pt_BR.po index 5bb90d79a27..9b18e1a7175 100644 --- a/addons/association/i18n/pt_BR.po +++ b/addons/association/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ro.po b/addons/association/i18n/ro.po index 26ad2132cd2..6327adf3cd5 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/ru.po b/addons/association/i18n/ru.po index 86e9cfd28b0..2de7374034e 100644 --- a/addons/association/i18n/ru.po +++ b/addons/association/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 @@ -35,7 +35,7 @@ msgstr "Getting Things Done" #. module: association #: model:ir.module.module,description:association.module_meta_information msgid "This module is to create Profile for Associates" -msgstr "" +msgstr "Этот модуль создание профил для ассоциаций" #. module: association #: field:profile.association.config.install_modules_wizard,progress:0 @@ -48,6 +48,8 @@ msgid "" "Here are specific applications related to the Association Profile you " "selected." msgstr "" +"Здесь конкретные приложения, связанные с профилем ассоциации который вы " +"выбрали." #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -91,7 +93,7 @@ msgstr "Управление ресурсами" #. module: association #: model:ir.module.module,shortdesc:association.module_meta_information msgid "Association profile" -msgstr "" +msgstr "Профиль ассоциации" #. module: association #: field:profile.association.config.install_modules_wizard,hr_expense:0 @@ -102,7 +104,7 @@ msgstr "Учет расходов" #: model:ir.actions.act_window,name:association.action_config_install_module #: view:profile.association.config.install_modules_wizard:0 msgid "Association Application Configuration" -msgstr "" +msgstr "Настройка приложения ассоциации" #. module: association #: help:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index 097f2dbe05f..ca3b2e49927 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-10 05:23+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po index 6fbfd7c4aa3..09ab12de12a 100644 --- a/addons/association/i18n/sq.po +++ b/addons/association/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr.po b/addons/association/i18n/sr.po index c06a340aeef..bd6505796b6 100644 --- a/addons/association/i18n/sr.po +++ b/addons/association/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sr@latin.po b/addons/association/i18n/sr@latin.po index d9f395af5b6..6de57302c18 100644 --- a/addons/association/i18n/sr@latin.po +++ b/addons/association/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sv.po b/addons/association/i18n/sv.po index 74070235544..94d1c776740 100644 --- a/addons/association/i18n/sv.po +++ b/addons/association/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tlh.po b/addons/association/i18n/tlh.po index 414ae8fcef5..877c65aefe1 100644 --- a/addons/association/i18n/tlh.po +++ b/addons/association/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/tr.po b/addons/association/i18n/tr.po index 869c906c441..901d6302d15 100644 --- a/addons/association/i18n/tr.po +++ b/addons/association/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-26 05:34+0000\n" -"X-Generator: Launchpad (build 16506)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/uk.po b/addons/association/i18n/uk.po index 254c112853c..058defefecd 100644 --- a/addons/association/i18n/uk.po +++ b/addons/association/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/vi.po b/addons/association/i18n/vi.po index bed249e6c71..bda4f4cdcc4 100644 --- a/addons/association/i18n/vi.po +++ b/addons/association/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_CN.po b/addons/association/i18n/zh_CN.po index 33c5d76bcf4..d0c1b509b60 100644 --- a/addons/association/i18n/zh_CN.po +++ b/addons/association/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/zh_TW.po b/addons/association/i18n/zh_TW.po index 9ac6e53beb4..11d0b7884e4 100644 --- a/addons/association/i18n/zh_TW.po +++ b/addons/association/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:35+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/audittrail/i18n/ar.po b/addons/audittrail/i18n/ar.po index 528ff67c8be..c849f0047a8 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index aefd6c32ab4..a986f57d8e2 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index 71f9c5099fd..1fe9fd02d58 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index f2310142095..babb12c1264 100644 --- a/addons/audittrail/i18n/ca.po +++ b/addons/audittrail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index 90cfd986742..3a128236578 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index be67b263a46..00973f8a83a 100644 --- a/addons/audittrail/i18n/da.po +++ b/addons/audittrail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index cff8b231413..b043cf54770 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index 1b024db8b77..d06b48c1968 100644 --- a/addons/audittrail/i18n/el.po +++ b/addons/audittrail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index 5c47c252cef..c56f8af5610 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index c14244899c9..74a1a5ef7ca 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index 821b117b84a..769839de62e 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index b5cc8e09a43..1d466a1e4e9 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index 8a7dbf02c84..cfcadbbfab9 100644 --- a/addons/audittrail/i18n/es_PY.po +++ b/addons/audittrail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index 857d0c1d253..ec4328024cb 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index 09864918deb..1943cc13f7c 100644 --- a/addons/audittrail/i18n/fa.po +++ b/addons/audittrail/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po index 758df6b634e..f0d8fbff72b 100644 --- a/addons/audittrail/i18n/fa_AF.po +++ b/addons/audittrail/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index ab01898c98c..01edb356782 100644 --- a/addons/audittrail/i18n/fi.po +++ b/addons/audittrail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index 347fb6ac275..1e93d631add 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index ed0634ec227..7cc89b4e75e 100644 --- a/addons/audittrail/i18n/gl.po +++ b/addons/audittrail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index 397da9fbad0..b7ab2110697 100644 --- a/addons/audittrail/i18n/gu.po +++ b/addons/audittrail/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index 22fe630c2b1..ff1b1936a58 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index 75ea4de6b12..be81f4c0a08 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/i18n/hu.po @@ -14,19 +14,19 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 msgid "Old Value Text : " -msgstr "" +msgstr "Szöveg régi értéke: " #. module: audittrail #: code:addons/audittrail/audittrail.py:76 #, python-format msgid "WARNING: audittrail is not part of the pool" -msgstr "" +msgstr "VIGYÁZAT: sávvizsgálat nem képezi részét az összegyűjtött edatnak" #. module: audittrail #: field:audittrail.log.line,log_id:0 @@ -37,7 +37,7 @@ msgstr "Napló" #: view:audittrail.rule:0 #: selection:audittrail.rule,state:0 msgid "Subscribed" -msgstr "" +msgstr "Feliratkozva" #. module: audittrail #: code:addons/audittrail/audittrail.py:260 @@ -45,31 +45,31 @@ msgstr "" #: code:addons/audittrail/audittrail.py:408 #, python-format msgid "'%s' Model does not exist..." -msgstr "" +msgstr "'%s' Modell nem létezik..." #. module: audittrail #: view:audittrail.rule:0 msgid "Subscribed Rule" -msgstr "" +msgstr "Szabály a feliratkozáshoz" #. module: audittrail #: view:audittrail.rule:0 #: model:ir.model,name:audittrail.model_audittrail_rule msgid "Audittrail Rule" -msgstr "" +msgstr "Szabály a sávvizsgálatra" #. module: audittrail #: view:audittrail.rule:0 #: field:audittrail.rule,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: audittrail #: view:audittrail.view.log:0 #: model:ir.actions.act_window,name:audittrail.action_audittrail_log_tree #: model:ir.ui.menu,name:audittrail.menu_audit_logs msgid "Audit Logs" -msgstr "" +msgstr "Vizsgálati naplózások" #. module: audittrail #: view:audittrail.log:0 @@ -80,7 +80,7 @@ msgstr "Csoportosítás..." #. module: audittrail #: view:audittrail.rule:0 msgid "_Subscribe" -msgstr "" +msgstr "_Feliratkozás" #. module: audittrail #: view:audittrail.rule:0 @@ -104,6 +104,8 @@ msgid "" "Select this if you want to keep track of read/open on any record of the " "object of this rule" msgstr "" +"Válassza ezt, ha nyomon akarja követni ehhez a szabályhoz tartozó bármely " +"objektum rekord írását/olvasását" #. module: audittrail #: field:audittrail.log,method:0 @@ -113,7 +115,7 @@ msgstr "Módszer" #. module: audittrail #: field:audittrail.view.log,from:0 msgid "Log From" -msgstr "" +msgstr "Naplózási forma" #. module: audittrail #: field:audittrail.log.line,log:0 @@ -128,7 +130,7 @@ msgstr "Forrás ID" #. module: audittrail #: help:audittrail.rule,user_id:0 msgid "if User is not added then it will applicable for all users" -msgstr "" +msgstr "Ha nincs felhasználó hozzáadva akkor minden felhasználó hozzáférhet" #. module: audittrail #: help:audittrail.rule,log_workflow:0 @@ -136,6 +138,8 @@ msgid "" "Select this if you want to keep track of workflow on any record of the " "object of this rule" msgstr "" +"Válassza ezt, ha nyomon akarja követni ehhez a szabályhoz tartozó bármely " +"objektum rekord munkafolyamatát" #. module: audittrail #: field:audittrail.rule,user_id:0 @@ -145,7 +149,7 @@ msgstr "Felhasználók" #. module: audittrail #: view:audittrail.log:0 msgid "Log Lines" -msgstr "" +msgstr "Naplózási sorok" #. module: audittrail #: view:audittrail.log:0 @@ -157,28 +161,28 @@ msgstr "Tárgy" #. module: audittrail #: view:audittrail.rule:0 msgid "AuditTrail Rule" -msgstr "" +msgstr "Sávvizsgálati szabály" #. module: audittrail #: field:audittrail.view.log,to:0 msgid "Log To" -msgstr "" +msgstr "Napló erre" #. module: audittrail #: view:audittrail.log:0 msgid "New Value Text: " -msgstr "" +msgstr "Új érték a szövegre: " #. module: audittrail #: view:audittrail.rule:0 msgid "Search Audittrail Rule" -msgstr "" +msgstr "Sávvizsgálati szabály keresése" #. module: audittrail #: model:ir.actions.act_window,name:audittrail.action_audittrail_rule_tree #: model:ir.ui.menu,name:audittrail.menu_action_audittrail_rule_tree msgid "Audit Rules" -msgstr "" +msgstr "Vizsgálati szabályok" #. module: audittrail #: view:audittrail.log:0 @@ -202,42 +206,45 @@ msgid "" "Select this if you want to keep track of modification on any record of the " "object of this rule" msgstr "" +"Válassza ezt, ha nyomon akarja követni ehhez a szabályhoz tartozó bármely " +"objektum rekord módosítását" #. module: audittrail #: view:audittrail.rule:0 msgid "AuditTrail Rules" -msgstr "" +msgstr "Sávvizsgálati szabályok" #. module: audittrail #: help:audittrail.rule,object_id:0 msgid "Select object for which you want to generate log." -msgstr "" +msgstr "Válassza ki az objektumot amire a naplózást szeretné végezni." #. module: audittrail #: model:ir.ui.menu,name:audittrail.menu_audit msgid "Audit" -msgstr "" +msgstr "Vizsgálat" #. module: audittrail #: field:audittrail.rule,log_workflow:0 msgid "Log Workflow" -msgstr "" +msgstr "Naplózza a munkafolyamatot" #. module: audittrail #: field:audittrail.rule,log_read:0 msgid "Log Reads" -msgstr "" +msgstr "Naplózza az olvasásokat" #. module: audittrail #: code:addons/audittrail/audittrail.py:77 #, python-format msgid "Change audittrail depends -- Setting rule as DRAFT" msgstr "" +"Sávvizsgálat függőség megváltoztatása -- A szabály TERVEZET -re állítja" #. module: audittrail #: field:audittrail.log,line_ids:0 msgid "Log lines" -msgstr "" +msgstr "Naplózza a sorokat" #. module: audittrail #: field:audittrail.log.line,field_id:0 @@ -247,7 +254,7 @@ msgstr "Mezők" #. module: audittrail #: field:audittrail.rule,log_create:0 msgid "Log Creates" -msgstr "" +msgstr "Naplózza a létrehozásokat" #. module: audittrail #: help:audittrail.rule,log_unlink:0 @@ -255,6 +262,8 @@ msgid "" "Select this if you want to keep track of deletion on any record of the " "object of this rule" msgstr "" +"Válassza ezt, ha nyomon akarja követni ehhez a szabályhoz tartozó bármely " +"objektum rekord törlését" #. module: audittrail #: view:audittrail.log:0 @@ -271,6 +280,8 @@ msgstr "Művelet ID" #: view:audittrail.rule:0 msgid "Users (if User is not added then it will applicable for all users)" msgstr "" +"Felhasználók (ha nincs felhasználó hozzáadva akkor az összes felhasználóra " +"érvényes)" #. module: audittrail #: view:audittrail.rule:0 @@ -283,17 +294,19 @@ msgid "" "There is already a rule defined on this object\n" " You cannot define another: please edit the existing one." msgstr "" +"Erre az objektumra már van szabály\n" +" Nem tud másikat meghatározni: kérem szerkessze a meglévőt." #. module: audittrail #: field:audittrail.rule,log_unlink:0 msgid "Log Deletes" -msgstr "" +msgstr "Naplók a törlésre" #. module: audittrail #: view:audittrail.log:0 #: view:audittrail.rule:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: audittrail #: field:audittrail.log.line,field_description:0 @@ -303,22 +316,22 @@ msgstr "Mező leírása" #. module: audittrail #: view:audittrail.log:0 msgid "Search Audittrail Log" -msgstr "" +msgstr "Sávvizsgálat napló keresése" #. module: audittrail #: field:audittrail.rule,log_write:0 msgid "Log Writes" -msgstr "" +msgstr "Napló az írásra" #. module: audittrail #: view:audittrail.view.log:0 msgid "Open Logs" -msgstr "" +msgstr "Naplók megnyitása" #. module: audittrail #: field:audittrail.log.line,new_value_text:0 msgid "New value Text" -msgstr "" +msgstr "Szöveh új értéke" #. module: audittrail #: field:audittrail.rule,name:0 @@ -334,29 +347,31 @@ msgstr "Új érték" #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "'%s' mező nem létezik a '%s' modellben" #. module: audittrail #: view:audittrail.log:0 msgid "AuditTrail Logs" -msgstr "" +msgstr "Sávvizsgálati naplók" #. module: audittrail #: view:audittrail.rule:0 msgid "Draft Rule" -msgstr "" +msgstr "Szabály tervezet" #. module: audittrail #: view:audittrail.log:0 #: model:ir.model,name:audittrail.model_audittrail_log msgid "Audittrail Log" -msgstr "" +msgstr "Sávvizsgálati napló" #. module: audittrail #: help:audittrail.rule,log_action:0 msgid "" "Select this if you want to keep track of actions on the object of this rule" msgstr "" +"VVálassza ezt, ha nyomon akarja követni ehhez a szabályhoz tartozó bármely " +"objektum rekord műveleteit" #. module: audittrail #: view:audittrail.log:0 @@ -366,32 +381,32 @@ msgstr "Új érték : " #. module: audittrail #: field:audittrail.log.line,old_value_text:0 msgid "Old value Text" -msgstr "" +msgstr "Szöveg régi értéke" #. module: audittrail #: view:audittrail.view.log:0 msgid "Cancel" -msgstr "" +msgstr "Megszakítás" #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_view_log msgid "View Log" -msgstr "" +msgstr "Napló megtekintése" #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_log_line msgid "Log Line" -msgstr "" +msgstr "Napló a sorokra" #. module: audittrail #: view:audittrail.view.log:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: audittrail #: field:audittrail.rule,log_action:0 msgid "Log Action" -msgstr "" +msgstr "napló a műveletekre" #. module: audittrail #: help:audittrail.rule,log_create:0 @@ -399,3 +414,5 @@ msgid "" "Select this if you want to keep track of creation on any record of the " "object of this rule" msgstr "" +"Válassza ezt, ha nyomon akarja követni ehhez a szabályhoz tartozó bármely " +"objektum rekord létrehozását" diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index 8eeb2f279f7..710bc810de2 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index d0e77c86602..35dd9cd4b9f 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index 4a8101ec664..0d0bb469ec3 100644 --- a/addons/audittrail/i18n/ja.po +++ b/addons/audittrail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index e4f16ce2084..942bfe9a9e3 100644 --- a/addons/audittrail/i18n/ko.po +++ b/addons/audittrail/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index 75f65cc826e..9656d0b8624 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index 1a9df53fcd1..7f85dfcdb05 100644 --- a/addons/audittrail/i18n/lv.po +++ b/addons/audittrail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mk.po b/addons/audittrail/i18n/mk.po index 7c802e43b8f..7bbb29f752c 100644 --- a/addons/audittrail/i18n/mk.po +++ b/addons/audittrail/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index ed4e57b8027..5be3bc14f62 100644 --- a/addons/audittrail/i18n/mn.po +++ b/addons/audittrail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index 22c0807b889..b378fb2a9c4 100644 --- a/addons/audittrail/i18n/nb.po +++ b/addons/audittrail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index 9d59bb348e3..c7659920631 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index b985e234f1d..11015a8d0a6 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index 41dcf0ec0fd..02c7a659de6 100644 --- a/addons/audittrail/i18n/oc.po +++ b/addons/audittrail/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index 393208be486..4408ca37942 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index 8c63c7d94c1..b16d57f1ea2 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index d0eefa64921..aa8b67a608e 100644 --- a/addons/audittrail/i18n/pt_BR.po +++ b/addons/audittrail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index c3e8312696c..12574d14a83 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index f74e2ebc468..208fe75acfd 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index 0b46ca82ffe..576b38aba40 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index f4cbe3ef82e..0c9503d11cb 100644 --- a/addons/audittrail/i18n/sq.po +++ b/addons/audittrail/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index 62e30df8c48..da2d19819b0 100644 --- a/addons/audittrail/i18n/sr@latin.po +++ b/addons/audittrail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index 79fabf754d4..4199c4eaaeb 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index d16a1b4729c..9e7f3c98889 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index 6c698b87a49..e22928750e8 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index dbcac3874a6..6b2bc526cbb 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index 456afc7ba59..2afece2c05e 100644 --- a/addons/audittrail/i18n/vi.po +++ b/addons/audittrail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index c267358d6b6..ccab2ce61c8 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index 91d041cb933..1e7426fe253 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/auth_crypt/i18n/ar.po b/addons/auth_crypt/i18n/ar.po index fb8d4f1a2ec..f91d7386128 100644 --- a/addons/auth_crypt/i18n/ar.po +++ b/addons/auth_crypt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po index fb756a313f1..50d7500f757 100644 --- a/addons/auth_crypt/i18n/de.po +++ b/addons/auth_crypt/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/en_GB.po b/addons/auth_crypt/i18n/en_GB.po index 3c83ce85a92..c34461752dd 100644 --- a/addons/auth_crypt/i18n/en_GB.po +++ b/addons/auth_crypt/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/es.po b/addons/auth_crypt/i18n/es.po index 8864dd96f47..5ef8279c761 100644 --- a/addons/auth_crypt/i18n/es.po +++ b/addons/auth_crypt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/fr.po b/addons/auth_crypt/i18n/fr.po index 28e79131ef0..1b838566d29 100644 --- a/addons/auth_crypt/i18n/fr.po +++ b/addons/auth_crypt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hr.po b/addons/auth_crypt/i18n/hr.po index d37de87cef3..61a60414d21 100644 --- a/addons/auth_crypt/i18n/hr.po +++ b/addons/auth_crypt/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/hu.po b/addons/auth_crypt/i18n/hu.po index 39921ee5ba8..265d36fd0fb 100644 --- a/addons/auth_crypt/i18n/hu.po +++ b/addons/auth_crypt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/it.po b/addons/auth_crypt/i18n/it.po index 53a2c1e346a..e67ce9f5841 100644 --- a/addons/auth_crypt/i18n/it.po +++ b/addons/auth_crypt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mk.po b/addons/auth_crypt/i18n/mk.po index 2abbacc8671..a3f2b0e1dd3 100644 --- a/addons/auth_crypt/i18n/mk.po +++ b/addons/auth_crypt/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/mn.po b/addons/auth_crypt/i18n/mn.po index 781f3b19cdf..f510c67add6 100644 --- a/addons/auth_crypt/i18n/mn.po +++ b/addons/auth_crypt/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl.po b/addons/auth_crypt/i18n/nl.po index 43182f958f5..1829a764177 100644 --- a/addons/auth_crypt/i18n/nl.po +++ b/addons/auth_crypt/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt.po b/addons/auth_crypt/i18n/pt.po index 1f231a18fba..01964355e55 100644 --- a/addons/auth_crypt/i18n/pt.po +++ b/addons/auth_crypt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/pt_BR.po b/addons/auth_crypt/i18n/pt_BR.po index ed9649b71e4..011ac3d5f44 100644 --- a/addons/auth_crypt/i18n/pt_BR.po +++ b/addons/auth_crypt/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ro.po b/addons/auth_crypt/i18n/ro.po index 2a4921aae35..2d4c374d1b1 100644 --- a/addons/auth_crypt/i18n/ro.po +++ b/addons/auth_crypt/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/ru.po b/addons/auth_crypt/i18n/ru.po index e8531a0ef3a..368441033d4 100644 --- a/addons/auth_crypt/i18n/ru.po +++ b/addons/auth_crypt/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sl.po b/addons/auth_crypt/i18n/sl.po index 4f88e2dc31f..26751d0e21b 100644 --- a/addons/auth_crypt/i18n/sl.po +++ b/addons/auth_crypt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/sv.po b/addons/auth_crypt/i18n/sv.po index 8093cd9eb42..dac57823efe 100644 --- a/addons/auth_crypt/i18n/sv.po +++ b/addons/auth_crypt/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/tr.po b/addons/auth_crypt/i18n/tr.po index b1f69db9dfc..320a23ba168 100644 --- a/addons/auth_crypt/i18n/tr.po +++ b/addons/auth_crypt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/zh_CN.po b/addons/auth_crypt/i18n/zh_CN.po index a7961e4bdc0..16bc661ca22 100644 --- a/addons/auth_crypt/i18n/zh_CN.po +++ b/addons/auth_crypt/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_ldap/i18n/ar.po b/addons/auth_ldap/i18n/ar.po index 2bb3e8cf485..e6de6066b18 100644 --- a/addons/auth_ldap/i18n/ar.po +++ b/addons/auth_ldap/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/bg.po b/addons/auth_ldap/i18n/bg.po index ad53aa18013..c44235160f3 100644 --- a/addons/auth_ldap/i18n/bg.po +++ b/addons/auth_ldap/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ca.po b/addons/auth_ldap/i18n/ca.po index cad8ea47a3c..7e4f62b9fde 100644 --- a/addons/auth_ldap/i18n/ca.po +++ b/addons/auth_ldap/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/da.po b/addons/auth_ldap/i18n/da.po index 5dc8f06f2b9..d137adafcfc 100644 --- a/addons/auth_ldap/i18n/da.po +++ b/addons/auth_ldap/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/de.po b/addons/auth_ldap/i18n/de.po index d6a0f794ab2..429e285aa12 100644 --- a/addons/auth_ldap/i18n/de.po +++ b/addons/auth_ldap/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/en_GB.po b/addons/auth_ldap/i18n/en_GB.po index 9b3881ba2dc..39552caaf05 100644 --- a/addons/auth_ldap/i18n/en_GB.po +++ b/addons/auth_ldap/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es.po b/addons/auth_ldap/i18n/es.po index fd974dee9ed..53d11003db6 100644 --- a/addons/auth_ldap/i18n/es.po +++ b/addons/auth_ldap/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/es_CR.po b/addons/auth_ldap/i18n/es_CR.po index 3183adf8341..ba5391b3ac4 100644 --- a/addons/auth_ldap/i18n/es_CR.po +++ b/addons/auth_ldap/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index 304d0118b2a..53a8104a88e 100644 --- a/addons/auth_ldap/i18n/fi.po +++ b/addons/auth_ldap/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/fr.po b/addons/auth_ldap/i18n/fr.po index 6b8c10a5289..9b9165e4190 100644 --- a/addons/auth_ldap/i18n/fr.po +++ b/addons/auth_ldap/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/gl.po b/addons/auth_ldap/i18n/gl.po index 21abf1466e6..0397f2929bb 100644 --- a/addons/auth_ldap/i18n/gl.po +++ b/addons/auth_ldap/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hr.po b/addons/auth_ldap/i18n/hr.po index f929087ed7d..bcc35b224bc 100644 --- a/addons/auth_ldap/i18n/hr.po +++ b/addons/auth_ldap/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/hu.po b/addons/auth_ldap/i18n/hu.po index ee82589fe21..2fc94316a16 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/it.po b/addons/auth_ldap/i18n/it.po index 7a4601e3091..b832af2ef43 100644 --- a/addons/auth_ldap/i18n/it.po +++ b/addons/auth_ldap/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ja.po b/addons/auth_ldap/i18n/ja.po index b4536cfe664..27590fb0ecd 100644 --- a/addons/auth_ldap/i18n/ja.po +++ b/addons/auth_ldap/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mk.po b/addons/auth_ldap/i18n/mk.po index 8e9da1e92c9..956177c6bd1 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/mn.po b/addons/auth_ldap/i18n/mn.po index ee0944f4235..806ce3c544c 100644 --- a/addons/auth_ldap/i18n/mn.po +++ b/addons/auth_ldap/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nb.po b/addons/auth_ldap/i18n/nb.po index 394055b96aa..89b094b2913 100644 --- a/addons/auth_ldap/i18n/nb.po +++ b/addons/auth_ldap/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/nl.po b/addons/auth_ldap/i18n/nl.po index 62479b63092..31d7f4f68d3 100644 --- a/addons/auth_ldap/i18n/nl.po +++ b/addons/auth_ldap/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pl.po b/addons/auth_ldap/i18n/pl.po index 1ce7e257310..c6b1c313bcd 100644 --- a/addons/auth_ldap/i18n/pl.po +++ b/addons/auth_ldap/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt.po b/addons/auth_ldap/i18n/pt.po index d2adcaad350..a78b9da4e85 100644 --- a/addons/auth_ldap/i18n/pt.po +++ b/addons/auth_ldap/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/pt_BR.po b/addons/auth_ldap/i18n/pt_BR.po index c10839e5d85..d2181d5354b 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ro.po b/addons/auth_ldap/i18n/ro.po index 40309d133eb..fd2dacc85d3 100644 --- a/addons/auth_ldap/i18n/ro.po +++ b/addons/auth_ldap/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/ru.po b/addons/auth_ldap/i18n/ru.po index b842221a08f..f8ba89435cf 100644 --- a/addons/auth_ldap/i18n/ru.po +++ b/addons/auth_ldap/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sl.po b/addons/auth_ldap/i18n/sl.po index df93e9e03c7..4f3d0a308de 100644 --- a/addons/auth_ldap/i18n/sl.po +++ b/addons/auth_ldap/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index 0b05b96d580..08131f5900d 100644 --- a/addons/auth_ldap/i18n/sv.po +++ b/addons/auth_ldap/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/tr.po b/addons/auth_ldap/i18n/tr.po index f35418ec042..2becd64d154 100644 --- a/addons/auth_ldap/i18n/tr.po +++ b/addons/auth_ldap/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/zh_CN.po b/addons/auth_ldap/i18n/zh_CN.po index 6c44a9af46a..6f8dee37e55 100644 --- a/addons/auth_ldap/i18n/zh_CN.po +++ b/addons/auth_ldap/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_oauth/i18n/ar.po b/addons/auth_oauth/i18n/ar.po index 7be85512b9a..84844e2e09e 100644 --- a/addons/auth_oauth/i18n/ar.po +++ b/addons/auth_oauth/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/de.po b/addons/auth_oauth/i18n/de.po index 4ec26d39f7e..2ba34f3d6b8 100644 --- a/addons/auth_oauth/i18n/de.po +++ b/addons/auth_oauth/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/en_GB.po b/addons/auth_oauth/i18n/en_GB.po index 5acee3b6c59..87a2776b01e 100644 --- a/addons/auth_oauth/i18n/en_GB.po +++ b/addons/auth_oauth/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/es.po b/addons/auth_oauth/i18n/es.po index a7d28dda699..ca05c8861f2 100644 --- a/addons/auth_oauth/i18n/es.po +++ b/addons/auth_oauth/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/fr.po b/addons/auth_oauth/i18n/fr.po index 878d5254af9..73c26526bca 100644 --- a/addons/auth_oauth/i18n/fr.po +++ b/addons/auth_oauth/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hr.po b/addons/auth_oauth/i18n/hr.po index 0297895503e..00efac29af8 100644 --- a/addons/auth_oauth/i18n/hr.po +++ b/addons/auth_oauth/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/hu.po b/addons/auth_oauth/i18n/hu.po index c69e15c4e25..9f540590dca 100644 --- a/addons/auth_oauth/i18n/hu.po +++ b/addons/auth_oauth/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po index dabdcbd3df8..149e37e464c 100644 --- a/addons/auth_oauth/i18n/it.po +++ b/addons/auth_oauth/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/mk.po b/addons/auth_oauth/i18n/mk.po index 8a9399e68d2..01fbfa22c45 100644 --- a/addons/auth_oauth/i18n/mk.po +++ b/addons/auth_oauth/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nb.po b/addons/auth_oauth/i18n/nb.po index 176e1a5d204..cc370fe8118 100644 --- a/addons/auth_oauth/i18n/nb.po +++ b/addons/auth_oauth/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po index dac4ca21ce5..2dfa65314ae 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po index 32494c331e6..87207bf7a10 100644 --- a/addons/auth_oauth/i18n/pl.po +++ b/addons/auth_oauth/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt.po b/addons/auth_oauth/i18n/pt.po index 9af09d0ed92..7c56c222e83 100644 --- a/addons/auth_oauth/i18n/pt.po +++ b/addons/auth_oauth/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index 92ba5799357..238ccd1d3e9 100644 --- a/addons/auth_oauth/i18n/pt_BR.po +++ b/addons/auth_oauth/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/ro.po b/addons/auth_oauth/i18n/ro.po index bba0d231cc6..03fb4fda971 100644 --- a/addons/auth_oauth/i18n/ro.po +++ b/addons/auth_oauth/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sl.po b/addons/auth_oauth/i18n/sl.po index 02838205742..7548b8a3c6e 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po index 2933a29581b..e05f6376315 100644 --- a/addons/auth_oauth/i18n/sv.po +++ b/addons/auth_oauth/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/tr.po b/addons/auth_oauth/i18n/tr.po index 7d252f5ca75..504599cc4bb 100644 --- a/addons/auth_oauth/i18n/tr.po +++ b/addons/auth_oauth/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index 8552649d1d6..f92968a4bf1 100644 --- a/addons/auth_oauth/i18n/zh_CN.po +++ b/addons/auth_oauth/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po index 1c4e2194e03..25883797597 100644 --- a/addons/auth_oauth_signup/i18n/de.po +++ b/addons/auth_oauth_signup/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/en_GB.po b/addons/auth_oauth_signup/i18n/en_GB.po index a32ff61df9f..356be787bd0 100644 --- a/addons/auth_oauth_signup/i18n/en_GB.po +++ b/addons/auth_oauth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/es.po b/addons/auth_oauth_signup/i18n/es.po index f41e453a5bf..3fcd50a4bd8 100644 --- a/addons/auth_oauth_signup/i18n/es.po +++ b/addons/auth_oauth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/fr.po b/addons/auth_oauth_signup/i18n/fr.po index 197f02abbe2..7ccf8cab7e8 100644 --- a/addons/auth_oauth_signup/i18n/fr.po +++ b/addons/auth_oauth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hr.po b/addons/auth_oauth_signup/i18n/hr.po index eae931a6175..0767da3aab5 100644 --- a/addons/auth_oauth_signup/i18n/hr.po +++ b/addons/auth_oauth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/hu.po b/addons/auth_oauth_signup/i18n/hu.po index 2c1eae0eb30..e228f3f8bb7 100644 --- a/addons/auth_oauth_signup/i18n/hu.po +++ b/addons/auth_oauth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/it.po b/addons/auth_oauth_signup/i18n/it.po index 7dfa505cfb4..1c235fc294a 100644 --- a/addons/auth_oauth_signup/i18n/it.po +++ b/addons/auth_oauth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mk.po b/addons/auth_oauth_signup/i18n/mk.po index 8953c47a8bc..ad8a3ac41cd 100644 --- a/addons/auth_oauth_signup/i18n/mk.po +++ b/addons/auth_oauth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/mn.po b/addons/auth_oauth_signup/i18n/mn.po index 1875d10b4d8..21a9dd80c73 100644 --- a/addons/auth_oauth_signup/i18n/mn.po +++ b/addons/auth_oauth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl.po b/addons/auth_oauth_signup/i18n/nl.po index 858da4fe8c4..85ab2af949c 100644 --- a/addons/auth_oauth_signup/i18n/nl.po +++ b/addons/auth_oauth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt.po b/addons/auth_oauth_signup/i18n/pt.po index c6297e44fb5..1818d2859e0 100644 --- a/addons/auth_oauth_signup/i18n/pt.po +++ b/addons/auth_oauth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/pt_BR.po b/addons/auth_oauth_signup/i18n/pt_BR.po index 4e710ff1b29..707021ff3c2 100644 --- a/addons/auth_oauth_signup/i18n/pt_BR.po +++ b/addons/auth_oauth_signup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ro.po b/addons/auth_oauth_signup/i18n/ro.po index 81061ff2b96..4772eea2f25 100644 --- a/addons/auth_oauth_signup/i18n/ro.po +++ b/addons/auth_oauth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/ru.po b/addons/auth_oauth_signup/i18n/ru.po index 0d0ecba9d21..0945dfcd560 100644 --- a/addons/auth_oauth_signup/i18n/ru.po +++ b/addons/auth_oauth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sl.po b/addons/auth_oauth_signup/i18n/sl.po index 352279dfc5f..1ef19b9c4bf 100644 --- a/addons/auth_oauth_signup/i18n/sl.po +++ b/addons/auth_oauth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/sv.po b/addons/auth_oauth_signup/i18n/sv.po index 306d3f490df..9c2e5685c44 100644 --- a/addons/auth_oauth_signup/i18n/sv.po +++ b/addons/auth_oauth_signup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/tr.po b/addons/auth_oauth_signup/i18n/tr.po index 182d2ab9490..27a66cf896d 100644 --- a/addons/auth_oauth_signup/i18n/tr.po +++ b/addons/auth_oauth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_CN.po b/addons/auth_oauth_signup/i18n/zh_CN.po index adeb94977c9..598872b27e4 100644 --- a/addons/auth_oauth_signup/i18n/zh_CN.po +++ b/addons/auth_oauth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/zh_TW.po b/addons/auth_oauth_signup/i18n/zh_TW.po index afa762eb913..0a7f5068971 100644 --- a/addons/auth_oauth_signup/i18n/zh_TW.po +++ b/addons/auth_oauth_signup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_openid/i18n/ar.po b/addons/auth_openid/i18n/ar.po index 9f6e693f6ba..a49e8dde9bc 100644 --- a/addons/auth_openid/i18n/ar.po +++ b/addons/auth_openid/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index 54692672985..9432aafad3a 100644 --- a/addons/auth_openid/i18n/de.po +++ b/addons/auth_openid/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/en_GB.po b/addons/auth_openid/i18n/en_GB.po index 92dcbe027ed..251379010f3 100644 --- a/addons/auth_openid/i18n/en_GB.po +++ b/addons/auth_openid/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index 7e3b9ecc9ab..fcc6b161fa5 100644 --- a/addons/auth_openid/i18n/es.po +++ b/addons/auth_openid/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es_CR.po b/addons/auth_openid/i18n/es_CR.po index 0dff185e4b7..e6a77a6646f 100644 --- a/addons/auth_openid/i18n/es_CR.po +++ b/addons/auth_openid/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index 5d7993a1cfb..c22a28ce5d0 100644 --- a/addons/auth_openid/i18n/fi.po +++ b/addons/auth_openid/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index 5da2fe1cbfc..f4ffc28ccfc 100644 --- a/addons/auth_openid/i18n/fr.po +++ b/addons/auth_openid/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index 683576aeaaf..41ec454fba6 100644 --- a/addons/auth_openid/i18n/gu.po +++ b/addons/auth_openid/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index 610b9465e30..d6b9d85dc1e 100644 --- a/addons/auth_openid/i18n/hr.po +++ b/addons/auth_openid/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hu.po b/addons/auth_openid/i18n/hu.po index c9e89c92f91..17f466457b2 100644 --- a/addons/auth_openid/i18n/hu.po +++ b/addons/auth_openid/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index d39c4384d23..bef28983b7f 100644 --- a/addons/auth_openid/i18n/it.po +++ b/addons/auth_openid/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index 40a333a1156..9ab53788ba3 100644 --- a/addons/auth_openid/i18n/ja.po +++ b/addons/auth_openid/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mk.po b/addons/auth_openid/i18n/mk.po index ca4c1b55e21..dfaa6c2b512 100644 --- a/addons/auth_openid/i18n/mk.po +++ b/addons/auth_openid/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mn.po b/addons/auth_openid/i18n/mn.po index 958127ca2a4..814b40f2860 100644 --- a/addons/auth_openid/i18n/mn.po +++ b/addons/auth_openid/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index 453e190ae75..12b42089bd0 100644 --- a/addons/auth_openid/i18n/nb.po +++ b/addons/auth_openid/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index 4c5eb0cc784..2f653dbdf16 100644 --- a/addons/auth_openid/i18n/nl.po +++ b/addons/auth_openid/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index 3a51b519450..2d1b0b3449e 100644 --- a/addons/auth_openid/i18n/pl.po +++ b/addons/auth_openid/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index d809015430c..dc6b66061b2 100644 --- a/addons/auth_openid/i18n/pt.po +++ b/addons/auth_openid/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt_BR.po b/addons/auth_openid/i18n/pt_BR.po index 7516b6e9e7f..75e5a033968 100644 --- a/addons/auth_openid/i18n/pt_BR.po +++ b/addons/auth_openid/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index f1b8450ea12..16d580eba8a 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ru.po b/addons/auth_openid/i18n/ru.po index 45a5b7304c4..ee573fbc358 100644 --- a/addons/auth_openid/i18n/ru.po +++ b/addons/auth_openid/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-24 05:11+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index 2a5cb1120ba..71945b82eeb 100644 --- a/addons/auth_openid/i18n/sk.po +++ b/addons/auth_openid/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po index 4282c03d4fc..21c1431ff9c 100644 --- a/addons/auth_openid/i18n/sl.po +++ b/addons/auth_openid/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sr@latin.po b/addons/auth_openid/i18n/sr@latin.po index 4b2706b3591..b27bf37f455 100644 --- a/addons/auth_openid/i18n/sr@latin.po +++ b/addons/auth_openid/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index 6d77caa9aec..06fa240112a 100644 --- a/addons/auth_openid/i18n/sv.po +++ b/addons/auth_openid/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index a64f33b70af..b7198834740 100644 --- a/addons/auth_openid/i18n/tr.po +++ b/addons/auth_openid/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/zh_CN.po b/addons/auth_openid/i18n/zh_CN.po index f0531bfd24c..369c01270b7 100644 --- a/addons/auth_openid/i18n/zh_CN.po +++ b/addons/auth_openid/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index f70e93547cf..8d6eaeafe38 100644 --- a/addons/auth_signup/i18n/ar.po +++ b/addons/auth_signup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po index 2a851e04662..0b20a4f24fa 100644 --- a/addons/auth_signup/i18n/de.po +++ b/addons/auth_signup/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/en_GB.po b/addons/auth_signup/i18n/en_GB.po index 5fd555b4ae3..b598e604ce0 100644 --- a/addons/auth_signup/i18n/en_GB.po +++ b/addons/auth_signup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index 092ae26bae9..25154872a76 100644 --- a/addons/auth_signup/i18n/es.po +++ b/addons/auth_signup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/es_CO.po b/addons/auth_signup/i18n/es_CO.po index af7ec33c4c5..e8d8e0dd873 100644 --- a/addons/auth_signup/i18n/es_CO.po +++ b/addons/auth_signup/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po index ffc7d596905..b6f82810d99 100644 --- a/addons/auth_signup/i18n/fr.po +++ b/addons/auth_signup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index cc3c08d2472..394cbc09b1d 100644 --- a/addons/auth_signup/i18n/hr.po +++ b/addons/auth_signup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po index 217d4c3365a..4b3ff5bcd7c 100644 --- a/addons/auth_signup/i18n/hu.po +++ b/addons/auth_signup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -351,3 +351,13 @@ msgstr "Regisztrációs token" #, python-format #~ msgid "Sign up" #~ msgstr "Regisztrál" + +#~ msgid "Reset Password" +#~ msgstr "Jelszó visszaállítása" + +#, python-format +#~ msgid "Mail sent to:" +#~ msgstr "Címzett:" + +#~ msgid "Send an email to the user to (re)set their password." +#~ msgstr "Küldjön egy e-mailt a felhasználónak a jelszava visszaállításához." diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index 4103a25e359..0e486d83cc9 100644 --- a/addons/auth_signup/i18n/it.po +++ b/addons/auth_signup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index b4a4d916909..a456d06dff9 100644 --- a/addons/auth_signup/i18n/mk.po +++ b/addons/auth_signup/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: auth_signup diff --git a/addons/auth_signup/i18n/mn.po b/addons/auth_signup/i18n/mn.po index 8a92d4040ea..e51084203f4 100644 --- a/addons/auth_signup/i18n/mn.po +++ b/addons/auth_signup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index 6a946ea4906..5bfc7d50eab 100644 --- a/addons/auth_signup/i18n/nb.po +++ b/addons/auth_signup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index e136beec522..ec8210057b0 100644 --- a/addons/auth_signup/i18n/nl.po +++ b/addons/auth_signup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:23+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index fcd7402a569..39161c2837e 100644 --- a/addons/auth_signup/i18n/pl.po +++ b/addons/auth_signup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index 46323fc2862..8fef5de930c 100644 --- a/addons/auth_signup/i18n/pt.po +++ b/addons/auth_signup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index 2b6a7b3a629..4c6942bba70 100644 --- a/addons/auth_signup/i18n/pt_BR.po +++ b/addons/auth_signup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po index 09ed01346f5..2524ade7003 100644 --- a/addons/auth_signup/i18n/ro.po +++ b/addons/auth_signup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index 0fe462150c8..59008ff3e72 100644 --- a/addons/auth_signup/i18n/ru.po +++ b/addons/auth_signup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po index 19362d3e6bb..5ac425ffc5b 100644 --- a/addons/auth_signup/i18n/sl.po +++ b/addons/auth_signup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index dc6df6e76be..751458ba16d 100644 --- a/addons/auth_signup/i18n/tr.po +++ b/addons/auth_signup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/auth_signup/i18n/zh_CN.po b/addons/auth_signup/i18n/zh_CN.po index c96d9aedbe9..5fb34c02588 100644 --- a/addons/auth_signup/i18n/zh_CN.po +++ b/addons/auth_signup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: auth_signup #: field:res.partner,signup_type:0 diff --git a/addons/base_action_rule/i18n/ar.po b/addons/base_action_rule/i18n/ar.po index 387afb3102e..145c107821c 100644 --- a/addons/base_action_rule/i18n/ar.po +++ b/addons/base_action_rule/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bg.po b/addons/base_action_rule/i18n/bg.po index 0f85f210537..235f800e6ce 100644 --- a/addons/base_action_rule/i18n/bg.po +++ b/addons/base_action_rule/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/bs.po b/addons/base_action_rule/i18n/bs.po index 4339e451c56..3e659e1d792 100644 --- a/addons/base_action_rule/i18n/bs.po +++ b/addons/base_action_rule/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ca.po b/addons/base_action_rule/i18n/ca.po index 30b445a1d12..0bd6e5d8bc8 100644 --- a/addons/base_action_rule/i18n/ca.po +++ b/addons/base_action_rule/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/cs.po b/addons/base_action_rule/i18n/cs.po index e0dffcd3e07..97e99e3edd0 100644 --- a/addons/base_action_rule/i18n/cs.po +++ b/addons/base_action_rule/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/da.po b/addons/base_action_rule/i18n/da.po index 9e57a61159e..3273ed25192 100644 --- a/addons/base_action_rule/i18n/da.po +++ b/addons/base_action_rule/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/de.po b/addons/base_action_rule/i18n/de.po index 1e68de4064f..6e34e121292 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/el.po b/addons/base_action_rule/i18n/el.po index 0f5a89c2ec2..66251d98e11 100644 --- a/addons/base_action_rule/i18n/el.po +++ b/addons/base_action_rule/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es.po b/addons/base_action_rule/i18n/es.po index 7a31258e4d8..57d434c1082 100644 --- a/addons/base_action_rule/i18n/es.po +++ b/addons/base_action_rule/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_CR.po b/addons/base_action_rule/i18n/es_CR.po index eda85b83755..371d3416dab 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index 57a376cb351..b3d13fbbe0f 100644 --- a/addons/base_action_rule/i18n/es_EC.po +++ b/addons/base_action_rule/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/es_PY.po b/addons/base_action_rule/i18n/es_PY.po index 0cfbc5ae5bf..2693200bb72 100644 --- a/addons/base_action_rule/i18n/es_PY.po +++ b/addons/base_action_rule/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fa.po b/addons/base_action_rule/i18n/fa.po index f55400cb8b1..cf9621fae62 100644 --- a/addons/base_action_rule/i18n/fa.po +++ b/addons/base_action_rule/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fi.po b/addons/base_action_rule/i18n/fi.po index 395be880379..f1f55f90fcd 100644 --- a/addons/base_action_rule/i18n/fi.po +++ b/addons/base_action_rule/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index e0f64dd31c8..d7dcb34fea9 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gl.po b/addons/base_action_rule/i18n/gl.po index 26af5152714..71bd44812f0 100644 --- a/addons/base_action_rule/i18n/gl.po +++ b/addons/base_action_rule/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/gu.po b/addons/base_action_rule/i18n/gu.po index eb217265cb8..341747b1c5c 100644 --- a/addons/base_action_rule/i18n/gu.po +++ b/addons/base_action_rule/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hr.po b/addons/base_action_rule/i18n/hr.po index 24a7901f07f..257743847a2 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/hu.po b/addons/base_action_rule/i18n/hu.po index 989f598325a..b12079602d6 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index 73a67381a4e..97699911cb8 100644 --- a/addons/base_action_rule/i18n/it.po +++ b/addons/base_action_rule/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ja.po b/addons/base_action_rule/i18n/ja.po index baf58439f60..4d4b579eed6 100644 --- a/addons/base_action_rule/i18n/ja.po +++ b/addons/base_action_rule/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lt.po b/addons/base_action_rule/i18n/lt.po index 8aa86736e8a..6b9c545cd96 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index 08a325773ee..40a83dacbcf 100644 --- a/addons/base_action_rule/i18n/lv.po +++ b/addons/base_action_rule/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po index cfd25fb023a..d1325a8fbf1 100644 --- a/addons/base_action_rule/i18n/mk.po +++ b/addons/base_action_rule/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index a0c52d077f2..3e6cd1e1331 100644 --- a/addons/base_action_rule/i18n/mn.po +++ b/addons/base_action_rule/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nb.po b/addons/base_action_rule/i18n/nb.po index fc6319b5e2b..c8370ae3007 100644 --- a/addons/base_action_rule/i18n/nb.po +++ b/addons/base_action_rule/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/nl.po b/addons/base_action_rule/i18n/nl.po index 6df69fe2098..70119ec8175 100644 --- a/addons/base_action_rule/i18n/nl.po +++ b/addons/base_action_rule/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index 6becf06c217..a624afed904 100644 --- a/addons/base_action_rule/i18n/pl.po +++ b/addons/base_action_rule/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt.po b/addons/base_action_rule/i18n/pt.po index 063baa72993..4ab987cf04e 100644 --- a/addons/base_action_rule/i18n/pt.po +++ b/addons/base_action_rule/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/pt_BR.po b/addons/base_action_rule/i18n/pt_BR.po index bbca61c7ab6..c1484a888dc 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ro.po b/addons/base_action_rule/i18n/ro.po index da13b1c0d78..c29a3a1018c 100644 --- a/addons/base_action_rule/i18n/ro.po +++ b/addons/base_action_rule/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index ab8d9f8982b..4aac56fd2cd 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index b7dd8ab4e1e..50b8c4a0deb 100644 --- a/addons/base_action_rule/i18n/sl.po +++ b/addons/base_action_rule/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sq.po b/addons/base_action_rule/i18n/sq.po index 7cc4e0653d6..d8af7038e41 100644 --- a/addons/base_action_rule/i18n/sq.po +++ b/addons/base_action_rule/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr.po b/addons/base_action_rule/i18n/sr.po index f64a21ad19d..544dde0dbe4 100644 --- a/addons/base_action_rule/i18n/sr.po +++ b/addons/base_action_rule/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sr@latin.po b/addons/base_action_rule/i18n/sr@latin.po index 8d4e5e0cd48..6f1d9d5299d 100644 --- a/addons/base_action_rule/i18n/sr@latin.po +++ b/addons/base_action_rule/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/sv.po b/addons/base_action_rule/i18n/sv.po index 798ccc0c7ca..6222bc7e6d6 100644 --- a/addons/base_action_rule/i18n/sv.po +++ b/addons/base_action_rule/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/tr.po b/addons/base_action_rule/i18n/tr.po index 626f711317e..4a144aa9f86 100644 --- a/addons/base_action_rule/i18n/tr.po +++ b/addons/base_action_rule/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 3a97d66bce0..dec2344a2df 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index a692f17a0e7..968f93ea897 100644 --- a/addons/base_action_rule/i18n/zh_TW.po +++ b/addons/base_action_rule/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 diff --git a/addons/base_calendar/i18n/af.po b/addons/base_calendar/i18n/af.po index 7daee0e8a58..aab3789b461 100644 --- a/addons/base_calendar/i18n/af.po +++ b/addons/base_calendar/i18n/af.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ar.po b/addons/base_calendar/i18n/ar.po index 098fbeaf9f0..afa434a6de4 100644 --- a/addons/base_calendar/i18n/ar.po +++ b/addons/base_calendar/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bg.po b/addons/base_calendar/i18n/bg.po index 2f85d3f319f..c220c0d8223 100644 --- a/addons/base_calendar/i18n/bg.po +++ b/addons/base_calendar/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bn.po b/addons/base_calendar/i18n/bn.po index fd5d886f92b..5ce7aadac83 100644 --- a/addons/base_calendar/i18n/bn.po +++ b/addons/base_calendar/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po index d8bb277408b..7ece7cf8e23 100644 --- a/addons/base_calendar/i18n/bs.po +++ b/addons/base_calendar/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ca.po b/addons/base_calendar/i18n/ca.po index 30a07ef6eb5..e300e261557 100644 --- a/addons/base_calendar/i18n/ca.po +++ b/addons/base_calendar/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index 648367d3481..4c90d6bf825 100644 --- a/addons/base_calendar/i18n/cs.po +++ b/addons/base_calendar/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/da.po b/addons/base_calendar/i18n/da.po index 3ba0f7fe44d..479e868e06a 100644 --- a/addons/base_calendar/i18n/da.po +++ b/addons/base_calendar/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po index a01026f6e35..4b722210a8d 100644 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_calendar/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po index f1d886d0217..8566d1c0e1c 100644 --- a/addons/base_calendar/i18n/el.po +++ b/addons/base_calendar/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index 7fa8ae5048e..32332c5706f 100644 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_CR.po b/addons/base_calendar/i18n/es_CR.po index 873f666f327..a6928275cec 100644 --- a/addons/base_calendar/i18n/es_CR.po +++ b/addons/base_calendar/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_EC.po b/addons/base_calendar/i18n/es_EC.po index ad21f5741b6..99980bb3094 100644 --- a/addons/base_calendar/i18n/es_EC.po +++ b/addons/base_calendar/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/es_PY.po b/addons/base_calendar/i18n/es_PY.po index b3914c5d71d..b0e313d229c 100644 --- a/addons/base_calendar/i18n/es_PY.po +++ b/addons/base_calendar/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/et.po b/addons/base_calendar/i18n/et.po index 442f865fcf2..1bdfc838b58 100644 --- a/addons/base_calendar/i18n/et.po +++ b/addons/base_calendar/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/fa.po b/addons/base_calendar/i18n/fa.po index 3a59191aa67..797ff8c4112 100644 --- a/addons/base_calendar/i18n/fa.po +++ b/addons/base_calendar/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index 8352a95bc0e..c8662110358 100644 --- a/addons/base_calendar/i18n/fi.po +++ b/addons/base_calendar/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index 47378447573..00770acdc4e 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/gl.po b/addons/base_calendar/i18n/gl.po index 3b752bbe7a5..541558defac 100644 --- a/addons/base_calendar/i18n/gl.po +++ b/addons/base_calendar/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po index de11269de1c..65c273bbdb7 100644 --- a/addons/base_calendar/i18n/hr.po +++ b/addons/base_calendar/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/hu.po b/addons/base_calendar/i18n/hu.po index dd12b6220f8..f98ac0f3b90 100644 --- a/addons/base_calendar/i18n/hu.po +++ b/addons/base_calendar/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/id.po b/addons/base_calendar/i18n/id.po index fcab708a728..945249ee64a 100644 --- a/addons/base_calendar/i18n/id.po +++ b/addons/base_calendar/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po index bef02ec7cc1..794bd337b34 100644 --- a/addons/base_calendar/i18n/it.po +++ b/addons/base_calendar/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ja.po b/addons/base_calendar/i18n/ja.po index 53a22675949..359eecb2c42 100644 --- a/addons/base_calendar/i18n/ja.po +++ b/addons/base_calendar/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ln.po b/addons/base_calendar/i18n/ln.po index b8c3ca17cb7..87d576cdb87 100644 --- a/addons/base_calendar/i18n/ln.po +++ b/addons/base_calendar/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/lt.po b/addons/base_calendar/i18n/lt.po index fa7f999bd73..892d06a017d 100644 --- a/addons/base_calendar/i18n/lt.po +++ b/addons/base_calendar/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/lv.po b/addons/base_calendar/i18n/lv.po index e0236a3a120..908ca662f18 100644 --- a/addons/base_calendar/i18n/lv.po +++ b/addons/base_calendar/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index 18db1385aa1..330b078a592 100644 --- a/addons/base_calendar/i18n/mk.po +++ b/addons/base_calendar/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po index 6e29139ee77..9db0e41f460 100644 --- a/addons/base_calendar/i18n/mn.po +++ b/addons/base_calendar/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/nb.po b/addons/base_calendar/i18n/nb.po index 61af5fdd810..a17edfcaca3 100644 --- a/addons/base_calendar/i18n/nb.po +++ b/addons/base_calendar/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po index 66b3ad084a3..8242b303bf8 100644 --- a/addons/base_calendar/i18n/nl.po +++ b/addons/base_calendar/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po index 87aabe17b30..610447c628b 100644 --- a/addons/base_calendar/i18n/pl.po +++ b/addons/base_calendar/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index 0f192d50136..ee4b70ea9de 100644 --- a/addons/base_calendar/i18n/pt.po +++ b/addons/base_calendar/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po index 3230b942212..758e39108ec 100644 --- a/addons/base_calendar/i18n/pt_BR.po +++ b/addons/base_calendar/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 4af155ccbbb..81ebd3cf983 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/ru.po b/addons/base_calendar/i18n/ru.po index 66756e72def..e535afb5485 100644 --- a/addons/base_calendar/i18n/ru.po +++ b/addons/base_calendar/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po index f6d4e25d55a..69935b6067b 100644 --- a/addons/base_calendar/i18n/sk.po +++ b/addons/base_calendar/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index 12fed23797c..0c1daaf68f6 100644 --- a/addons/base_calendar/i18n/sl.po +++ b/addons/base_calendar/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sq.po b/addons/base_calendar/i18n/sq.po index 64c1000d271..687f210e876 100644 --- a/addons/base_calendar/i18n/sq.po +++ b/addons/base_calendar/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:35+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po index 8c7651e7059..a41cf46fcca 100644 --- a/addons/base_calendar/i18n/sr.po +++ b/addons/base_calendar/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po index 7498f51e96e..5f35ee5ee11 100644 --- a/addons/base_calendar/i18n/sr@latin.po +++ b/addons/base_calendar/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po index 24de216d08d..2cb99e68861 100644 --- a/addons/base_calendar/i18n/sv.po +++ b/addons/base_calendar/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/th.po b/addons/base_calendar/i18n/th.po index 5717a8c5225..a92e308aaf1 100644 --- a/addons/base_calendar/i18n/th.po +++ b/addons/base_calendar/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/tr.po b/addons/base_calendar/i18n/tr.po index 0a72d3f77d7..3e9bc307628 100644 --- a/addons/base_calendar/i18n/tr.po +++ b/addons/base_calendar/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-19 06:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/zh_CN.po b/addons/base_calendar/i18n/zh_CN.po index ced16fc923a..ded9288824c 100644 --- a/addons/base_calendar/i18n/zh_CN.po +++ b/addons/base_calendar/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_calendar/i18n/zh_TW.po b/addons/base_calendar/i18n/zh_TW.po index eb99b3b3e06..d8ff55dc4c9 100644 --- a/addons/base_calendar/i18n/zh_TW.po +++ b/addons/base_calendar/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index 34e095690b0..0bbc57230d7 100644 --- a/addons/base_gengo/i18n/ar.po +++ b/addons/base_gengo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/de.po b/addons/base_gengo/i18n/de.po index cf24f361713..85912282ea4 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index a07ac244fd8..d7bd9be46f8 100644 --- a/addons/base_gengo/i18n/es.po +++ b/addons/base_gengo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/fr.po b/addons/base_gengo/i18n/fr.po index 280ce2e3c8f..bab9eef22d7 100644 --- a/addons/base_gengo/i18n/fr.po +++ b/addons/base_gengo/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index 1e5960df904..3edd59947f6 100644 --- a/addons/base_gengo/i18n/hr.po +++ b/addons/base_gengo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/hu.po b/addons/base_gengo/i18n/hu.po index 7b190acc281..5505385c478 100644 --- a/addons/base_gengo/i18n/hu.po +++ b/addons/base_gengo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/it.po b/addons/base_gengo/i18n/it.po index 75da54eec1b..100c80320d5 100644 --- a/addons/base_gengo/i18n/it.po +++ b/addons/base_gengo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/mk.po b/addons/base_gengo/i18n/mk.po index 5a39753dcee..c3831ef0fee 100644 --- a/addons/base_gengo/i18n/mk.po +++ b/addons/base_gengo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/mn.po b/addons/base_gengo/i18n/mn.po index d04768aadc6..41b176d94e0 100644 --- a/addons/base_gengo/i18n/mn.po +++ b/addons/base_gengo/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nb.po b/addons/base_gengo/i18n/nb.po index f86a83caa15..5806cef58e6 100644 --- a/addons/base_gengo/i18n/nb.po +++ b/addons/base_gengo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/nl.po b/addons/base_gengo/i18n/nl.po index cb0d3f35d04..f4121d8f607 100644 --- a/addons/base_gengo/i18n/nl.po +++ b/addons/base_gengo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index 0e08c2ff026..03c7095960e 100644 --- a/addons/base_gengo/i18n/pt.po +++ b/addons/base_gengo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index 4e71efedf3a..3ae330b91e4 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/ro.po b/addons/base_gengo/i18n/ro.po index f78cbb4ebb2..9f94f897365 100644 --- a/addons/base_gengo/i18n/ro.po +++ b/addons/base_gengo/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/sl.po b/addons/base_gengo/i18n/sl.po index a3e8e3a1baf..3e5039acf3b 100644 --- a/addons/base_gengo/i18n/sl.po +++ b/addons/base_gengo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/tr.po b/addons/base_gengo/i18n/tr.po index d2fb699fc02..5d53c60bc0b 100644 --- a/addons/base_gengo/i18n/tr.po +++ b/addons/base_gengo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index cac8d610139..72cf70e11e0 100644 --- a/addons/base_gengo/i18n/zh_CN.po +++ b/addons/base_gengo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_iban/i18n/ar.po b/addons/base_iban/i18n/ar.po index 07e44a2dcf6..73bb0ea8db4 100644 --- a/addons/base_iban/i18n/ar.po +++ b/addons/base_iban/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bg.po b/addons/base_iban/i18n/bg.po index 981f3eecc33..2de54984fba 100644 --- a/addons/base_iban/i18n/bg.po +++ b/addons/base_iban/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/bs.po b/addons/base_iban/i18n/bs.po index 30047757a62..bb2680ddfcb 100644 --- a/addons/base_iban/i18n/bs.po +++ b/addons/base_iban/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ca.po b/addons/base_iban/i18n/ca.po index cef4017a457..e9caab48bd6 100644 --- a/addons/base_iban/i18n/ca.po +++ b/addons/base_iban/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/cs.po b/addons/base_iban/i18n/cs.po index 3677c3882e0..4fd8e44403a 100644 --- a/addons/base_iban/i18n/cs.po +++ b/addons/base_iban/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/da.po b/addons/base_iban/i18n/da.po index fdcdaeed4aa..976e5d958d8 100644 --- a/addons/base_iban/i18n/da.po +++ b/addons/base_iban/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/de.po b/addons/base_iban/i18n/de.po index c39b33fcf35..4714dbf170b 100644 --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/el.po b/addons/base_iban/i18n/el.po index b371f070efb..a5a92c38016 100644 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/en_GB.po b/addons/base_iban/i18n/en_GB.po index c98c8f0b2aa..c5f0cfc020e 100644 --- a/addons/base_iban/i18n/en_GB.po +++ b/addons/base_iban/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es.po b/addons/base_iban/i18n/es.po index e7bf0532545..a3b20ce48dd 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_AR.po b/addons/base_iban/i18n/es_AR.po index 5069784fc32..a923d5ebce5 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_CR.po b/addons/base_iban/i18n/es_CR.po index d8e98ed6000..ac34a952400 100644 --- a/addons/base_iban/i18n/es_CR.po +++ b/addons/base_iban/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po index 781a0a9f6de..893d4fe1c30 100644 --- a/addons/base_iban/i18n/es_EC.po +++ b/addons/base_iban/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/es_PY.po b/addons/base_iban/i18n/es_PY.po index 8b41f5d1589..63c8a5524e3 100644 --- a/addons/base_iban/i18n/es_PY.po +++ b/addons/base_iban/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/et.po b/addons/base_iban/i18n/et.po index 02658404ead..d00536ad49b 100644 --- a/addons/base_iban/i18n/et.po +++ b/addons/base_iban/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/eu.po b/addons/base_iban/i18n/eu.po index dce2acc6866..fc00e4f2abd 100644 --- a/addons/base_iban/i18n/eu.po +++ b/addons/base_iban/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fa.po b/addons/base_iban/i18n/fa.po index a54f1bb22ff..4069ef9763f 100644 --- a/addons/base_iban/i18n/fa.po +++ b/addons/base_iban/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fi.po b/addons/base_iban/i18n/fi.po index 75a7c8a0824..194812e6a1a 100644 --- a/addons/base_iban/i18n/fi.po +++ b/addons/base_iban/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/fr.po b/addons/base_iban/i18n/fr.po index f5bafeeb8bd..0f3aa00baad 100644 --- a/addons/base_iban/i18n/fr.po +++ b/addons/base_iban/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gl.po b/addons/base_iban/i18n/gl.po index 02eb0f1a440..2ca66859da9 100644 --- a/addons/base_iban/i18n/gl.po +++ b/addons/base_iban/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/gu.po b/addons/base_iban/i18n/gu.po index 5b69a8e084f..a1fd463756a 100644 --- a/addons/base_iban/i18n/gu.po +++ b/addons/base_iban/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hr.po b/addons/base_iban/i18n/hr.po index 223da5840a7..5de1fc6f4f7 100644 --- a/addons/base_iban/i18n/hr.po +++ b/addons/base_iban/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po index 448dc7f6890..c248cb7c590 100644 --- a/addons/base_iban/i18n/hu.po +++ b/addons/base_iban/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -24,22 +24,25 @@ msgid "" "Please define BIC/Swift code on bank for bank type IBAN Account to make " "valid payments" msgstr "" +"\n" +"Kérem határozza meg a BIC/Swift códot az IBAN bankszámla típushoz az " +"érvényes fizetésekhez" #. module: base_iban #: code:addons/base_iban/base_iban.py:141 #, python-format msgid "This IBAN does not pass the validation check, please verify it" -msgstr "" +msgstr "Ez az IBAN nem ment át az ellenőrzése, kérjem ellenőrizni" #. module: base_iban #: model:res.partner.bank.type,format_layout:base_iban.bank_iban msgid "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" -msgstr "" +msgstr "%(bank_name)s: IBAN %(acc_number)s - BIC %(bank_bic)s" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_swift_field msgid "bank_bic" -msgstr "" +msgstr "bank_bic" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field @@ -67,7 +70,7 @@ msgstr "country_id" msgid "" "The IBAN does not seem to be correct. You should have entered something like " "this %s" -msgstr "" +msgstr "Az IBAN nem tűnik megfelelőnek. Valami ilyennek kellene lennie %s" #. module: base_iban #: field:res.partner.bank,iban:0 @@ -78,7 +81,7 @@ msgstr "IBAN" #: code:addons/base_iban/base_iban.py:142 #, python-format msgid "The IBAN is invalid, it should begin with the country code" -msgstr "" +msgstr "Az IBAN érvényes, az ország kóddal kell kezdődnie" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po index c9b99dca8df..f05dfc7c56a 100644 --- a/addons/base_iban/i18n/id.po +++ b/addons/base_iban/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po index 7ccab7f7638..d8ba45a9816 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ja.po b/addons/base_iban/i18n/ja.po index 9ff16755066..1c764594fa1 100644 --- a/addons/base_iban/i18n/ja.po +++ b/addons/base_iban/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ko.po b/addons/base_iban/i18n/ko.po index 1dd01d489fa..e8a92598194 100644 --- a/addons/base_iban/i18n/ko.po +++ b/addons/base_iban/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lt.po b/addons/base_iban/i18n/lt.po index aa77cd931ee..a066051f32b 100644 --- a/addons/base_iban/i18n/lt.po +++ b/addons/base_iban/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po index 9c748317086..e25b49b3319 100644 --- a/addons/base_iban/i18n/lv.po +++ b/addons/base_iban/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/mk.po b/addons/base_iban/i18n/mk.po index 35170482b1b..3062ab9f35c 100644 --- a/addons/base_iban/i18n/mk.po +++ b/addons/base_iban/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po index d8cf2c4a27a..35965353a26 100644 --- a/addons/base_iban/i18n/mn.po +++ b/addons/base_iban/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nb.po b/addons/base_iban/i18n/nb.po index c6b1f6caa87..4614099bcae 100644 --- a/addons/base_iban/i18n/nb.po +++ b/addons/base_iban/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl.po b/addons/base_iban/i18n/nl.po index 81122cb47ef..b72622cc304 100644 --- a/addons/base_iban/i18n/nl.po +++ b/addons/base_iban/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/nl_BE.po b/addons/base_iban/i18n/nl_BE.po index 622ec903921..631d36d6e65 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/oc.po b/addons/base_iban/i18n/oc.po index d34a837362e..f9bd91c61a3 100644 --- a/addons/base_iban/i18n/oc.po +++ b/addons/base_iban/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pl.po b/addons/base_iban/i18n/pl.po index b48fc8117d6..baef2374801 100644 --- a/addons/base_iban/i18n/pl.po +++ b/addons/base_iban/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt.po b/addons/base_iban/i18n/pt.po index 97f0100ec37..0ae4423afed 100644 --- a/addons/base_iban/i18n/pt.po +++ b/addons/base_iban/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/pt_BR.po b/addons/base_iban/i18n/pt_BR.po index 323ab3e285e..0422a889aad 100644 --- a/addons/base_iban/i18n/pt_BR.po +++ b/addons/base_iban/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ro.po b/addons/base_iban/i18n/ro.po index d7cc391cf5c..ce79c959565 100644 --- a/addons/base_iban/i18n/ro.po +++ b/addons/base_iban/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ru.po b/addons/base_iban/i18n/ru.po index 144daaa027b..a0c8e87eb15 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sk.po b/addons/base_iban/i18n/sk.po index 591b5100fcd..9bcfce6dd51 100644 --- a/addons/base_iban/i18n/sk.po +++ b/addons/base_iban/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sl.po b/addons/base_iban/i18n/sl.po index 1c1fb809868..94de144a346 100644 --- a/addons/base_iban/i18n/sl.po +++ b/addons/base_iban/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sq.po b/addons/base_iban/i18n/sq.po index 4c5ce12a508..aebe63ebc93 100644 --- a/addons/base_iban/i18n/sq.po +++ b/addons/base_iban/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr.po b/addons/base_iban/i18n/sr.po index 778b9d62f56..7c3c2e6f4c3 100644 --- a/addons/base_iban/i18n/sr.po +++ b/addons/base_iban/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sr@latin.po b/addons/base_iban/i18n/sr@latin.po index e2128fe0d9b..6958e900e30 100644 --- a/addons/base_iban/i18n/sr@latin.po +++ b/addons/base_iban/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/sv.po b/addons/base_iban/i18n/sv.po index 03f766ddc09..a1b08900e38 100644 --- a/addons/base_iban/i18n/sv.po +++ b/addons/base_iban/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/ta.po b/addons/base_iban/i18n/ta.po index c21abb925f7..e7a86ce9507 100644 --- a/addons/base_iban/i18n/ta.po +++ b/addons/base_iban/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tlh.po b/addons/base_iban/i18n/tlh.po index 4eee6993504..f5273fbfb20 100644 --- a/addons/base_iban/i18n/tlh.po +++ b/addons/base_iban/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/tr.po b/addons/base_iban/i18n/tr.po index bcadc83180e..4e83fc77027 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/uk.po b/addons/base_iban/i18n/uk.po index 827487ad657..8ef1b4dd3d9 100644 --- a/addons/base_iban/i18n/uk.po +++ b/addons/base_iban/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/vi.po b/addons/base_iban/i18n/vi.po index 425b639f926..685fb9e9632 100644 --- a/addons/base_iban/i18n/vi.po +++ b/addons/base_iban/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_CN.po b/addons/base_iban/i18n/zh_CN.po index 5140b714a3a..22df99f1032 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/zh_TW.po b/addons/base_iban/i18n/zh_TW.po index d3acfaeb92a..f32d56f0d98 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_import/i18n/ar.po b/addons/base_import/i18n/ar.po index c463ae9350f..b643dd026de 100644 --- a/addons/base_import/i18n/ar.po +++ b/addons/base_import/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/de.po b/addons/base_import/i18n/de.po index af7b60a8939..4946ecfc12f 100644 --- a/addons/base_import/i18n/de.po +++ b/addons/base_import/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/es.po b/addons/base_import/i18n/es.po index 5d25a58a4e8..6ac372cae41 100644 --- a/addons/base_import/i18n/es.po +++ b/addons/base_import/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/et.po b/addons/base_import/i18n/et.po index 9cdd5a9f0ac..76957bf8d41 100644 --- a/addons/base_import/i18n/et.po +++ b/addons/base_import/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/fr.po b/addons/base_import/i18n/fr.po index fdef545cfa8..42867685fbd 100644 --- a/addons/base_import/i18n/fr.po +++ b/addons/base_import/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hr.po b/addons/base_import/i18n/hr.po index 647c62a01fd..7e15f9b9abb 100644 --- a/addons/base_import/i18n/hr.po +++ b/addons/base_import/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hu.po b/addons/base_import/i18n/hu.po index c01227997c6..8429269cb96 100644 --- a/addons/base_import/i18n/hu.po +++ b/addons/base_import/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 11:56+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web @@ -473,6 +473,9 @@ msgid "" "\n" " PSQL:" msgstr "" +"Személyekhez CVS fájl létrehozása, vállalatokhoz\n" +" kapcsolva, a következő SQL parancsot használva a \n" +" PSQL-ben:" #. module: base_import #. openerp-web @@ -484,6 +487,11 @@ msgid "" " (in 'Save As' dialog box > click 'Tools' dropdown \n" " list > Encoding tab)." msgstr "" +"Microsoft Excel lehetővé teszi\n" +" csak a kódolás módosítását az elmentés alatt \n" +" (a 'Mentés másként' párbeszéd ablakban > kattints a " +"'Kellékek' legördülő \n" +" listán > a Kódolás fülre)." #. module: base_import #. openerp-web @@ -507,6 +515,11 @@ msgid "" " later, it's thus good practice to specify it\n" " whenever possible" msgstr "" +"az eredeti importálás frissítéséhez is \n" +" használja, ha később is fel akarja használni az újra-" +"importált módosított\n" +" adatot, amikor csak lehet ez egy jó gyakorlás a \n" +" meghatározáshoz" #. module: base_import #. openerp-web @@ -516,6 +529,9 @@ msgid "" "file to import. If you need a sample importable file, you\n" " can use the export tool to generate one." msgstr "" +"fájl importáláshoz, betöltéshez. Ha szüksége van egy importálható példa " +"fájlra, akkor\n" +" használhatja az export eszközt egy új generálásához." #. module: base_import #. openerp-web @@ -792,7 +808,7 @@ msgstr "Egy CVS fájl importálása" #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +msgstr "Hivatkozni:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related @@ -804,7 +820,7 @@ msgstr "base_import.tests.models.m2o.required.related" #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid ")." -msgstr "" +msgstr "nkat)." #. module: base_import #. openerp-web @@ -1070,6 +1086,14 @@ msgid "" " link between each person and the company they work \n" " for)." msgstr "" +"Ha különböző táblázatokból kell adatot importálni, \n" +" akkor a különböző táblázatok közötti rekordok " +"kapcsolatait\n" +" újra létre kell hozni. (pl. ha vállalatokat és " +"személyeket \n" +" importál, akkor létre kell hoznia a kapcsolatot \n" +" minden személy és a vállalata közt, ahol " +"alakalmazott)." #. module: base_import #. openerp-web @@ -1082,6 +1106,12 @@ msgid "" " Here is when you should use one or the other, \n" " according to your need:" msgstr "" +"Az igénye szerint, használni kell \n" +" egyet a lehetésges 3 közül a a rekordokra " +"hivatkozáshoz a kapcsolatokban. \n" +" It van, ha egyiket a másik helyett kelle használni, " +"\n" +" az igénye szerint:" #. module: base_import #. openerp-web @@ -1104,6 +1134,13 @@ msgid "" " will set the EMPTY value in the field, instead of \n" " assigning the default value." msgstr "" +"Ha nem állítja be az összes mezőt a CSV fájlban, \n" +" OpenERP az alapértelmezett értéket fogja adni minden " +"olyan mezőnak ami \n" +" nincs meghatározva. Ha a mezőnek\n" +" üres értéket ad a CSV fájlban, OpenERP \n" +" az ÜRES értéket fogja beállítani a mezőre, az \n" +" alapértelmezett érték hozzáadása helyett." #. module: base_import #. openerp-web @@ -1156,6 +1193,12 @@ msgid "" "spreadsheet \n" " application." msgstr "" +"Ez a tulajdonság \n" +" lehetővé teszi az OpenERP Import/Export eszköz " +"használatát \n" +" a rekord kötegek módosítására a kedvenc táblázat " +"kezelőjénak \n" +" alkalmazásával." #. module: base_import #. openerp-web @@ -1195,7 +1238,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:169 #, python-format msgid "CSV file for categories" -msgstr "" +msgstr "CSV fájl kategóriákhoz" #. module: base_import #. openerp-web @@ -1214,13 +1257,18 @@ msgid "" " identifier from the original application and\n" " map it to the" msgstr "" +"A különböző rekordok közötti kapcsolat újboli\n" +" létrehozásához, az eredeti alkalmazás \n" +" egyedi azonosítójának használata\n" +" szükséges amit\n" +" irányítson ehhez" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:170 #, python-format msgid "CSV file for Products" -msgstr "" +msgstr "CSV fájl a termékekhez" #. module: base_import #. openerp-web @@ -1252,31 +1300,31 @@ msgstr "" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related msgid "base_import.tests.models.m2o.related" -msgstr "" +msgstr "base_import.tests.models.m2o.related" #. module: base_import #: field:base_import.tests.models.preview,name:0 msgid "Name" -msgstr "" +msgstr "Név" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "to the original unique identifier." -msgstr "" +msgstr "az eredeti egyedi ID azonosítóhoz." #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:318 #, python-format msgid "person_3,Eric,False,company_2" -msgstr "" +msgstr "személy_3,Eric,Hamis,vállalt_2" #. module: base_import #: field:base_import.import,res_model:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: base_import #. openerp-web @@ -1284,7 +1332,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "ID" -msgstr "" +msgstr "Azonosító ID" #. module: base_import #. openerp-web @@ -1319,12 +1367,12 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:73 #, python-format msgid "Separator:" -msgstr "" +msgstr "Elválasztó:" #. module: base_import #: field:base_import.import,file_name:0 msgid "File Name" -msgstr "" +msgstr "Fájl neve" #. module: base_import #. openerp-web @@ -1334,28 +1382,28 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "External ID" -msgstr "" +msgstr "Külső ID azonosító" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:39 #, python-format msgid "File Format Options…" -msgstr "" +msgstr "Fájl formátum lehetőségek…" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:423 #, python-format msgid "between rows %d and %d" -msgstr "" +msgstr "oszlopok közt %d és %d" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:19 #, python-format msgid "or" -msgstr "" +msgstr "vagy" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/it.po b/addons/base_import/i18n/it.po index fa7bbe1f5ed..7d73d1af2b8 100644 --- a/addons/base_import/i18n/it.po +++ b/addons/base_import/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/mk.po b/addons/base_import/i18n/mk.po index d9291cf64eb..477ffac1675 100644 --- a/addons/base_import/i18n/mk.po +++ b/addons/base_import/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/mn.po b/addons/base_import/i18n/mn.po index 433c5d5d5a9..e7664740e4a 100644 --- a/addons/base_import/i18n/mn.po +++ b/addons/base_import/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nb.po b/addons/base_import/i18n/nb.po index 303aadbfab3..bc798f70491 100644 --- a/addons/base_import/i18n/nb.po +++ b/addons/base_import/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index 706de8d0cc8..28ed7aedcc0 100644 --- a/addons/base_import/i18n/nl.po +++ b/addons/base_import/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pl.po b/addons/base_import/i18n/pl.po index 283a3eb029c..b4a9b8f44d4 100644 --- a/addons/base_import/i18n/pl.po +++ b/addons/base_import/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po index 0e842c1d5b4..d26a1c69161 100644 --- a/addons/base_import/i18n/pt.po +++ b/addons/base_import/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index b531731fe4a..11b706cb501 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po index 03ba9069bd8..09aaaf9427a 100644 --- a/addons/base_import/i18n/ro.po +++ b/addons/base_import/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/ru.po b/addons/base_import/i18n/ru.po index ca8628770be..624949fa1a6 100644 --- a/addons/base_import/i18n/ru.po +++ b/addons/base_import/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/sl.po b/addons/base_import/i18n/sl.po index 80139798db0..e0e572d5ef1 100644 --- a/addons/base_import/i18n/sl.po +++ b/addons/base_import/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/tr.po b/addons/base_import/i18n/tr.po index d54f049ef58..d834cdaf620 100644 --- a/addons/base_import/i18n/tr.po +++ b/addons/base_import/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/zh_CN.po b/addons/base_import/i18n/zh_CN.po index be931e45f24..3a87fa989d6 100644 --- a/addons/base_import/i18n/zh_CN.po +++ b/addons/base_import/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_import #. openerp-web diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po index 1fa1a4bf3d8..7cda99d09c1 100644 --- a/addons/base_report_designer/i18n/ar.po +++ b/addons/base_report_designer/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bg.po b/addons/base_report_designer/i18n/bg.po index 1c44c588332..e8a9ace1820 100644 --- a/addons/base_report_designer/i18n/bg.po +++ b/addons/base_report_designer/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/bs.po b/addons/base_report_designer/i18n/bs.po index 1abfd64c295..c6793bb344b 100644 --- a/addons/base_report_designer/i18n/bs.po +++ b/addons/base_report_designer/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ca.po b/addons/base_report_designer/i18n/ca.po index 22cc273b28d..ddd365d3138 100644 --- a/addons/base_report_designer/i18n/ca.po +++ b/addons/base_report_designer/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/cs.po b/addons/base_report_designer/i18n/cs.po index 5ed4764cf0c..519e33ffebd 100644 --- a/addons/base_report_designer/i18n/cs.po +++ b/addons/base_report_designer/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/da.po b/addons/base_report_designer/i18n/da.po index 97f96ae5282..d202a5df743 100644 --- a/addons/base_report_designer/i18n/da.po +++ b/addons/base_report_designer/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/de.po b/addons/base_report_designer/i18n/de.po index 96ea4eababa..77dbcdaf179 100644 --- a/addons/base_report_designer/i18n/de.po +++ b/addons/base_report_designer/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/el.po b/addons/base_report_designer/i18n/el.po index 85530e9dc9f..5cb44a88c75 100644 --- a/addons/base_report_designer/i18n/el.po +++ b/addons/base_report_designer/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/en_GB.po b/addons/base_report_designer/i18n/en_GB.po index 7427e358ad4..5bda5993326 100644 --- a/addons/base_report_designer/i18n/en_GB.po +++ b/addons/base_report_designer/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es.po b/addons/base_report_designer/i18n/es.po index dfa212c7906..03000e2865c 100644 --- a/addons/base_report_designer/i18n/es.po +++ b/addons/base_report_designer/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_AR.po b/addons/base_report_designer/i18n/es_AR.po index ead1e96327a..1035332cafc 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_CR.po b/addons/base_report_designer/i18n/es_CR.po index 2e5970ae987..94b46efde6d 100644 --- a/addons/base_report_designer/i18n/es_CR.po +++ b/addons/base_report_designer/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po index 664753fef02..91953004bd4 100644 --- a/addons/base_report_designer/i18n/es_EC.po +++ b/addons/base_report_designer/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/es_PY.po b/addons/base_report_designer/i18n/es_PY.po index 2aa5d5cefbf..7fa1361b262 100644 --- a/addons/base_report_designer/i18n/es_PY.po +++ b/addons/base_report_designer/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/et.po b/addons/base_report_designer/i18n/et.po index 07d73760e56..aa224cff1de 100644 --- a/addons/base_report_designer/i18n/et.po +++ b/addons/base_report_designer/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fa.po b/addons/base_report_designer/i18n/fa.po index 9d73a3769f8..d2dfb00eddd 100644 --- a/addons/base_report_designer/i18n/fa.po +++ b/addons/base_report_designer/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fi.po b/addons/base_report_designer/i18n/fi.po index d53e6a21b39..61479cdf5a4 100644 --- a/addons/base_report_designer/i18n/fi.po +++ b/addons/base_report_designer/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/fr.po b/addons/base_report_designer/i18n/fr.po index dd4e9a55966..f141f07e4f0 100644 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/gl.po b/addons/base_report_designer/i18n/gl.po index 6fc9473a6df..13f2aef1b20 100644 --- a/addons/base_report_designer/i18n/gl.po +++ b/addons/base_report_designer/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hr.po b/addons/base_report_designer/i18n/hr.po index df17fe267bb..01084f4faac 100644 --- a/addons/base_report_designer/i18n/hr.po +++ b/addons/base_report_designer/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po index b9e4f159320..b5e7fb2ecdb 100644 --- a/addons/base_report_designer/i18n/hu.po +++ b/addons/base_report_designer/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -91,7 +91,7 @@ msgstr "Fájl neve" #: view:base.report.file.sxw:0 #: view:base.report.sxw:0 msgid "Get a report" -msgstr "" +msgstr "Igényeljen egy jelentést" #. module: base_report_designer #: view:base_report_designer.installer:0 @@ -115,6 +115,8 @@ msgid "" "OpenObject Report Designer plug-in file. Save as this file and install this " "plug-in in OpenOffice." msgstr "" +"OpenObject jelentéstervező plug-in fájl. Mentse másképpen ezt a fájlt és " +"telepítse ezt az OpenOffice plig-in fájlt.." #. module: base_report_designer #: view:base.report.rml.save:0 @@ -145,6 +147,10 @@ msgid "" "Don't forget to install the OpenERP SA OpenOffice package to modify it.\n" "Once it is modified, re-upload it in OpenERP using this wizard." msgstr "" +"Ez a kívánt jelentésének a sablonja.\n" +"Mentse mint egy .SXW fájl és nyissa meg az OpenOffice szerkesztővel.\n" +"Ne felejtse el telepíteni az OpenERP SA OpenOffice csomagot a módosításhoz.\n" +"Módosítás után, ismét töltse fel az OpenERP varázsló használatával." #. module: base_report_designer #: model:ir.actions.act_window,name:base_report_designer.action_view_base_report_sxw @@ -174,12 +180,12 @@ msgstr "Mégsem" #. module: base_report_designer #: view:base.report.sxw:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_ir_actions_report_xml msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" #. module: base_report_designer #: view:base.report.sxw:0 diff --git a/addons/base_report_designer/i18n/id.po b/addons/base_report_designer/i18n/id.po index 3d94a3047af..b94d8912a5c 100644 --- a/addons/base_report_designer/i18n/id.po +++ b/addons/base_report_designer/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po index a984bcb80c2..3c06dfee24b 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ja.po b/addons/base_report_designer/i18n/ja.po index 50f1b57f047..f7c64bbf6b8 100644 --- a/addons/base_report_designer/i18n/ja.po +++ b/addons/base_report_designer/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ko.po b/addons/base_report_designer/i18n/ko.po index 12cee2f5c09..1f01cff72eb 100644 --- a/addons/base_report_designer/i18n/ko.po +++ b/addons/base_report_designer/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/lt.po b/addons/base_report_designer/i18n/lt.po index a325f0970ed..f14e63a91c3 100644 --- a/addons/base_report_designer/i18n/lt.po +++ b/addons/base_report_designer/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/mk.po b/addons/base_report_designer/i18n/mk.po index 76143dbbbe7..bfed85a3281 100644 --- a/addons/base_report_designer/i18n/mk.po +++ b/addons/base_report_designer/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/mn.po b/addons/base_report_designer/i18n/mn.po index 6045f05a3b0..8e05b3a5492 100644 --- a/addons/base_report_designer/i18n/mn.po +++ b/addons/base_report_designer/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nb.po b/addons/base_report_designer/i18n/nb.po index 514dc4b00c0..1394069450c 100644 --- a/addons/base_report_designer/i18n/nb.po +++ b/addons/base_report_designer/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl.po b/addons/base_report_designer/i18n/nl.po index 823a063f544..8d97fe6e315 100644 --- a/addons/base_report_designer/i18n/nl.po +++ b/addons/base_report_designer/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/nl_BE.po b/addons/base_report_designer/i18n/nl_BE.po index f48e9560369..320c240c9b6 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pl.po b/addons/base_report_designer/i18n/pl.po index 6395b0226d9..11163e62948 100644 --- a/addons/base_report_designer/i18n/pl.po +++ b/addons/base_report_designer/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt.po b/addons/base_report_designer/i18n/pt.po index 591e1ec4b2f..0d448cba0a3 100644 --- a/addons/base_report_designer/i18n/pt.po +++ b/addons/base_report_designer/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/pt_BR.po b/addons/base_report_designer/i18n/pt_BR.po index 578b13c5bb2..7d982efd5ab 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ro.po b/addons/base_report_designer/i18n/ro.po index ea74fb424ba..6e61a1191f5 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/ru.po b/addons/base_report_designer/i18n/ru.po index da5fd924668..0eab2e52d82 100644 --- a/addons/base_report_designer/i18n/ru.po +++ b/addons/base_report_designer/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sk.po b/addons/base_report_designer/i18n/sk.po index e7fe6df34b0..a5cbbadb90c 100644 --- a/addons/base_report_designer/i18n/sk.po +++ b/addons/base_report_designer/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sl.po b/addons/base_report_designer/i18n/sl.po index e50ab34a4cd..b4a7a21d27f 100644 --- a/addons/base_report_designer/i18n/sl.po +++ b/addons/base_report_designer/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sq.po b/addons/base_report_designer/i18n/sq.po index ba9a620b69d..7d713794755 100644 --- a/addons/base_report_designer/i18n/sq.po +++ b/addons/base_report_designer/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:33+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr.po b/addons/base_report_designer/i18n/sr.po index e2d694b6662..c7964341720 100644 --- a/addons/base_report_designer/i18n/sr.po +++ b/addons/base_report_designer/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sr@latin.po b/addons/base_report_designer/i18n/sr@latin.po index 513933738ca..a1deb0c1c1b 100644 --- a/addons/base_report_designer/i18n/sr@latin.po +++ b/addons/base_report_designer/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/sv.po b/addons/base_report_designer/i18n/sv.po index 39d034cb675..216bc8aaaf8 100644 --- a/addons/base_report_designer/i18n/sv.po +++ b/addons/base_report_designer/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tlh.po b/addons/base_report_designer/i18n/tlh.po index a4ae82f0986..bd887751e7d 100644 --- a/addons/base_report_designer/i18n/tlh.po +++ b/addons/base_report_designer/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po index 8321f411a0d..241b32d5e54 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po index 2a53e7ef28a..b2f114c1151 100644 --- a/addons/base_report_designer/i18n/uk.po +++ b/addons/base_report_designer/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/vi.po b/addons/base_report_designer/i18n/vi.po index 1518e3bd204..0efeb3f52e2 100644 --- a/addons/base_report_designer/i18n/vi.po +++ b/addons/base_report_designer/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index d2bded5ddb1..d1bed396877 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/zh_TW.po b/addons/base_report_designer/i18n/zh_TW.po index bb629d73185..79e1df180de 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_setup/i18n/ar.po b/addons/base_setup/i18n/ar.po index 2529de5eb64..756e3798ca6 100644 --- a/addons/base_setup/i18n/ar.po +++ b/addons/base_setup/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bg.po b/addons/base_setup/i18n/bg.po index ac3778650bd..b0bf176ef95 100644 --- a/addons/base_setup/i18n/bg.po +++ b/addons/base_setup/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/bs.po b/addons/base_setup/i18n/bs.po index 64df167d6a4..616c13b859d 100644 --- a/addons/base_setup/i18n/bs.po +++ b/addons/base_setup/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ca.po b/addons/base_setup/i18n/ca.po index f3740fed4aa..f7aeb0206f2 100644 --- a/addons/base_setup/i18n/ca.po +++ b/addons/base_setup/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/cs.po b/addons/base_setup/i18n/cs.po index 33033c8934b..c82e58797f5 100644 --- a/addons/base_setup/i18n/cs.po +++ b/addons/base_setup/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/da.po b/addons/base_setup/i18n/da.po index 1cdeaca89e9..b80cfbcbcee 100644 --- a/addons/base_setup/i18n/da.po +++ b/addons/base_setup/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/de.po b/addons/base_setup/i18n/de.po index 0dd0e625875..06b4f953d25 100644 --- a/addons/base_setup/i18n/de.po +++ b/addons/base_setup/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/el.po b/addons/base_setup/i18n/el.po index 33e0bfad7d5..d16c1ea80e1 100644 --- a/addons/base_setup/i18n/el.po +++ b/addons/base_setup/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/en_GB.po b/addons/base_setup/i18n/en_GB.po index 4439325a1a6..f952b0cf3b8 100644 --- a/addons/base_setup/i18n/en_GB.po +++ b/addons/base_setup/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es.po b/addons/base_setup/i18n/es.po index 450f4290602..55fba836fd9 100644 --- a/addons/base_setup/i18n/es.po +++ b/addons/base_setup/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index b5e200c5002..1ba445f768d 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CL.po b/addons/base_setup/i18n/es_CL.po index 050d0e20d17..64f0aa21787 100644 --- a/addons/base_setup/i18n/es_CL.po +++ b/addons/base_setup/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_CR.po b/addons/base_setup/i18n/es_CR.po index 2820dca3c06..c35a81c4151 100644 --- a/addons/base_setup/i18n/es_CR.po +++ b/addons/base_setup/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index 8bc50d53f45..43b92d7dd46 100644 --- a/addons/base_setup/i18n/es_EC.po +++ b/addons/base_setup/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_MX.po b/addons/base_setup/i18n/es_MX.po index 2b6a2a82982..70acb29cc2d 100644 --- a/addons/base_setup/i18n/es_MX.po +++ b/addons/base_setup/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/es_PY.po b/addons/base_setup/i18n/es_PY.po index 30185897f80..3f4ed62bb71 100644 --- a/addons/base_setup/i18n/es_PY.po +++ b/addons/base_setup/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/et.po b/addons/base_setup/i18n/et.po index ba0c28a0da0..dea623af27f 100644 --- a/addons/base_setup/i18n/et.po +++ b/addons/base_setup/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fa.po b/addons/base_setup/i18n/fa.po index 79a2995fc12..12fc7b08302 100644 --- a/addons/base_setup/i18n/fa.po +++ b/addons/base_setup/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fi.po b/addons/base_setup/i18n/fi.po index 893559cb4ca..682a6d00795 100644 --- a/addons/base_setup/i18n/fi.po +++ b/addons/base_setup/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/fr.po b/addons/base_setup/i18n/fr.po index 0fcd0f041e5..f197d3af6ea 100644 --- a/addons/base_setup/i18n/fr.po +++ b/addons/base_setup/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po index 28a33dc50fc..a75536707e5 100644 --- a/addons/base_setup/i18n/gl.po +++ b/addons/base_setup/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/gu.po b/addons/base_setup/i18n/gu.po index 52f3abf3f0e..a8ce9f4f6e5 100644 --- a/addons/base_setup/i18n/gu.po +++ b/addons/base_setup/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hr.po b/addons/base_setup/i18n/hr.po index 8e24c1b1bf9..e107c5d8a73 100644 --- a/addons/base_setup/i18n/hr.po +++ b/addons/base_setup/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po index 94742feb001..0a8ba12a82d 100644 --- a/addons/base_setup/i18n/hu.po +++ b/addons/base_setup/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/id.po b/addons/base_setup/i18n/id.po index 82a581ba24a..c69c997b02b 100644 --- a/addons/base_setup/i18n/id.po +++ b/addons/base_setup/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/it.po b/addons/base_setup/i18n/it.po index f50871ab29b..c2a88c19bea 100644 --- a/addons/base_setup/i18n/it.po +++ b/addons/base_setup/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ja.po b/addons/base_setup/i18n/ja.po index c4f2a29f2c7..5c144f771ba 100644 --- a/addons/base_setup/i18n/ja.po +++ b/addons/base_setup/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po index e5b3c20965b..692a5f9ae40 100644 --- a/addons/base_setup/i18n/ko.po +++ b/addons/base_setup/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lt.po b/addons/base_setup/i18n/lt.po index 2a548f26be6..b48a9c77617 100644 --- a/addons/base_setup/i18n/lt.po +++ b/addons/base_setup/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po index 6b1741e4a3e..e90f5e154b6 100644 --- a/addons/base_setup/i18n/lv.po +++ b/addons/base_setup/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/mk.po b/addons/base_setup/i18n/mk.po index 12258963e8e..657eca71f9d 100644 --- a/addons/base_setup/i18n/mk.po +++ b/addons/base_setup/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: base_setup diff --git a/addons/base_setup/i18n/mn.po b/addons/base_setup/i18n/mn.po index b97110a0f0c..0c0cd539a8b 100644 --- a/addons/base_setup/i18n/mn.po +++ b/addons/base_setup/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nb.po b/addons/base_setup/i18n/nb.po index 2c4680787f7..b0959c96648 100644 --- a/addons/base_setup/i18n/nb.po +++ b/addons/base_setup/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index 6f855778429..acd3a954f93 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index f2589a7ffbe..3f5ad43062f 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pl.po b/addons/base_setup/i18n/pl.po index fa24ea29964..5ed3f4f9d83 100644 --- a/addons/base_setup/i18n/pl.po +++ b/addons/base_setup/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt.po b/addons/base_setup/i18n/pt.po index 3a16119beed..d41559f82af 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index ac61b3c2542..2c1c77dd249 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ro.po b/addons/base_setup/i18n/ro.po index 640b180ef1f..a340a13453e 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/ru.po b/addons/base_setup/i18n/ru.po index 38531e33a29..8c3cc7952a6 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po index 37ad7164e7d..f66b2dc4c75 100644 --- a/addons/base_setup/i18n/sk.po +++ b/addons/base_setup/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po index 0b422eca161..9e252e6e959 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sq.po b/addons/base_setup/i18n/sq.po index 0cd49c94009..aa77ba8baa4 100644 --- a/addons/base_setup/i18n/sq.po +++ b/addons/base_setup/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:36+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr.po b/addons/base_setup/i18n/sr.po index 31bfce0c144..23650f8e0a9 100644 --- a/addons/base_setup/i18n/sr.po +++ b/addons/base_setup/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sr@latin.po b/addons/base_setup/i18n/sr@latin.po index 2ac1a51f6f9..8ba3e3e3e2b 100644 --- a/addons/base_setup/i18n/sr@latin.po +++ b/addons/base_setup/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/sv.po b/addons/base_setup/i18n/sv.po index c3517400de9..c0ab3c65dc4 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/th.po b/addons/base_setup/i18n/th.po index b9d505994cb..0d106c79c1b 100644 --- a/addons/base_setup/i18n/th.po +++ b/addons/base_setup/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po index 88662837d27..fdc3832d34f 100644 --- a/addons/base_setup/i18n/tlh.po +++ b/addons/base_setup/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/tr.po b/addons/base_setup/i18n/tr.po index 89a1b307041..1cb53fe1cce 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po index 39d1692897e..36a1ba0f9c3 100644 --- a/addons/base_setup/i18n/uk.po +++ b/addons/base_setup/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/vi.po b/addons/base_setup/i18n/vi.po index ea4a281e019..ef3a149e557 100644 --- a/addons/base_setup/i18n/vi.po +++ b/addons/base_setup/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index c27017eed97..5653a9a6d6b 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/zh_TW.po b/addons/base_setup/i18n/zh_TW.po index a19e7258b4f..606c4eb28c3 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_status/i18n/ar.po b/addons/base_status/i18n/ar.po index f984c628b2f..a248160b981 100644 --- a/addons/base_status/i18n/ar.po +++ b/addons/base_status/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/de.po b/addons/base_status/i18n/de.po index 169602bc1be..6ddfb7946be 100644 --- a/addons/base_status/i18n/de.po +++ b/addons/base_status/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/en_GB.po b/addons/base_status/i18n/en_GB.po index 1f03a0f9623..7bb08cdc4bb 100644 --- a/addons/base_status/i18n/en_GB.po +++ b/addons/base_status/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/es.po b/addons/base_status/i18n/es.po index 0ea435a4e91..aa5bb1853a2 100644 --- a/addons/base_status/i18n/es.po +++ b/addons/base_status/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/fr.po b/addons/base_status/i18n/fr.po index 5d2fb9ea5a9..e7f2a8b39f2 100644 --- a/addons/base_status/i18n/fr.po +++ b/addons/base_status/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/hr.po b/addons/base_status/i18n/hr.po index 0b52bd1a77a..069a2279c83 100644 --- a/addons/base_status/i18n/hr.po +++ b/addons/base_status/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/hu.po b/addons/base_status/i18n/hu.po index d63dbcad6bd..3679831fe32 100644 --- a/addons/base_status/i18n/hu.po +++ b/addons/base_status/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/id.po b/addons/base_status/i18n/id.po index d2caad27c7e..9d79b1511b1 100644 --- a/addons/base_status/i18n/id.po +++ b/addons/base_status/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/it.po b/addons/base_status/i18n/it.po index af1704dd25d..0db1dc92fe9 100644 --- a/addons/base_status/i18n/it.po +++ b/addons/base_status/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/mk.po b/addons/base_status/i18n/mk.po index 7ace73f2453..da6ebe47121 100644 --- a/addons/base_status/i18n/mk.po +++ b/addons/base_status/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/mn.po b/addons/base_status/i18n/mn.po index 00394541a2c..2306516a7a7 100644 --- a/addons/base_status/i18n/mn.po +++ b/addons/base_status/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/nl.po b/addons/base_status/i18n/nl.po index a381ec241d5..cda7fd010f7 100644 --- a/addons/base_status/i18n/nl.po +++ b/addons/base_status/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pl.po b/addons/base_status/i18n/pl.po index 41c63cca1e7..3aefdb697b6 100644 --- a/addons/base_status/i18n/pl.po +++ b/addons/base_status/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pt.po b/addons/base_status/i18n/pt.po index b828a140f05..f3ec7dc1d49 100644 --- a/addons/base_status/i18n/pt.po +++ b/addons/base_status/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/pt_BR.po b/addons/base_status/i18n/pt_BR.po index e7c0bf3fd02..a6554643822 100644 --- a/addons/base_status/i18n/pt_BR.po +++ b/addons/base_status/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/ro.po b/addons/base_status/i18n/ro.po index 12dc0730c70..f1668935b14 100644 --- a/addons/base_status/i18n/ro.po +++ b/addons/base_status/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/ru.po b/addons/base_status/i18n/ru.po index c1cd3676bff..e69ed22ede2 100644 --- a/addons/base_status/i18n/ru.po +++ b/addons/base_status/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/sl.po b/addons/base_status/i18n/sl.po index f55ddad4f0f..6610bf348da 100644 --- a/addons/base_status/i18n/sl.po +++ b/addons/base_status/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/tr.po b/addons/base_status/i18n/tr.po index 004b77eee29..af46f00254b 100644 --- a/addons/base_status/i18n/tr.po +++ b/addons/base_status/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/zh_CN.po b/addons/base_status/i18n/zh_CN.po index 86daad522bf..2846e8adee6 100644 --- a/addons/base_status/i18n/zh_CN.po +++ b/addons/base_status/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_status/i18n/zh_TW.po b/addons/base_status/i18n/zh_TW.po index 50ace542e7f..f11e775f12c 100644 --- a/addons/base_status/i18n/zh_TW.po +++ b/addons/base_status/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_status #: code:addons/base_status/base_state.py:107 diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po index 42895b9f66a..b17985f35c7 100644 --- a/addons/base_vat/i18n/ar.po +++ b/addons/base_vat/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po index c57bafd752c..f0eb583ccd9 100644 --- a/addons/base_vat/i18n/bg.po +++ b/addons/base_vat/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po index acf03a9c7c5..adb653f4ad7 100644 --- a/addons/base_vat/i18n/bs.po +++ b/addons/base_vat/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po index 680c9f8d3ab..14a53af9daa 100644 --- a/addons/base_vat/i18n/ca.po +++ b/addons/base_vat/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po index 540c9d40fa1..d5bcc73d488 100644 --- a/addons/base_vat/i18n/cs.po +++ b/addons/base_vat/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po index 55d1cf27f74..4f16214fe53 100644 --- a/addons/base_vat/i18n/da.po +++ b/addons/base_vat/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po index 87c6031bb2c..efee71bdb48 100644 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po index 0ff3f3e0939..2c1df0d6269 100644 --- a/addons/base_vat/i18n/el.po +++ b/addons/base_vat/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po index ff607e48a39..762414b0cb2 100644 --- a/addons/base_vat/i18n/en_AU.po +++ b/addons/base_vat/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po index b0506248556..7da7ad581ba 100644 --- a/addons/base_vat/i18n/en_GB.po +++ b/addons/base_vat/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po index 815708a4da2..2fa995d998b 100644 --- a/addons/base_vat/i18n/es.po +++ b/addons/base_vat/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index cb8800a33dc..49553a4cb78 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po index bc9337cf319..fd57bc954d4 100644 --- a/addons/base_vat/i18n/es_CL.po +++ b/addons/base_vat/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po index 6b4203158fd..29be58f4578 100644 --- a/addons/base_vat/i18n/es_CR.po +++ b/addons/base_vat/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po index 4ebdd94a410..8165af13a89 100644 --- a/addons/base_vat/i18n/es_EC.po +++ b/addons/base_vat/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po index ca46e99fdfc..8029bd0a03b 100644 --- a/addons/base_vat/i18n/es_MX.po +++ b/addons/base_vat/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po index 3400edc8808..2ef8fa81cee 100644 --- a/addons/base_vat/i18n/es_PY.po +++ b/addons/base_vat/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po index d5cb1556bab..d20d120bbaa 100644 --- a/addons/base_vat/i18n/et.po +++ b/addons/base_vat/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po index 4fe2966b5cd..6053c956ea2 100644 --- a/addons/base_vat/i18n/eu.po +++ b/addons/base_vat/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po index c67b1043700..2d2b409569d 100644 --- a/addons/base_vat/i18n/fa.po +++ b/addons/base_vat/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po index 1ac574ae9e7..0e16b8d895c 100644 --- a/addons/base_vat/i18n/fi.po +++ b/addons/base_vat/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po index 1700489adbf..18b5d79fdfa 100644 --- a/addons/base_vat/i18n/fr.po +++ b/addons/base_vat/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po index 2acf06891a2..1fb03e254d2 100644 --- a/addons/base_vat/i18n/gl.po +++ b/addons/base_vat/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po index 89461b35650..2df99c882ec 100644 --- a/addons/base_vat/i18n/gu.po +++ b/addons/base_vat/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po index cc7e928a95f..ad1f6904d38 100644 --- a/addons/base_vat/i18n/hr.po +++ b/addons/base_vat/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po index fc957febd97..5cac8ef3e94 100644 --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po index be0106c2cf1..a00f918a362 100644 --- a/addons/base_vat/i18n/id.po +++ b/addons/base_vat/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index 702b83b7408..7ff9b977417 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po index ec7dfc1b658..351ef9bf4ff 100644 --- a/addons/base_vat/i18n/ja.po +++ b/addons/base_vat/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po index 7aeae488568..f6cfd164925 100644 --- a/addons/base_vat/i18n/ko.po +++ b/addons/base_vat/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po index c8062be5a7d..c21b2a4ef06 100644 --- a/addons/base_vat/i18n/lt.po +++ b/addons/base_vat/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po index 07b66d18b6b..700b9fc9e43 100644 --- a/addons/base_vat/i18n/lv.po +++ b/addons/base_vat/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/mk.po b/addons/base_vat/i18n/mk.po index 86f91290c1b..f144540660c 100644 --- a/addons/base_vat/i18n/mk.po +++ b/addons/base_vat/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po index 16bf5f97891..35277a45d8c 100644 --- a/addons/base_vat/i18n/mn.po +++ b/addons/base_vat/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po index 9ff473f5c43..82ba12756a4 100644 --- a/addons/base_vat/i18n/nb.po +++ b/addons/base_vat/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po index 5c91635c178..0ff3e216d09 100644 --- a/addons/base_vat/i18n/nl.po +++ b/addons/base_vat/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index 6b238b942c2..097d2d946fd 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po index 8d6e5246e72..b11a81e5900 100644 --- a/addons/base_vat/i18n/oc.po +++ b/addons/base_vat/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po index e78db098cc1..d47398e26ff 100644 --- a/addons/base_vat/i18n/pl.po +++ b/addons/base_vat/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po index 2050967b48d..a9bfabebed8 100644 --- a/addons/base_vat/i18n/pt.po +++ b/addons/base_vat/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index 69725c61fdf..3c007ff6d1d 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index 66dd1d5aca0..6a798e40772 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po index 10a831ff0ce..90a5338257a 100644 --- a/addons/base_vat/i18n/ru.po +++ b/addons/base_vat/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po index a1364266d30..a364688ba8a 100644 --- a/addons/base_vat/i18n/sk.po +++ b/addons/base_vat/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po index d879a08046f..f77d1a9a1ab 100644 --- a/addons/base_vat/i18n/sl.po +++ b/addons/base_vat/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po index 8e3d2d98529..9fbd488c490 100644 --- a/addons/base_vat/i18n/sq.po +++ b/addons/base_vat/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po index 2d537a837a4..3432538a867 100644 --- a/addons/base_vat/i18n/sr.po +++ b/addons/base_vat/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po index bc98a2498d5..13e63744bba 100644 --- a/addons/base_vat/i18n/sr@latin.po +++ b/addons/base_vat/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po index 3e6f33ed0b7..93a2ccfcbc2 100644 --- a/addons/base_vat/i18n/sv.po +++ b/addons/base_vat/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po index 60df04e0dab..73c0a99e8c5 100644 --- a/addons/base_vat/i18n/th.po +++ b/addons/base_vat/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po index f3f974095e8..13f0030e260 100644 --- a/addons/base_vat/i18n/tlh.po +++ b/addons/base_vat/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index d4b16122a86..75284f0e8e8 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po index 188d63e6f79..8a5a74c19fe 100644 --- a/addons/base_vat/i18n/uk.po +++ b/addons/base_vat/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po index 7219d6ae093..84bfb8b8a31 100644 --- a/addons/base_vat/i18n/vi.po +++ b/addons/base_vat/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index 5dcb02c3dc4..dab9db25c43 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index d66be37ec92..443500d082d 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base_vat #: view:res.partner:0 diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po index 2365ea031dd..fbef2dcb1c1 100644 --- a/addons/board/i18n/ar.po +++ b/addons/board/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bg.po b/addons/board/i18n/bg.po index 54457116ef0..c0edde0f2fd 100644 --- a/addons/board/i18n/bg.po +++ b/addons/board/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/br.po b/addons/board/i18n/br.po index 1ced8c5513e..c8d071b9394 100644 --- a/addons/board/i18n/br.po +++ b/addons/board/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/bs.po b/addons/board/i18n/bs.po index 642355e9a73..b695f201309 100644 --- a/addons/board/i18n/bs.po +++ b/addons/board/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ca.po b/addons/board/i18n/ca.po index e36c7f62710..1accdb124d1 100644 --- a/addons/board/i18n/ca.po +++ b/addons/board/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/cs.po b/addons/board/i18n/cs.po index c61dac44cf0..66689077b14 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/da.po b/addons/board/i18n/da.po index 22722227f9a..776188f2ebd 100644 --- a/addons/board/i18n/da.po +++ b/addons/board/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/de.po b/addons/board/i18n/de.po index 879c90e8594..549c5f7e1e1 100644 --- a/addons/board/i18n/de.po +++ b/addons/board/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/el.po b/addons/board/i18n/el.po index 82dea32ac83..3d7bf1b865e 100644 --- a/addons/board/i18n/el.po +++ b/addons/board/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/en_GB.po b/addons/board/i18n/en_GB.po index f64b4550a9f..23cde717cde 100644 --- a/addons/board/i18n/en_GB.po +++ b/addons/board/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es.po b/addons/board/i18n/es.po index 297a8d21f1a..0e8913616ca 100644 --- a/addons/board/i18n/es.po +++ b/addons/board/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_AR.po b/addons/board/i18n/es_AR.po index 639db26470c..d170dd91bd9 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CL.po b/addons/board/i18n/es_CL.po index d9c60add8bb..a362c91f849 100644 --- a/addons/board/i18n/es_CL.po +++ b/addons/board/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_CR.po b/addons/board/i18n/es_CR.po index 6dfba40ae03..d9b0ce8b71b 100644 --- a/addons/board/i18n/es_CR.po +++ b/addons/board/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po index cc9f8b3ecf6..c7ae8972485 100644 --- a/addons/board/i18n/es_EC.po +++ b/addons/board/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/es_PY.po b/addons/board/i18n/es_PY.po index 556661c3d98..c4e63b8d860 100644 --- a/addons/board/i18n/es_PY.po +++ b/addons/board/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/et.po b/addons/board/i18n/et.po index b670c9e1507..842b558cf11 100644 --- a/addons/board/i18n/et.po +++ b/addons/board/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fa.po b/addons/board/i18n/fa.po index 54fbe423b67..c67d9b21854 100644 --- a/addons/board/i18n/fa.po +++ b/addons/board/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fi.po b/addons/board/i18n/fi.po index 35c737d4125..3c49a7b7d46 100644 --- a/addons/board/i18n/fi.po +++ b/addons/board/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po index f2195bea15b..2b3ed71d57d 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gl.po b/addons/board/i18n/gl.po index b6b7511c0d4..c2cf2340c3e 100644 --- a/addons/board/i18n/gl.po +++ b/addons/board/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/gu.po b/addons/board/i18n/gu.po index 0ab4077ade9..a3edb75fc50 100644 --- a/addons/board/i18n/gu.po +++ b/addons/board/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hr.po b/addons/board/i18n/hr.po index 0f59fd3b20b..d4410eadee0 100644 --- a/addons/board/i18n/hr.po +++ b/addons/board/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/hu.po b/addons/board/i18n/hu.po index 579a834b02c..64c28790144 100644 --- a/addons/board/i18n/hu.po +++ b/addons/board/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/id.po b/addons/board/i18n/id.po index 7b53706faf0..e5295cbe049 100644 --- a/addons/board/i18n/id.po +++ b/addons/board/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po index cb65d1168f3..eeb96ef16a8 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ja.po b/addons/board/i18n/ja.po index d8ef5eb0fb5..95149509a88 100644 --- a/addons/board/i18n/ja.po +++ b/addons/board/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ko.po b/addons/board/i18n/ko.po index b34cc55ef04..7723b3a6b00 100644 --- a/addons/board/i18n/ko.po +++ b/addons/board/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ln.po b/addons/board/i18n/ln.po index 8e98f29b0f4..417e919bac6 100644 --- a/addons/board/i18n/ln.po +++ b/addons/board/i18n/ln.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lt.po b/addons/board/i18n/lt.po index e52e05602ef..cb2f90466b9 100644 --- a/addons/board/i18n/lt.po +++ b/addons/board/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/lv.po b/addons/board/i18n/lv.po index 330e4a4316d..5de3c726054 100644 --- a/addons/board/i18n/lv.po +++ b/addons/board/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/mk.po b/addons/board/i18n/mk.po index 35fbb9753ae..e3fb337b858 100644 --- a/addons/board/i18n/mk.po +++ b/addons/board/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: board diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po index 56274b8b3f5..0737a8dfcc8 100644 --- a/addons/board/i18n/mn.po +++ b/addons/board/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nb.po b/addons/board/i18n/nb.po index 53d10243a7e..1be08f9f882 100644 --- a/addons/board/i18n/nb.po +++ b/addons/board/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl.po b/addons/board/i18n/nl.po index fc970f70706..12d90106c18 100644 --- a/addons/board/i18n/nl.po +++ b/addons/board/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/nl_BE.po b/addons/board/i18n/nl_BE.po index 0f0681ed407..950b935f983 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pl.po b/addons/board/i18n/pl.po index 62d55ff2a61..53bf53275da 100644 --- a/addons/board/i18n/pl.po +++ b/addons/board/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt.po b/addons/board/i18n/pt.po index 4a2b98b933a..3d6936ca6d1 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/pt_BR.po b/addons/board/i18n/pt_BR.po index 26c391d49b0..dc33b311e8b 100644 --- a/addons/board/i18n/pt_BR.po +++ b/addons/board/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index 477fb6b5c8a..e0e75f02559 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/ru.po b/addons/board/i18n/ru.po index 236a65aad95..3312ba424e9 100644 --- a/addons/board/i18n/ru.po +++ b/addons/board/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sk.po b/addons/board/i18n/sk.po index 9263ce7ed61..0e82fa4d7fb 100644 --- a/addons/board/i18n/sk.po +++ b/addons/board/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sl.po b/addons/board/i18n/sl.po index 7b2a880a5fe..c1f0c9cf561 100644 --- a/addons/board/i18n/sl.po +++ b/addons/board/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sq.po b/addons/board/i18n/sq.po index db5cb81a18f..71df483e2ff 100644 --- a/addons/board/i18n/sq.po +++ b/addons/board/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr.po b/addons/board/i18n/sr.po index e616492eb3e..7d38f068653 100644 --- a/addons/board/i18n/sr.po +++ b/addons/board/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sr@latin.po b/addons/board/i18n/sr@latin.po index 35f5757897b..fcc3be0ae8a 100644 --- a/addons/board/i18n/sr@latin.po +++ b/addons/board/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/sv.po b/addons/board/i18n/sv.po index 24c1ff18307..f9e4596a66b 100644 --- a/addons/board/i18n/sv.po +++ b/addons/board/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/th.po b/addons/board/i18n/th.po index 34ba6597e2f..2ab29d16175 100644 --- a/addons/board/i18n/th.po +++ b/addons/board/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po index 7e14b76cc6d..934e77bf559 100644 --- a/addons/board/i18n/tlh.po +++ b/addons/board/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/tr.po b/addons/board/i18n/tr.po index e73d64ecc76..571f3c64b14 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/uk.po b/addons/board/i18n/uk.po index 324eb5fa59a..60121cbf62d 100644 --- a/addons/board/i18n/uk.po +++ b/addons/board/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/vi.po b/addons/board/i18n/vi.po index 7cb1456fd6c..ae669e7af51 100644 --- a/addons/board/i18n/vi.po +++ b/addons/board/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index d91d53f8e8a..dd5e901a146 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/zh_TW.po b/addons/board/i18n/zh_TW.po index 8ac47e43c7e..54f79ba0ed9 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/claim_from_delivery/i18n/ar.po b/addons/claim_from_delivery/i18n/ar.po index b7f4b7d2ea3..e5a0fa8f532 100644 --- a/addons/claim_from_delivery/i18n/ar.po +++ b/addons/claim_from_delivery/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/bg.po b/addons/claim_from_delivery/i18n/bg.po index 78510e8aba8..275d463a216 100644 --- a/addons/claim_from_delivery/i18n/bg.po +++ b/addons/claim_from_delivery/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ca.po b/addons/claim_from_delivery/i18n/ca.po index e03cfccf999..0e8547f3226 100644 --- a/addons/claim_from_delivery/i18n/ca.po +++ b/addons/claim_from_delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/cs.po b/addons/claim_from_delivery/i18n/cs.po index 98a9ba7379c..d28ec48c65b 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index 936004cba90..4f9ee57c96a 100644 --- a/addons/claim_from_delivery/i18n/da.po +++ b/addons/claim_from_delivery/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/de.po b/addons/claim_from_delivery/i18n/de.po index e4f38f13e06..71848bcbf96 100644 --- a/addons/claim_from_delivery/i18n/de.po +++ b/addons/claim_from_delivery/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/en_GB.po b/addons/claim_from_delivery/i18n/en_GB.po index 0f35e8b72d9..cf8d1aa36fc 100644 --- a/addons/claim_from_delivery/i18n/en_GB.po +++ b/addons/claim_from_delivery/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es.po b/addons/claim_from_delivery/i18n/es.po index 18160600b6f..91f3e27b1cd 100644 --- a/addons/claim_from_delivery/i18n/es.po +++ b/addons/claim_from_delivery/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_AR.po b/addons/claim_from_delivery/i18n/es_AR.po index c526636d6ce..35e350eedf2 100644 --- a/addons/claim_from_delivery/i18n/es_AR.po +++ b/addons/claim_from_delivery/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CL.po b/addons/claim_from_delivery/i18n/es_CL.po index b56c20d2339..23e4e516994 100644 --- a/addons/claim_from_delivery/i18n/es_CL.po +++ b/addons/claim_from_delivery/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_CR.po b/addons/claim_from_delivery/i18n/es_CR.po index ee5ef661bdf..037c0867b91 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index f364e99fef4..75188987ee1 100644 --- a/addons/claim_from_delivery/i18n/es_EC.po +++ b/addons/claim_from_delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/es_PY.po b/addons/claim_from_delivery/i18n/es_PY.po index 5df8d828f06..ab2350025c4 100644 --- a/addons/claim_from_delivery/i18n/es_PY.po +++ b/addons/claim_from_delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fa.po b/addons/claim_from_delivery/i18n/fa.po index 2dbf301490c..ea7b9677841 100644 --- a/addons/claim_from_delivery/i18n/fa.po +++ b/addons/claim_from_delivery/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fi.po b/addons/claim_from_delivery/i18n/fi.po index c1fe27b38eb..b5f2a30c857 100644 --- a/addons/claim_from_delivery/i18n/fi.po +++ b/addons/claim_from_delivery/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index 21935b8b044..03269d34c3f 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gl.po b/addons/claim_from_delivery/i18n/gl.po index e2b71caa744..ede61b0955f 100644 --- a/addons/claim_from_delivery/i18n/gl.po +++ b/addons/claim_from_delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/gu.po b/addons/claim_from_delivery/i18n/gu.po index 9ce8735cde9..626393d6842 100644 --- a/addons/claim_from_delivery/i18n/gu.po +++ b/addons/claim_from_delivery/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hr.po b/addons/claim_from_delivery/i18n/hr.po index a39e85fe583..5a4e8019bc1 100644 --- a/addons/claim_from_delivery/i18n/hr.po +++ b/addons/claim_from_delivery/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/hu.po b/addons/claim_from_delivery/i18n/hu.po index 4b2a8fc7a2a..8a179c4f74d 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/id.po b/addons/claim_from_delivery/i18n/id.po index babced79e12..ceb3e6841f4 100644 --- a/addons/claim_from_delivery/i18n/id.po +++ b/addons/claim_from_delivery/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/it.po b/addons/claim_from_delivery/i18n/it.po index ea17756ec25..62f83db1f24 100644 --- a/addons/claim_from_delivery/i18n/it.po +++ b/addons/claim_from_delivery/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ja.po b/addons/claim_from_delivery/i18n/ja.po index 5102018ac32..a49c84de2d8 100644 --- a/addons/claim_from_delivery/i18n/ja.po +++ b/addons/claim_from_delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lo.po b/addons/claim_from_delivery/i18n/lo.po index e86db19ca8e..5275d9933ee 100644 --- a/addons/claim_from_delivery/i18n/lo.po +++ b/addons/claim_from_delivery/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/lt.po b/addons/claim_from_delivery/i18n/lt.po index ad80564a0a9..ad100e68621 100644 --- a/addons/claim_from_delivery/i18n/lt.po +++ b/addons/claim_from_delivery/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mk.po b/addons/claim_from_delivery/i18n/mk.po index dac96827b5b..2a6ad3135f9 100644 --- a/addons/claim_from_delivery/i18n/mk.po +++ b/addons/claim_from_delivery/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index 642b402ed5c..2bdf84ea4ac 100644 --- a/addons/claim_from_delivery/i18n/mn.po +++ b/addons/claim_from_delivery/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nb.po b/addons/claim_from_delivery/i18n/nb.po index d0ac9d698c1..56abb62c8f9 100644 --- a/addons/claim_from_delivery/i18n/nb.po +++ b/addons/claim_from_delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl.po b/addons/claim_from_delivery/i18n/nl.po index 339a93a344b..e6c321baa8a 100644 --- a/addons/claim_from_delivery/i18n/nl.po +++ b/addons/claim_from_delivery/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/nl_BE.po b/addons/claim_from_delivery/i18n/nl_BE.po index c1192ce1f8c..76a69acf8ad 100644 --- a/addons/claim_from_delivery/i18n/nl_BE.po +++ b/addons/claim_from_delivery/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/oc.po b/addons/claim_from_delivery/i18n/oc.po index 0021d209db3..02d3089b91a 100644 --- a/addons/claim_from_delivery/i18n/oc.po +++ b/addons/claim_from_delivery/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pl.po b/addons/claim_from_delivery/i18n/pl.po index b341713f071..748faaf5199 100644 --- a/addons/claim_from_delivery/i18n/pl.po +++ b/addons/claim_from_delivery/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt.po b/addons/claim_from_delivery/i18n/pt.po index 420dc529c49..071df681424 100644 --- a/addons/claim_from_delivery/i18n/pt.po +++ b/addons/claim_from_delivery/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/pt_BR.po b/addons/claim_from_delivery/i18n/pt_BR.po index d92e78c2b83..2a1a3b5e549 100644 --- a/addons/claim_from_delivery/i18n/pt_BR.po +++ b/addons/claim_from_delivery/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ro.po b/addons/claim_from_delivery/i18n/ro.po index 7df8725c0f0..9eb1dbb5fc0 100644 --- a/addons/claim_from_delivery/i18n/ro.po +++ b/addons/claim_from_delivery/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ru.po b/addons/claim_from_delivery/i18n/ru.po index d013dcd7fb8..56aed030bc7 100644 --- a/addons/claim_from_delivery/i18n/ru.po +++ b/addons/claim_from_delivery/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sl.po b/addons/claim_from_delivery/i18n/sl.po index 7280cd567ba..0b25d9bde16 100644 --- a/addons/claim_from_delivery/i18n/sl.po +++ b/addons/claim_from_delivery/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sq.po b/addons/claim_from_delivery/i18n/sq.po index ffa55d36bd4..30a9f9926cc 100644 --- a/addons/claim_from_delivery/i18n/sq.po +++ b/addons/claim_from_delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr.po b/addons/claim_from_delivery/i18n/sr.po index a5dd70ed8d7..ba343a0e1f1 100644 --- a/addons/claim_from_delivery/i18n/sr.po +++ b/addons/claim_from_delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sr@latin.po b/addons/claim_from_delivery/i18n/sr@latin.po index 99f7b0d911b..f6fdcb20ba3 100644 --- a/addons/claim_from_delivery/i18n/sr@latin.po +++ b/addons/claim_from_delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/sv.po b/addons/claim_from_delivery/i18n/sv.po index 5fb2ed00ca8..2137898e47b 100644 --- a/addons/claim_from_delivery/i18n/sv.po +++ b/addons/claim_from_delivery/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/ta.po b/addons/claim_from_delivery/i18n/ta.po index 6e6892ffd7d..8568be8541d 100644 --- a/addons/claim_from_delivery/i18n/ta.po +++ b/addons/claim_from_delivery/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/tr.po b/addons/claim_from_delivery/i18n/tr.po index 443e66928a0..1c076e2d462 100644 --- a/addons/claim_from_delivery/i18n/tr.po +++ b/addons/claim_from_delivery/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_CN.po b/addons/claim_from_delivery/i18n/zh_CN.po index 862dd86ec1d..586dd8a2bae 100644 --- a/addons/claim_from_delivery/i18n/zh_CN.po +++ b/addons/claim_from_delivery/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/zh_TW.po b/addons/claim_from_delivery/i18n/zh_TW.po index 50fcc1c10da..c16875c9e62 100644 --- a/addons/claim_from_delivery/i18n/zh_TW.po +++ b/addons/claim_from_delivery/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/contacts/i18n/ar.po b/addons/contacts/i18n/ar.po index 92a7da5e899..bcb48cf5675 100644 --- a/addons/contacts/i18n/ar.po +++ b/addons/contacts/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/cs.po b/addons/contacts/i18n/cs.po index f0238496668..488b1acb690 100644 --- a/addons/contacts/i18n/cs.po +++ b/addons/contacts/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/de.po b/addons/contacts/i18n/de.po index 1b0a82f74c8..9f2abf076f7 100644 --- a/addons/contacts/i18n/de.po +++ b/addons/contacts/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/en_GB.po b/addons/contacts/i18n/en_GB.po index c54493c19bb..853138376ef 100644 --- a/addons/contacts/i18n/en_GB.po +++ b/addons/contacts/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es.po b/addons/contacts/i18n/es.po index e6d1f80b3f7..a53fec529f5 100644 --- a/addons/contacts/i18n/es.po +++ b/addons/contacts/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/es_CO.po b/addons/contacts/i18n/es_CO.po index 2b9f12d46b1..4e43a22700f 100644 --- a/addons/contacts/i18n/es_CO.po +++ b/addons/contacts/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/et.po b/addons/contacts/i18n/et.po index 75ebb134b04..9e35961c812 100644 --- a/addons/contacts/i18n/et.po +++ b/addons/contacts/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/fr.po b/addons/contacts/i18n/fr.po index e09210ac640..8be88a7526f 100644 --- a/addons/contacts/i18n/fr.po +++ b/addons/contacts/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hr.po b/addons/contacts/i18n/hr.po index 995292f503e..ba761b5a8c5 100644 --- a/addons/contacts/i18n/hr.po +++ b/addons/contacts/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index 05b5e9b8ae2..6b22db42822 100644 --- a/addons/contacts/i18n/hu.po +++ b/addons/contacts/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/it.po b/addons/contacts/i18n/it.po index ed8671eff8f..79d95eacc45 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/mk.po b/addons/contacts/i18n/mk.po index 9312c19b97d..36bfc90afd0 100644 --- a/addons/contacts/i18n/mk.po +++ b/addons/contacts/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/mn.po b/addons/contacts/i18n/mn.po index a2a3c5d2848..4a8eca36c3b 100644 --- a/addons/contacts/i18n/mn.po +++ b/addons/contacts/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl.po b/addons/contacts/i18n/nl.po index fae257e060f..f5edd3558e5 100644 --- a/addons/contacts/i18n/nl.po +++ b/addons/contacts/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pl.po b/addons/contacts/i18n/pl.po index d8f69f5dfb2..bb057787040 100644 --- a/addons/contacts/i18n/pl.po +++ b/addons/contacts/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt.po b/addons/contacts/i18n/pt.po index 13f44c168fb..8dc3d82e8bc 100644 --- a/addons/contacts/i18n/pt.po +++ b/addons/contacts/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/pt_BR.po b/addons/contacts/i18n/pt_BR.po index 670061cfa6c..52f09fbfbb2 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ro.po b/addons/contacts/i18n/ro.po index 65f8bb0f83d..60b7e25a253 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index 85c5b3a46a7..0d4bea7c307 100644 --- a/addons/contacts/i18n/ru.po +++ b/addons/contacts/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sl.po b/addons/contacts/i18n/sl.po index 1a94e3df2ec..ec41479d97c 100644 --- a/addons/contacts/i18n/sl.po +++ b/addons/contacts/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/sv.po b/addons/contacts/i18n/sv.po index a6988e05412..3671af5f1dd 100644 --- a/addons/contacts/i18n/sv.po +++ b/addons/contacts/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index 8672b3835f2..c575abd8b20 100644 --- a/addons/contacts/i18n/tr.po +++ b/addons/contacts/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_CN.po b/addons/contacts/i18n/zh_CN.po index a0076b1262b..39fff36f1d2 100644 --- a/addons/contacts/i18n/zh_CN.po +++ b/addons/contacts/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/zh_TW.po b/addons/contacts/i18n/zh_TW.po index aab0e225600..b1d04f15968 100644 --- a/addons/contacts/i18n/zh_TW.po +++ b/addons/contacts/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/crm/i18n/ar.po b/addons/crm/i18n/ar.po index c676dca7ebc..147fde8aff0 100644 --- a/addons/crm/i18n/ar.po +++ b/addons/crm/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/bg.po b/addons/crm/i18n/bg.po index 5c50c0400ae..327df12fb2a 100644 --- a/addons/crm/i18n/bg.po +++ b/addons/crm/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/bs.po b/addons/crm/i18n/bs.po index 3f3becdeb72..0e991ece11c 100644 --- a/addons/crm/i18n/bs.po +++ b/addons/crm/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ca.po b/addons/crm/i18n/ca.po index c471fe2d0f5..4379e9e7fc2 100644 --- a/addons/crm/i18n/ca.po +++ b/addons/crm/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/cs.po b/addons/crm/i18n/cs.po index cfcc9341b2b..82706661bef 100644 --- a/addons/crm/i18n/cs.po +++ b/addons/crm/i18n/cs.po @@ -8,19 +8,20 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:36+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-27 14:29+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" +"Language: Czech\n" #. module: crm #: view:crm.lead.report:0 msgid "# Leads" -msgstr "" +msgstr "# zájemců" #. module: crm #: help:sale.config.settings,fetchmail_lead:0 @@ -28,6 +29,8 @@ msgid "" "Allows you to configure your incoming mail server, and create leads from " "incoming emails." msgstr "" +"Umožňuje nastavit server příchozí pošty a vytváření zájemců pomocí " +"příchozích e-mailů." #. module: crm #: code:addons/crm/crm_lead.py:881 @@ -38,7 +41,7 @@ msgstr "" #: selection:crm.lead.report,type:0 #, python-format msgid "Lead" -msgstr "" +msgstr "Zájemce" #. module: crm #: view:crm.lead:0 @@ -55,6 +58,11 @@ msgid "" "Description: [[object.description]]\n" " " msgstr "" +"Upozornění! Jsou již více než 5 dnů nezpracovaní noví zájemci.\n" +"Název: [[object.name ]]\n" +"ID: [[object.id ]]\n" +"Popis: [[object.description]]\n" +" " #. module: crm #: field:crm.opportunity2phonecall,action:0 @@ -65,7 +73,7 @@ msgstr "Akce" #. module: crm #: model:ir.actions.server,name:crm.action_set_team_sales_department msgid "Set team to Sales Department" -msgstr "" +msgstr "Přiřaď tým k obchodnímu oddělení" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 @@ -76,13 +84,13 @@ msgstr "Vyberte příležitosti" #: model:res.groups,name:crm.group_fund_raising #: field:sale.config.settings,group_fund_raising:0 msgid "Manage Fund Raising" -msgstr "" +msgstr "Spravovat získávání financí" #. module: crm #: view:crm.lead.report:0 #: field:crm.phonecall.report,delay_close:0 msgid "Delay to close" -msgstr "Prodleva do ukončení" +msgstr "Doba do ukončení" #. module: crm #: view:crm.case.stage:0 @@ -96,12 +104,12 @@ msgstr "Název fáze" #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Salesperson" -msgstr "" +msgstr "Obchodník" #. module: crm #: model:ir.model,name:crm.model_crm_lead_report msgid "CRM Lead Analysis" -msgstr "" +msgstr "Analýza zájemce" #. module: crm #: view:crm.lead.report:0 @@ -113,23 +121,23 @@ msgstr "Den" #. module: crm #: view:crm.lead:0 msgid "Company Name" -msgstr "" +msgstr "Název společnosti" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor6 msgid "Training" -msgstr "" +msgstr "Tréning" #. module: crm #: model:ir.actions.act_window,name:crm.crm_lead_categ_action #: model:ir.ui.menu,name:crm.menu_crm_lead_categ msgid "Sales Tags" -msgstr "" +msgstr "Značky (obchod)" #. module: crm #: view:crm.lead.report:0 msgid "Exp. Closing" -msgstr "" +msgstr "Vypršelo uzavření" #. module: crm #: view:crm.phonecall:0 @@ -139,7 +147,7 @@ msgstr "" #. module: crm #: help:crm.lead.report,creation_day:0 msgid "Creation day" -msgstr "" +msgstr "Den vytvoření" #. module: crm #: field:crm.segmentation.line,name:0 @@ -150,7 +158,7 @@ msgstr "Název pravidla" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "Najednou je možno převést jen jeden telefonní hovor." #. module: crm #: view:crm.case.resource.type:0 @@ -160,7 +168,7 @@ msgstr "" #: field:crm.lead.report,type_id:0 #: model:ir.model,name:crm.model_crm_case_resource_type msgid "Campaign" -msgstr "" +msgstr "Kampaň" #. module: crm #: view:crm.lead:0 @@ -170,7 +178,7 @@ msgstr "Hledat příležitosti" #. module: crm #: help:crm.lead.report,deadline_month:0 msgid "Expected closing month" -msgstr "" +msgstr "Očekávaný měsíc uzavření" #. module: crm #: help:crm.case.section,message_summary:0 @@ -180,6 +188,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 "" +"Udržuje záznamy o komunikaci (počet zpráv, …). Tento souhrn je přímo v HTML " +"formátu aby mohl být vložen do zobrazení kanban." #. module: crm #: code:addons/crm/crm_lead.py:624 @@ -202,7 +212,7 @@ msgstr "Varování!" #: model:ir.model,name:crm.model_res_partner #: model:process.node,name:crm.process_node_partner0 msgid "Partner" -msgstr "Partner" +msgstr "Kontakt" #. module: crm #: view:crm.phonecall:0 @@ -220,7 +230,7 @@ msgstr "Telefonní hovor" #. module: crm #: field:crm.lead,opt_out:0 msgid "Opt-Out" -msgstr "" +msgstr "odhlášení" #. module: crm #: view:crm.lead:0 @@ -230,17 +240,17 @@ msgstr "" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "# schůzek" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead msgid "Reminder to User" -msgstr "" +msgstr "Upozornění na uživatele" #. module: crm #: field:crm.segmentation,segmentation_line:0 msgid "Criteria" -msgstr "Kritérium" +msgstr "Pravidlo" #. module: crm #: view:crm.lead:0 @@ -250,25 +260,25 @@ msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Excluded Answers :" -msgstr "" +msgstr "Vyloučené odpovědi:" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Sloučit příležitosti" #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.action_report_crm_lead #: model:ir.ui.menu,name:crm.menu_report_crm_leads_tree msgid "Leads Analysis" -msgstr "" +msgstr "Analýza zájemců" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_resource_type_act #: model:ir.ui.menu,name:crm.menu_crm_case_resource_type_act msgid "Campaigns" -msgstr "" +msgstr "Kampaně" #. module: crm #: view:crm.lead:0 @@ -289,22 +299,24 @@ msgid "" "If opt-out is checked, this contact has refused to receive emails or " "unsubscribed to a campaign." msgstr "" +"Je-li zaškrtnuto, znamená, že kontakt odmítl přijímat e-maily nebo se " +"odhlásil z kampaně." #. module: crm #: model:process.transition,name:crm.process_transition_leadpartner0 msgid "Prospect Partner" -msgstr "" +msgstr "?!?Očekávaný kontakt" #. module: crm #: code:addons/crm/crm_lead.py:982 #, python-format msgid "No Subject" -msgstr "" +msgstr "Bez předmětu" #. module: crm #: field:crm.lead,contact_name:0 msgid "Contact Name" -msgstr "Jméno kontaktu" +msgstr "Jméno osoby" #. module: crm #: help:crm.segmentation,categ_id:0 @@ -312,8 +324,8 @@ msgid "" "The partner category that will be added to partners that match the " "segmentation criterions after computation." msgstr "" -"Kategorie partnera, která bude přidána k partnerům, kteří odpovídají " -"kritériu členění po vypočtení." +"Kategorie kontaktů, která bude přidána ke kontaktům, které odpovídají " +"vyhodnoceným pravidlům segmentace." #. module: crm #: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act @@ -328,6 +340,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte nový segment zákazníků.\n" +"

\n" +" Vytvářejte specifické kategorie, které pak můžete přiřadit \n" +" svým zákazníkům, abyste lépe řídili spolupráci s nimi. \n" +" Nástroj pro segmentaci je schopen automaticky přiřazovat\n" +" kategorie ke kontaktům podle pravidel, které nastavíte.\n" +"

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 @@ -341,27 +362,28 @@ msgstr "Kontakt" msgid "" "When escalating to this team override the salesman with the team leader." msgstr "" +"?!?Při povýšení do tohoto týmu bude obchodník nahrazen vedoucím týmu." #. module: crm #: model:process.transition,name:crm.process_transition_opportunitymeeting0 msgid "Opportunity Meeting" -msgstr "" +msgstr "Schůzka (příležitost)" #. module: crm #: help:crm.lead.report,delay_close:0 #: help:crm.phonecall.report,delay_close:0 msgid "Number of Days to close the case" -msgstr "" +msgstr "Počet dnů do uzavření případu" #. module: crm #: model:process.node,note:crm.process_node_opportunities0 msgid "When a real project/opportunity is detected" -msgstr "" +msgstr "?!?Když je zjištěn skutečný projekt/příležitost" #. module: crm #: field:res.partner,opportunity_ids:0 msgid "Leads and Opportunities" -msgstr "" +msgstr "Zájemci a příležitosti" #. module: crm #: model:ir.actions.act_window,help:crm.relate_partner_opportunities @@ -380,12 +402,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte k tomuto zákazníkovi příležitost.\n" +"

\n" +" Používejte příležitosti pro dohled nad prodejním kanálem,\n" +" sledování potenciálních obchodů a odhady budoucích příjmů.\n" +"

\n" +" Z prostředí příležitostí budete schopni plánovat schůzky\n" +" a telefonáty, konvertovat je do nabídek, přidávat " +"dokumenty,\n" +" sledovat diskuze, ale i mnohem více.\n" +"

\n" +" " #. module: crm #: model:crm.case.stage,name:crm.stage_lead7 #: view:crm.lead:0 msgid "Dead" -msgstr "" +msgstr "Mrtvé" #. module: crm #: field:crm.case.section,message_unread:0 @@ -393,21 +427,21 @@ msgstr "" #: field:crm.lead,message_unread:0 #: field:crm.phonecall,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepřečtené zprávy" #. module: crm #: view:crm.segmentation:0 #: field:crm.segmentation.line,segmentation_id:0 #: model:ir.actions.act_window,name:crm.crm_segmentation-act msgid "Segmentation" -msgstr "Členění" +msgstr "Segmentace" #. module: crm #: selection:crm.lead2opportunity.partner,action:0 #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Link to an existing customer" -msgstr "" +msgstr "Propojit se stávajícím zákazníkem" #. module: crm #: field:crm.lead,write_date:0 @@ -417,7 +451,7 @@ msgstr "Datum aktualizace" #. module: crm #: field:crm.case.section,user_id:0 msgid "Team Leader" -msgstr "" +msgstr "Vedoucí týmu" #. module: crm #: code:addons/crm/crm_lead.py:1032 @@ -431,6 +465,8 @@ msgid "" "This percentage depicts the default/average probability of the Case for this " "stage to be a success" msgstr "" +"Toto procento představuje výchozí/průměrnou pravděpodobnost, že případ bude " +"v této fázi úspěšný" #. module: crm #: view:crm.lead:0 @@ -445,7 +481,7 @@ msgstr "Kategorie" #. module: crm #: view:crm.lead.report:0 msgid "#Opportunities" -msgstr "#Příležitosti" +msgstr "# příležitostí" #. module: crm #: code:addons/crm/crm_lead.py:624 @@ -453,11 +489,12 @@ msgstr "#Příležitosti" msgid "" "Please select more than one element (lead or opportunity) from the list view." msgstr "" +"Vyberte prosím více než jeden prvek (zájemce nebo příležitost) ze seznamu." #. module: crm #: field:crm.lead,partner_address_email:0 msgid "Partner Contact Email" -msgstr "" +msgstr "E-mail kontaktu" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_section_act @@ -471,11 +508,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte nový obchodní tým.\n" +"

\n" +" Uspořádejte obchodníky nebo celá obchodní oddělení do \n" +" samostatných obchodních týmů. Každý tým pak bude pracovat\n" +" se svým vlastním seznamem příležitostí.\n" +"

\n" +" " #. module: crm #: model:process.transition,note:crm.process_transition_opportunitymeeting0 msgid "Normal or phone meeting for opportunity" -msgstr "" +msgstr "?!?Normální nebo telefonická schůzka pro příležitost" #. module: crm #: field:crm.lead,state:0 @@ -484,7 +529,7 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,state:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -499,17 +544,17 @@ msgstr "Nastavit" #. module: crm #: view:crm.lead:0 msgid "Escalate" -msgstr "" +msgstr "Stupňovat" #. module: crm #: view:crm.lead:0 msgid "Mailings" -msgstr "" +msgstr "zasílání e-mailů" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Fáze změněna" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -521,7 +566,7 @@ msgstr "Červen" #. module: crm #: selection:crm.segmentation,state:0 msgid "Not Running" -msgstr "" +msgstr "Neběží" #. module: crm #: field:crm.lead.report,planned_revenue:0 @@ -549,7 +594,7 @@ msgstr "Říjen" #. module: crm #: view:crm.segmentation:0 msgid "Included Answers :" -msgstr "" +msgstr "Použité odpovědi:" #. module: crm #: help:crm.phonecall,state:0 @@ -560,18 +605,21 @@ msgid "" " If the call needs to be done then the status is set " "to 'Not Held'." msgstr "" +"Stav je nastaven na 'volat' při založení záznamu o hovoru.Když hovor " +"probíhá, stav je nastaven na 'otevřeno'.Po uskutečnění hovoru je stav " +"'voláno'. Pokud je potřeba hovor provést, je stav 'nevoláno'." #. module: crm #: field:crm.case.section,message_summary:0 #: field:crm.lead,message_summary:0 #: field:crm.phonecall,message_summary:0 msgid "Summary" -msgstr "Shrnutí" +msgstr "Předmět" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge" -msgstr "" +msgstr "Sloučit" #. module: crm #: view:crm.case.categ:0 @@ -581,7 +629,7 @@ msgstr "Kategorie případu" #. module: crm #: field:crm.lead,partner_address_name:0 msgid "Partner Contact Name" -msgstr "" +msgstr "Název kontaktu" #. module: crm #: model:ir.actions.server,subject:crm.action_email_reminder_lead @@ -589,6 +637,8 @@ msgid "" "Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' " "+object.partner_id.name or '']]" msgstr "" +"Upozornění na zájemce: [[object.id ]] [[object.partner_id and 'of ' " +"+object.partner_id.name or '']]" #. module: crm #: code:addons/crm/crm_lead.py:745 @@ -601,29 +651,29 @@ msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Profiling Options" -msgstr "" +msgstr "Možnosti" #. module: crm #: view:crm.phonecall.report:0 msgid "#Phone calls" -msgstr "" +msgstr "# hovorů" #. module: crm #: sql_constraint:crm.case.section:0 msgid "The code of the sales team must be unique !" -msgstr "" +msgstr "Kód obchodního týmu musí být jedinečný!" #. module: crm #: help:crm.lead,email_from:0 msgid "Email address of the contact" -msgstr "" +msgstr "E-mail" #. module: crm #: selection:crm.case.stage,state:0 #: view:crm.lead:0 #: selection:crm.lead,state:0 msgid "In Progress" -msgstr "" +msgstr "Probíhá" #. module: crm #: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action @@ -637,6 +687,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím přidáte novou kategorii.\n" +"

\n" +" Vytvářejte si specifické kategorie telefonních hovorů. Ty vám\n" +" umožní lépe sledovat telefonáty ve vašem systému.\n" +"

\n" +" " #. module: crm #: help:crm.case.section,reply_to:0 @@ -644,11 +701,13 @@ msgid "" "The email address put in the 'Reply-To' of all emails sent by OpenERP about " "cases in this sales team" msgstr "" +"E-mailová adresa se uloží do 'Odpovědět-komu' všech systémem odeslaných e-" +"mailů týkajících se případů tohoto obchodního týmu" #. module: crm #: field:crm.lead.report,creation_month:0 msgid "Creation Month" -msgstr "" +msgstr "Měsíc vytvoření" #. module: crm #: field:crm.case.section,resource_calendar_id:0 @@ -659,29 +718,29 @@ msgstr "Pracovní čas" #. module: crm #: view:crm.segmentation.line:0 msgid "Partner Segmentation Lines" -msgstr "Řádky členění partnerů" +msgstr "Položky segmentace kontaktů" #. module: crm #: model:ir.actions.act_window,name:crm.action_report_crm_phonecall #: model:ir.ui.menu,name:crm.menu_report_crm_phonecalls_tree msgid "Phone Calls Analysis" -msgstr "Analýza telefonních hovorů" +msgstr "Analýza hovorů" #. module: crm #: view:crm.lead:0 msgid "Leads Form" -msgstr "" +msgstr "Zájemci z" #. module: crm #: view:crm.segmentation:0 #: model:ir.model,name:crm.model_crm_segmentation msgid "Partner Segmentation" -msgstr "Členění partnerů" +msgstr "Segmentace kontaktů" #. module: crm #: field:crm.lead,company_currency:0 msgid "Currency" -msgstr "" +msgstr "Měna" #. module: crm #: field:crm.lead.report,probable_revenue:0 @@ -691,27 +750,27 @@ msgstr "Pravděpodobný výnos" #. module: crm #: help:crm.lead.report,creation_month:0 msgid "Creation month" -msgstr "" +msgstr "Měsíc vytvoření" #. module: crm #: help:crm.segmentation,name:0 msgid "The name of the segmentation." -msgstr "" +msgstr "Název segmentu." #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +msgstr "Zájemci u USA" #. module: crm #: sql_constraint:crm.lead:0 msgid "The probability of closing the deal should be between 0% and 100%!" -msgstr "" +msgstr "Pravděpodobnost uzavření obchodu by měla být mezi 0 % a 100 % !" #. module: crm #: view:crm.lead:0 msgid "Leads Generation" -msgstr "" +msgstr "Generování zájemců" #. module: crm #: view:board.board:0 @@ -740,12 +799,12 @@ msgstr "Televize" #. module: crm #: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert msgid "Convert to opportunities" -msgstr "" +msgstr "Převést na příležitost" #. module: crm #: model:ir.model,name:crm.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: crm #: view:crm.segmentation:0 @@ -755,7 +814,7 @@ msgstr "Zastavit proces" #. module: crm #: field:crm.case.section,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Přezdívka" #. module: crm #: view:crm.phonecall:0 @@ -766,7 +825,7 @@ msgstr "Hledat telefonáty" #: view:crm.lead.report:0 msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" -msgstr "" +msgstr "Zájemci/Příležitosti přiřazené mně nebo obchodním týmům, které řídím" #. module: crm #: field:crm.segmentation.line,expr_value:0 @@ -781,18 +840,18 @@ msgstr "Typ události" #. module: crm #: field:crm.segmentation,exclusif:0 msgid "Exclusive" -msgstr "" +msgstr "Výhradní" #. module: crm #: code:addons/crm/crm_lead.py:584 #, python-format msgid "From %s : %s" -msgstr "" +msgstr "Od %s : %s" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Convert to Opportunities" -msgstr "" +msgstr "Konverze na příležitosti" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -801,7 +860,7 @@ msgstr "" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: crm #: field:crm.lead.report,create_date:0 @@ -820,6 +879,8 @@ msgid "" "Link between stages and sales teams. When set, this limitate the current " "stage to the selected sales teams." msgstr "" +"Propojení mezi fázemi a obchodními týmy. Je-li nastaveno, omezí současnou " +"fázi na vybrané obchodní týmy." #. module: crm #: view:crm.case.stage:0 @@ -835,7 +896,7 @@ msgstr "Zip" #. module: crm #: view:crm.phonecall:0 msgid "Unassigned Phonecalls" -msgstr "" +msgstr "Nepřiřazené telefonáty" #. module: crm #: view:crm.lead:0 @@ -853,7 +914,7 @@ msgstr "Příležitosti" #. module: crm #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "Kategorie společníků" +msgstr "Kategorie kontaktů" #. module: crm #: field:crm.lead,probability:0 @@ -863,7 +924,7 @@ msgstr "Úspěšnost (%)" #. module: crm #: field:crm.segmentation,sales_purchase_active:0 msgid "Use The Sales Purchase Rules" -msgstr "" +msgstr "Použít pravidla pro prodej/nákup" #. module: crm #: model:crm.case.categ,name:crm.categ_phone2 @@ -878,7 +939,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Mark Won" -msgstr "Označit jako vítězné" +msgstr "Označit 'získáno'" #. module: crm #: field:crm.case.stage,probability:0 @@ -888,12 +949,12 @@ msgstr "Pravděpodobnost (%)" #. module: crm #: view:crm.lead:0 msgid "Mark Lost" -msgstr "Označit jako ztracené" +msgstr "Označit 'ztraceno'" #. module: crm #: model:ir.filters,name:crm.filter_draft_lead msgid "Draft Leads" -msgstr "" +msgstr "Návrh zájemců" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -905,20 +966,20 @@ msgstr "Březen" #. module: crm #: view:crm.lead:0 msgid "Send Email" -msgstr "" +msgstr "Odeslat e-mail" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 #, python-format msgid "Warning !" -msgstr "Varování !" +msgstr "Varování!" #. module: crm #: help:crm.case.section,message_unread:0 #: help:crm.lead,message_unread:0 #: help:crm.phonecall,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Bude-li zaškrtnuto, budou nové zprávy vyžadovat vaši pozornost." #. module: crm #: field:crm.lead,day_open:0 @@ -944,7 +1005,7 @@ msgstr "Odkaz" #. module: crm #: help:crm.case.section,resource_calendar_id:0 msgid "Used to compute open days" -msgstr "" +msgstr "?!?Používá se pro výpočet otevřených dnů" #. module: crm #: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_meeting_new @@ -952,7 +1013,7 @@ msgstr "" #: view:res.partner:0 #: field:res.partner,meeting_ids:0 msgid "Meetings" -msgstr "Setkání" +msgstr "Schůzky" #. module: crm #: field:crm.lead,date_action_next:0 @@ -965,7 +1026,7 @@ msgstr "Další akce" #: code:addons/crm/crm_lead.py:763 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "Kontakt nastaven jako %s." #. module: crm #: selection:crm.lead.report,state:0 @@ -977,12 +1038,12 @@ msgstr "Koncept" #. module: crm #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "" +msgstr "Segmentace kontaktů" #. module: crm #: view:crm.lead.report:0 msgid "Show only opportunity" -msgstr "" +msgstr "Zobrazit pouze příležitosti" #. module: crm #: field:crm.lead,name:0 @@ -992,7 +1053,7 @@ msgstr "Předmět" #. module: crm #: view:crm.lead:0 msgid "Show Sales Team" -msgstr "" +msgstr "Zobrazit obchodní tým" #. module: crm #: help:sale.config.settings,module_crm_claim:0 @@ -1000,6 +1061,8 @@ msgid "" "Allows you to track your customers/suppliers claims and grievances.\n" " This installs the module crm_claim." msgstr "" +"Umožňuje sledovat reklamace a stížnosti zákazníků a dodavatelů.\n" +"Nainsataluje se modul crm_claim." #. module: crm #: model:crm.case.stage,name:crm.stage_lead6 @@ -1023,12 +1086,12 @@ msgstr "Oddělení prodeje" #: field:crm.lead.report,type:0 #: view:crm.opportunity2phonecall:0 msgid "Type" -msgstr "Typ" +msgstr "Druh" #. module: crm #: view:crm.segmentation:0 msgid "Compute Segmentation" -msgstr "" +msgstr "Provést segmentaci" #. module: crm #: selection:crm.lead,priority:0 @@ -1050,17 +1113,17 @@ msgstr "Datum vytvoření" #: code:addons/crm/crm_lead.py:698 #, python-format msgid "Lead converted into an Opportunity" -msgstr "" +msgstr "Zájemce převeden na příležitost" #. module: crm #: selection:crm.segmentation.line,expr_name:0 msgid "Purchase Amount" -msgstr "Nákupní ástka" +msgstr "Částka nákupu" #. module: crm #: view:crm.phonecall.report:0 msgid "Year of call" -msgstr "" +msgstr "Rok" #. module: crm #: view:crm.lead:0 @@ -1079,12 +1142,12 @@ msgstr "Fáze" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone Calls that are assigned to me" -msgstr "" +msgstr "Mně přiřazené telefonáty" #. module: crm #: field:crm.lead,user_login:0 msgid "User Login" -msgstr "" +msgstr "Uživatelské heslo" #. module: crm #: view:crm.lead:0 @@ -1094,7 +1157,7 @@ msgstr "" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in pending state" -msgstr "" +msgstr "Telefonáty ve stavu čekání" #. module: crm #: view:crm.case.section:0 @@ -1112,21 +1175,24 @@ msgid "" "Allows you to communicate with Customer, process Customer query, and " "provide better help and support. This installs the module crm_helpdesk." msgstr "" +"Umožňuje komunikaci se zákazníkem, zpracovat zákaznické dotazy, a poskytuje " +"pomoc a podporu.\n" +"Nainstaluje se modul crm_helpdesk." #. module: crm #: view:crm.lead:0 msgid "Delete" -msgstr "" +msgstr "?!?Smazat" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_create msgid "Opportunity created" -msgstr "" +msgstr "Příležitost vytvořena" #. module: crm #: view:crm.lead:0 msgid "í" -msgstr "" +msgstr "?!?í" #. module: crm #: view:crm.phonecall:0 @@ -1155,28 +1221,40 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte novou příletžitost.\n" +"

\n" +" Systém vám pomůže udržovat přehled o celém prodejním kanálu.\n" +" Můžete sledovat potenciální obchody a tím lépe předvídat budoucí " +"příjmy.\n" +"

\n" +" Budete schopni plánovat schůzky a telefonní hovory na základě\n" +" příležitostí, konvertovat je na nabídky, přidávat dokumenty,\n" +" sledovat diskuze, ale i mnohem více.\n" +"

\n" +" " #. module: crm #: field:crm.segmentation,partner_id:0 msgid "Max Partner ID processed" -msgstr "" +msgstr "Zpracováno maximální ID kontaktu" #. module: crm #: help:crm.case.stage,on_change:0 msgid "" "Setting this stage will change the probability automatically on the " "opportunity." -msgstr "" +msgstr "Nastavení této fáze změní automaticky pravděpodobnost příležitosti." #. module: crm #: view:crm.lead:0 msgid "oe_kanban_text_red" -msgstr "" +msgstr "oe_kanban_text_red" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act msgid "Payment Modes" -msgstr "" +msgstr "Platební režimy" #. module: crm #: field:crm.lead.report,opening_date:0 @@ -1192,12 +1270,12 @@ msgstr "Trvání v minutách" #. module: crm #: field:crm.case.channel,name:0 msgid "Channel Name" -msgstr "" +msgstr "Název kanálu" #. module: crm #: help:crm.lead.report,deadline_day:0 msgid "Expected closing day" -msgstr "" +msgstr "Očekávaný den uzavření" #. module: crm #: help:crm.case.section,active:0 @@ -1205,6 +1283,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the sales team " "without removing it." msgstr "" +"Je-li uvedeno 'správně', umožní vám to skrýt obchodní tým bez jeho " +"odstranění." #. module: crm #: help:crm.case.stage,case_default:0 @@ -1212,6 +1292,8 @@ msgid "" "If you check this field, this stage will be proposed by default on each " "sales team. It will not assign this stage to existing teams." msgstr "" +"Zaškrtnete-li toto pole, bude tato fáze navrhována jako výchozí pro všechny " +"obchodní týmy. neprovede se to u stávajících týmů." #. module: crm #: help:crm.case.stage,type:0 @@ -1219,12 +1301,14 @@ msgid "" "This field is used to distinguish stages related to Leads from stages " "related to Opportunities, or to specify stages available for both types." msgstr "" +"Toto pole se používá k odlišení fází příslušejících k zájemcům od fází " +"patřících k příležitostem. Můžete také označit fáze, které patří k oběma." #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_create #: model:mail.message.subtype,name:crm.mt_salesteam_lead msgid "Lead Created" -msgstr "" +msgstr "Nový zájemce" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1232,16 +1316,18 @@ msgid "" "Check if you want to use this tab as part of the segmentation rule. If not " "checked, the criteria beneath will be ignored" msgstr "" +"Označte, chcete-li používat tuto záložku jako součást pravidla pro " +"segmentaci. Nebude-li označeno, nebudou níže uvedené kritéria použita." #. module: crm #: field:crm.segmentation,state:0 msgid "Execution Status" -msgstr "Stav vykonání" +msgstr "Stav provedení" #. module: crm #: view:crm.opportunity2phonecall:0 msgid "Log call" -msgstr "" +msgstr "Záznam o hovoru" #. module: crm #: field:crm.lead,day_close:0 @@ -1258,7 +1344,7 @@ msgstr "neznámé" #: field:crm.lead,message_is_follower:0 #: field:crm.phonecall,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je odběratel" #. module: crm #: field:crm.opportunity2phonecall,date:0 @@ -1271,7 +1357,7 @@ msgstr "Datum" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_4 msgid "Online Support" -msgstr "" +msgstr "Online podpora" #. module: crm #: view:crm.lead.report:0 @@ -1282,7 +1368,7 @@ msgstr "Rozšířené filtry..." #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in closed state" -msgstr "" +msgstr "Telefonáty ve stavu Uzavřeno" #. module: crm #: view:crm.phonecall.report:0 @@ -1297,11 +1383,14 @@ msgid "" "set to 'Done'. If the case needs to be reviewed then the Status is set to " "'Pending'." msgstr "" +"Stav je nastaven na 'návrh' při vytvoření případu. V průběhu případu je stav " +"nastaven na 'otevřeno'. Je-li případ uzavřen, stav se nastaví na 'hotovo'. " +"Je-li třeba případ prohlédnout, je nastaven stav 'čekání'." #. module: crm #: model:crm.case.section,name:crm.crm_case_section_1 msgid "Sales Marketing Department" -msgstr "" +msgstr "Oddělení marketingu" #. module: crm #: code:addons/crm/crm_lead.py:569 @@ -1314,6 +1403,7 @@ msgstr "" msgid "" "When sending mails, the default email address is taken from the sales team." msgstr "" +"Posíláte-li e-mail, výchozí e-mailová adresa se převezme z obchodního týmu." #. module: crm #: view:crm.phonecall:0 @@ -1321,22 +1411,24 @@ msgid "" "Phone Calls Assigned to the current user or with a team having the current " "user as team leader" msgstr "" +"Telefonáty přiřazené současnému uživateli nebo týmu, jehož je současný " +"uživatel vedoucím" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Description" -msgstr "" +msgstr "Popis segmentu" #. module: crm #: code:addons/crm/crm_lead.py:565 #, python-format msgid "Merged opportunities" -msgstr "" +msgstr "Sloučené příležitosti" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor7 msgid "Consulting" -msgstr "" +msgstr "Konzultace" #. module: crm #: field:crm.case.section,code:0 @@ -1346,7 +1438,7 @@ msgstr "Kód" #. module: crm #: view:sale.config.settings:0 msgid "Features" -msgstr "" +msgstr "Vlastnosti" #. module: crm #: field:crm.case.section,child_ids:0 @@ -1356,12 +1448,12 @@ msgstr "Podřízené týmy" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in draft and open state" -msgstr "" +msgstr "Telefonáty ve stavu přípravy nebo otevřeno" #. module: crm #: field:crm.lead2opportunity.partner.mass,user_ids:0 msgid "Salesmen" -msgstr "" +msgstr "Obchodníci" #. module: crm #: view:crm.lead:0 @@ -1381,29 +1473,29 @@ msgstr "Zrušit" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor4 msgid "Information" -msgstr "" +msgstr "Informace" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in pending state" -msgstr "" +msgstr "Zájemci/Příležitosti ve stavu čekání" #. module: crm #: view:crm.phonecall:0 msgid "To Do" -msgstr "" +msgstr "provést" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_lost msgid "Opportunity lost" -msgstr "" +msgstr "Příležitost zracena" #. module: crm #: field:crm.lead2opportunity.partner,action:0 #: field:crm.lead2opportunity.partner.mass,action:0 #: field:crm.partner.binding,action:0 msgid "Related Customer" -msgstr "" +msgstr "Příslušný zákazník" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor8 @@ -1414,18 +1506,18 @@ msgstr "Jiné" #: field:crm.phonecall,opportunity_id:0 #: model:ir.model,name:crm.model_crm_lead msgid "Lead/Opportunity" -msgstr "" +msgstr "Zájemce/příležitost" #. module: crm #: model:ir.actions.act_window,name:crm.action_merge_opportunities #: model:ir.actions.act_window,name:crm.merge_opportunity_act msgid "Merge leads/opportunities" -msgstr "" +msgstr "Sloučit zájemce/příležitosti" #. module: crm #: help:crm.case.stage,sequence:0 msgid "Used to order stages. Lower is better." -msgstr "" +msgstr "Používá se pro stav objednávky. Nižší je lepší." #. module: crm #: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action @@ -1435,7 +1527,7 @@ msgstr "Kategorie hovorů" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in open state" -msgstr "" +msgstr "Zájemci/Příležitosti ve stavu otevřeno" #. module: crm #: view:crm.lead:0 @@ -1445,7 +1537,7 @@ msgstr "" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage msgid "Stage Changed" -msgstr "" +msgstr "Změna fáze" #. module: crm #: field:crm.case.stage,section_ids:0 @@ -1455,18 +1547,18 @@ msgstr "Sekce" #. module: crm #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive Sales team." -msgstr "Chyba ! Nemůžete vytvořit rekurzivní prodejní týmy." +msgstr "Chyba ! Nemůžete vytvořit rekurzivní obchodní týmy." #. module: crm #: selection:crm.opportunity2phonecall,action:0 #: selection:crm.phonecall2phonecall,action:0 msgid "Log a call" -msgstr "" +msgstr "Zaznamenat hovor" #. module: crm #: selection:crm.segmentation.line,expr_name:0 msgid "Sale Amount" -msgstr "Prodejní množství" +msgstr "Částka prodeje" #. module: crm #: view:crm.phonecall.report:0 @@ -1483,40 +1575,44 @@ msgid "" "mainly used by the sales manager in order to do the periodic review with the " "teams of the sales pipeline." msgstr "" +"Analýza příležitostí poskytuje okamžitý přístup ke svým příležitostem s " +"informacemi jako jsou třeba očekávané příjmy, plánované náklady, zmeškané " +"lhůty nebo počet interakcí na příležitost. Tuto sestavu používá především " +"obchodní manažer pro pravidelné kontroly týmů." #. module: crm #: field:crm.case.categ,name:0 #: field:crm.payment.mode,name:0 #: field:crm.segmentation,name:0 msgid "Name" -msgstr "Jméno" +msgstr "Název" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities that are assigned to me" -msgstr "" +msgstr "Zájemci/Příležitosti přiřazené mně" #. module: crm #: view:crm.lead.report:0 msgid "My Case(s)" -msgstr "Moje případy" +msgstr "Mé případy" #. module: crm #: help:crm.case.section,message_ids:0 #: help:crm.lead,message_ids:0 #: help:crm.phonecall,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Zprávy a historie komunikace" #. module: crm #: view:crm.lead:0 msgid "Show Countries" -msgstr "" +msgstr "Zobrazit země" #. module: crm #: view:crm.phonecall.report:0 msgid "Date of call" -msgstr "" +msgstr "datum telefonátu" #. module: crm #: view:crm.lead:0 @@ -1535,22 +1631,22 @@ msgstr "Vysoká" #. module: crm #: model:process.node,note:crm.process_node_partner0 msgid "Convert to prospect to business partner" -msgstr "" +msgstr "?!?Convert to prospect to business partner" #. module: crm #: model:ir.model,name:crm.model_crm_payment_mode msgid "CRM Payment Mode" -msgstr "" +msgstr "Platební režim" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in done state" -msgstr "" +msgstr "Zájemci/Příležitosti ve stavu hotovo" #. module: crm #: field:crm.lead.report,delay_close:0 msgid "Delay to Close" -msgstr "Prodleva do ukončení" +msgstr "Doba do ukončení" #. module: crm #: view:crm.lead:0 @@ -1568,7 +1664,7 @@ msgstr "" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge Leads/Opportunities" -msgstr "" +msgstr "Sloučit zájemce/příležitosti" #. module: crm #: field:crm.case.section,parent_id:0 @@ -1580,7 +1676,7 @@ msgstr "Nadřazený tým" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Do not link to a customer" -msgstr "" +msgstr "Nepřipojovat k zákazníkovi" #. module: crm #: field:crm.lead,date_action:0 @@ -1594,11 +1690,14 @@ msgid "" "stage. For example, if a stage is related to the status 'Close', when your " "document reaches this stage, it is automatically closed." msgstr "" +"Stav dokumentu se bude automaticky měnit v závislosti na vybrané fázi. " +"Například je-li fáze přiřazena ke stavu 'uzavřeno', bude dokument " +"automaticky uzavřen, když dosáhne této fáze." #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Assign opportunities to" -msgstr "" +msgstr "Přidělit příležitost (komu)" #. module: crm #: model:crm.case.categ,name:crm.categ_phone1 @@ -1608,7 +1707,7 @@ msgstr "Příchozí" #. module: crm #: view:crm.phonecall.report:0 msgid "Month of call" -msgstr "" +msgstr "měsíc" #. module: crm #: view:crm.lead:0 @@ -1619,12 +1718,12 @@ msgstr "" #: code:addons/crm/crm_phonecall.py:290 #, python-format msgid "Partner has been created." -msgstr "" +msgstr "Kontakt byl vytvořen." #. module: crm #: field:sale.config.settings,module_crm_claim:0 msgid "Manage Customer Claims" -msgstr "" +msgstr "Spravovat reklamace zákazníků" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_lead @@ -1633,11 +1732,14 @@ msgid "" "the treatment delays or number of leads per state. You can sort out your " "leads analysis by different groups to get accurate grained analysis." msgstr "" +"Analýza zájemců umožňuje kontrolu různých souvisejících informací, jako jsou " +"opožděná řešení nebo počty zájemců podle stavů. Můžete třídit vaše analýzy " +"podle různých skupin, abyste získali přesné detailní rozbory." #. module: crm #: model:crm.case.categ,name:crm.categ_oppor3 msgid "Services" -msgstr "" +msgstr "Služby" #. module: crm #: selection:crm.lead,priority:0 @@ -1650,7 +1752,7 @@ msgstr "Nejvyšší" #. module: crm #: help:crm.lead.report,creation_year:0 msgid "Creation year" -msgstr "" +msgstr "Rok vytvoření" #. module: crm #: view:crm.case.section:0 @@ -1676,7 +1778,7 @@ msgstr "Odpovědět-komu" #. module: crm #: view:crm.lead:0 msgid "Display" -msgstr "" +msgstr "Zobrazit" #. module: crm #: view:board.board:0 @@ -1686,7 +1788,7 @@ msgstr "Příležitosti podle fáze" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 msgid "Prospect is converting to business partner" -msgstr "" +msgstr "?!?Zájemce je převeden na partnera" #. module: crm #: view:crm.case.channel:0 @@ -1694,7 +1796,7 @@ msgstr "" #: model:ir.model,name:crm.model_crm_case_channel #: model:ir.ui.menu,name:crm.menu_crm_case_channel msgid "Channels" -msgstr "" +msgstr "Kanály" #. module: crm #: view:crm.phonecall:0 @@ -1702,7 +1804,7 @@ msgstr "" #: view:crm.phonecall.report:0 #: selection:crm.phonecall.report,state:0 msgid "Held" -msgstr "Drženo" +msgstr "Voláno" #. module: crm #: view:crm.lead:0 @@ -1712,12 +1814,12 @@ msgstr "Další informace" #. module: crm #: view:crm.lead:0 msgid "Fund Raising" -msgstr "" +msgstr "Získávání financí" #. module: crm #: view:crm.lead:0 msgid "Edit..." -msgstr "" +msgstr "Upravit..." #. module: crm #: model:crm.case.resource.type,name:crm.type_lead5 @@ -1727,7 +1829,7 @@ msgstr "Google Adwords" #. module: crm #: view:crm.case.section:0 msgid "Select Stages for this Sales Team" -msgstr "" +msgstr "Vybrat fáze pro obchodní tým" #. module: crm #: view:crm.lead:0 @@ -1743,56 +1845,57 @@ msgstr "Priorita" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner msgid "Lead To Opportunity Partner" -msgstr "" +msgstr "?!?Zájemce na kontakt příležitosti" #. module: crm #: help:crm.lead,partner_id:0 msgid "Linked partner (optional). Usually created when converting the lead." msgstr "" +"Propojený kontakt (volitelné). Obvykle se vytváří při převádění zájemce." #. module: crm #: field:crm.lead,payment_mode:0 #: view:crm.payment.mode:0 #: model:ir.actions.act_window,name:crm.action_crm_payment_mode msgid "Payment Mode" -msgstr "" +msgstr "Platební režim" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner_mass msgid "Mass Lead To Opportunity Partner" -msgstr "" +msgstr "?!?Hromadné převedení zájemce na příležitost" #. module: crm #: view:sale.config.settings:0 msgid "On Mail Server" -msgstr "" +msgstr "Na e-mailovém serveru" #. module: crm #: model:ir.actions.act_window,name:crm.open_board_statistical_dash #: model:ir.ui.menu,name:crm.menu_board_statistics_dash msgid "CRM" -msgstr "" +msgstr "CRM" #. module: crm #: model:ir.actions.act_window,name:crm.crm_segmentation_tree-act #: model:ir.ui.menu,name:crm.menu_crm_segmentation-act msgid "Contacts Segmentation" -msgstr "" +msgstr "Segmentace kontaktů" #. module: crm #: model:process.node,note:crm.process_node_meeting0 msgid "Schedule a normal or phone meeting" -msgstr "" +msgstr "Plánování schůzek a telefonátů" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead1 msgid "Telesales" -msgstr "" +msgstr "Telesales" #. module: crm #: model:ir.model,name:crm.model_crm_segmentation_line msgid "Segmentation line" -msgstr "" +msgstr "Položka segmentu" #. module: crm #: view:crm.opportunity2phonecall:0 @@ -1814,7 +1917,7 @@ msgstr "Odkazující" #: help:crm.lead,type:0 #: help:crm.lead.report,type:0 msgid "Type is used to separate Leads and Opportunities" -msgstr "" +msgstr "Druh používaný pro odlišení zájemců a příležitostí" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -1826,29 +1929,29 @@ msgstr "Červenec" #. module: crm #: view:crm.lead:0 msgid "Lead / Customer" -msgstr "" +msgstr "Zájemce / Zákazník" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_2 msgid "Support Department" -msgstr "" +msgstr "Oddělení podpory" #. module: crm #: view:crm.lead.report:0 msgid "Show only lead" -msgstr "" +msgstr "Zobrazit pouze zájemce" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act #: model:ir.model,name:crm.model_crm_case_section #: model:ir.ui.menu,name:crm.menu_crm_case_section_act msgid "Sales Teams" -msgstr "Prodejní tým" +msgstr "Obchodní tým" #. module: crm #: field:crm.case.stage,case_default:0 msgid "Default to New Sales Team" -msgstr "" +msgstr "Výchozí pro nový obchodní tým" #. module: crm #: view:crm.lead:0 @@ -1858,18 +1961,18 @@ msgstr "Tým" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in New state" -msgstr "" +msgstr "Zájemci/Příležitosti ve stavu vytvořeno" #. module: crm #: selection:crm.phonecall,state:0 #: view:crm.phonecall.report:0 msgid "Not Held" -msgstr "Nedrženo" +msgstr "Nevoláno" #. module: crm #: field:crm.lead.report,probability:0 msgid "Probability" -msgstr "qPravděpodobnost" +msgstr "Pravděpodobnost" #. module: crm #: view:crm.lead.report:0 @@ -1884,41 +1987,41 @@ msgstr "Měsíc" #: model:ir.ui.menu,name:crm.menu_crm_leads #: model:process.node,name:crm.process_node_leads0 msgid "Leads" -msgstr "" +msgstr "Zájemci" #. module: crm #: code:addons/crm/crm_lead.py:563 #, python-format msgid "Merged leads" -msgstr "" +msgstr "Sloučení zájemci" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 msgid "Design" -msgstr "" +msgstr "Design" #. module: crm #: selection:crm.lead2opportunity.partner,name:0 #: selection:crm.lead2opportunity.partner.mass,name:0 msgid "Merge with existing opportunities" -msgstr "" +msgstr "Sloučit s existující příležitostí" #. module: crm #: view:crm.phonecall.report:0 #: selection:crm.phonecall.report,state:0 msgid "Todo" -msgstr "K udělání" +msgstr "Provést" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_convert_to_opportunity #: model:mail.message.subtype,name:crm.mt_salesteam_lead_opportunity msgid "Lead to Opportunity" -msgstr "" +msgstr "Zájemce na příležitost" #. module: crm #: field:crm.lead,user_email:0 msgid "User Email" -msgstr "" +msgstr "uživatelský e-mail" #. module: crm #: help:crm.lead,partner_name:0 @@ -1926,6 +2029,8 @@ msgid "" "The name of the future partner company that will be created while converting " "the lead into opportunity" msgstr "" +"Budoucí název společnosti v kontaktech, který se nastaví při převedení " +"zájemce na příležitost" #. module: crm #: field:crm.opportunity2phonecall,note:0 @@ -1939,7 +2044,7 @@ msgstr "Poznámka" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Low" -msgstr "Nízký" +msgstr "Nízká" #. module: crm #: selection:crm.case.stage,state:0 @@ -1954,12 +2059,12 @@ msgstr "Uzavřeno" #. module: crm #: view:crm.lead:0 msgid "Open Opportunities" -msgstr "" +msgstr "Otevřít příležitost" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead2 msgid "Email Campaign - Services" -msgstr "" +msgstr "E-mailová kampaň - Služba" #. module: crm #: selection:crm.case.stage,state:0 @@ -1978,7 +2083,7 @@ msgstr "" #. module: crm #: model:process.transition,name:crm.process_transition_leadopportunity0 msgid "Prospect Opportunity" -msgstr "" +msgstr "?!?Očekávaná příležitost" #. module: crm #: field:crm.lead,email_cc:0 @@ -1997,7 +2102,7 @@ msgstr "Telefonní hovory" #. module: crm #: view:crm.case.stage:0 msgid "Stage Search" -msgstr "" +msgstr "Hledání fáze" #. module: crm #: help:crm.lead.report,delay_open:0 @@ -2012,7 +2117,7 @@ msgstr "Počet dní do otevření případu" #: field:crm.phonecall,partner_phone:0 #: field:crm.phonecall2phonecall,phone:0 msgid "Phone" -msgstr "Telefón" +msgstr "Telefon" #. module: crm #: field:crm.case.channel,active:0 @@ -2025,29 +2130,29 @@ msgstr "Aktivní" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Mandatory Expression" -msgstr "Povinný výraz" +msgstr "Povinné pravidlo" #. module: crm #: selection:crm.lead2opportunity.partner,action:0 #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Create a new customer" -msgstr "" +msgstr "Vytvořit nového zákazníka" #. module: crm #: field:crm.lead.report,deadline_day:0 msgid "Exp. Closing Day" -msgstr "" +msgstr "Vypršel den uzavření" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor2 msgid "Software" -msgstr "" +msgstr "Software" #. module: crm #: field:crm.case.section,change_responsible:0 msgid "Reassign Escalated" -msgstr "" +msgstr "?!?Přeřazení povýšeno" #. module: crm #: view:crm.lead.report:0 @@ -2077,38 +2182,38 @@ msgstr "Město" #. module: crm #: selection:crm.case.stage,type:0 msgid "Both" -msgstr "" +msgstr "Zájemce/Příležitost" #. module: crm #: view:crm.phonecall:0 msgid "Call Done" -msgstr "" +msgstr "Hovor ukončen" #. module: crm #: view:crm.phonecall:0 #: field:crm.phonecall,user_id:0 msgid "Responsible" -msgstr "Odopovědné" +msgstr "Zodpovídá" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_3 msgid "Direct Marketing" -msgstr "" +msgstr "Direct marketing" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor1 msgid "Product" -msgstr "" +msgstr "Produkt" #. module: crm #: field:crm.lead.report,creation_year:0 msgid "Creation Year" -msgstr "" +msgstr "Rok vytvoření" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Conversion Options" -msgstr "" +msgstr "Možnosti převedení" #. module: crm #: view:crm.case.section:0 @@ -2116,11 +2221,13 @@ msgid "" "Follow this salesteam to automatically track the events associated to users " "of this team." msgstr "" +"Odebírejte zprávy obchodního týmu. Automaticky budete mít přehled o " +"událostech spojených s členy tohoto týmu." #. module: crm #: view:crm.lead:0 msgid "Address" -msgstr "" +msgstr "Adresa" #. module: crm #: view:crm.lead:0 @@ -2133,24 +2240,26 @@ msgid "" "The email address associated with this team. New emails received will " "automatically create new leads assigned to the team." msgstr "" +"E-mailová adresa náležející tomuto týmu. Nové přijaté e-maily budou " +"automaticky vytvářet nové zájemce přiřazené týmu." #. module: crm #: view:crm.lead:0 msgid "Search Leads" -msgstr "" +msgstr "Hledat zájemce" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,delay_open:0 msgid "Delay to open" -msgstr "Prodleva do otevření" +msgstr "Doba do otevření" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0 #: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound msgid "Scheduled Calls" -msgstr "" +msgstr "Plánované hovory" #. module: crm #: field:crm.lead,id:0 @@ -2163,6 +2272,8 @@ msgid "" "From which campaign (seminar, marketing campaign, mass mailing, ...) did " "this contact come from?" msgstr "" +"Ze kterých kampaní (seminář, marketingová kampaň, hromadný e-mailing, …) " +"pochází tento kontakt?" #. module: crm #: model:ir.model,name:crm.model_calendar_attendee @@ -2172,7 +2283,7 @@ msgstr "Informace účastníka" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Test" -msgstr "" +msgstr "Vyhodnocovací pravidlo" #. module: crm #: view:crm.segmentation:0 @@ -2184,13 +2295,13 @@ msgstr "Pokračovat v postupu" #: selection:crm.lead2opportunity.partner.mass,name:0 #: model:ir.actions.act_window,name:crm.action_crm_lead2opportunity_partner msgid "Convert to opportunity" -msgstr "" +msgstr "Konverze na příležitost" #. module: crm #: field:crm.opportunity2phonecall,user_id:0 #: field:crm.phonecall2phonecall,user_id:0 msgid "Assign To" -msgstr "Přiřadit k" +msgstr "Má přiděleno" #. module: crm #: field:crm.lead,date_action_last:0 @@ -2219,6 +2330,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím naplánujete telefonní hovor. \n" +"

\n" +" Systém umožňuje nastavit seznam telefonátů, které mají členové " +"týmu \n" +" provést a na základě jejich záznamů pak sledovat výsledky.\n" +"

\n" +" Můžete také použít funkce pro import nového seznamu zájemců\n" +" pro jejich další zpracování.\n" +"

\n" +" " #. module: crm #: help:crm.case.stage,fold:0 @@ -2226,27 +2348,29 @@ 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 "" +"Tato fáze se nebude vůbec zobrazovat (třeba ve stavovém řádku nebo v kanban " +"zobrazení, pokud v této fázi nebudou žádné záznamy." #. module: crm #: field:crm.lead.report,nbr:0 #: field:crm.phonecall.report,nbr:0 msgid "# of Cases" -msgstr "# z případů" +msgstr "# případů" #. module: crm #: help:crm.phonecall,section_id:0 msgid "Sales team to which Case belongs to." -msgstr "Prodejní tým, ke kterému patří případ." +msgstr "Obchodní tým, ke kterému patří případ." #. module: crm #: model:crm.case.resource.type,name:crm.type_lead6 msgid "Banner Ads" -msgstr "" +msgstr "Banner Ads" #. module: crm #: field:crm.merge.opportunity,opportunity_ids:0 msgid "Leads/Opportunities" -msgstr "" +msgstr "Zájemci/Příležitosti" #. module: crm #: field:crm.lead,fax:0 @@ -2266,37 +2390,37 @@ msgstr "Společnost" #. module: crm #: selection:crm.segmentation,state:0 msgid "Running" -msgstr "Běžící" +msgstr "Probíhá" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity msgid "Lead converted into an opportunity" -msgstr "" +msgstr "Zájemce převeden na příležitost" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won msgid "Opportunity won" -msgstr "" +msgstr "Příležitost vyhrána" #. module: crm #: field:crm.case.categ,object_id:0 msgid "Object Name" -msgstr "Jméno objektu" +msgstr "Název objektu" #. module: crm #: view:crm.phonecall:0 msgid "Phone Calls Assigned to Me or My Team(s)" -msgstr "" +msgstr "Telefonáty přiřazené mně nebo mým týmům" #. module: crm #: view:crm.lead:0 msgid "Reset" -msgstr "" +msgstr "Obnovit fázi" #. module: crm #: view:sale.config.settings:0 msgid "After-Sale Services" -msgstr "" +msgstr "Poprodejní služby" #. module: crm #: field:crm.case.section,message_ids:0 @@ -2308,13 +2432,13 @@ msgstr "Zprávy" #. module: crm #: help:crm.lead,channel_id:0 msgid "Communication channel (mail, direct, phone, ...)" -msgstr "" +msgstr "Komunikační kanál (e-mail," #. module: crm #: field:crm.opportunity2phonecall,name:0 #: field:crm.phonecall2phonecall,name:0 msgid "Call summary" -msgstr "Souhrn hovoru" +msgstr "Předmět" #. module: crm #: selection:crm.case.stage,state:0 @@ -2344,31 +2468,34 @@ msgid "" "several criteria and drill down the information, by adding more groups in " "the report." msgstr "" +"Z této sestavy můžete vyhodnotit výkon vašeho obchodního týmu na základě " +"jejich telefonátů. Můžete seskupovat nebo filtrovat informace podle několika " +"kritérií, procházet informace a přidávat další skupiny do sestavy." #. module: crm #: field:crm.case.stage,fold:0 msgid "Fold by Default" -msgstr "" +msgstr "Skrývat" #. module: crm #: field:crm.case.stage,state:0 msgid "Related Status" -msgstr "" +msgstr "Příslušný stav" #. module: crm #: field:crm.phonecall,name:0 msgid "Call Summary" -msgstr "Souhrn hovoru" +msgstr "Předmět" #. module: crm #: field:crm.lead,color:0 msgid "Color Index" -msgstr "" +msgstr "Barevné značení" #. module: crm #: field:crm.segmentation.line,expr_operator:0 msgid "Operator" -msgstr "" +msgstr "Operátor" #. module: crm #: view:crm.lead:0 @@ -2379,7 +2506,7 @@ msgstr "Plánovat/Zaznamenat hovor" #. module: crm #: view:crm.merge.opportunity:0 msgid "Select Leads/Opportunities" -msgstr "" +msgstr "Vybrat zájemce/příležitosti" #. module: crm #: selection:crm.phonecall,state:0 @@ -2389,12 +2516,12 @@ msgstr "Potvrzeno" #. module: crm #: model:ir.model,name:crm.model_crm_partner_binding msgid "Handle partner binding or generation in CRM wizards." -msgstr "" +msgstr "?!?Manipulace s vazbami kontaktů nebo vytváření v CRM průvodcích." #. module: crm #: model:ir.actions.act_window,name:crm.act_oppor_stage_user msgid "Planned Revenue By User and Stage" -msgstr "" +msgstr "Plánovaný zisk na uživatele a stádium" #. module: crm #: view:crm.phonecall:0 @@ -2404,7 +2531,7 @@ msgstr "Potvrdit" #. module: crm #: view:crm.lead:0 msgid "Unread messages" -msgstr "" +msgstr "Nepřečtené zprávy" #. module: crm #: field:crm.phonecall.report,section_id:0 @@ -2414,14 +2541,14 @@ msgstr "Sekce" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Optional Expression" -msgstr "Volitelný výraz" +msgstr "Nepovinné pravidlo" #. module: crm #: field:crm.case.section,message_follower_ids:0 #: field:crm.lead,message_follower_ids:0 #: field:crm.phonecall,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Odběratelé" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all @@ -2440,11 +2567,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte nového obecného zájemce.\n" +"

\n" +" Používejte zájemce, preferujete-li tento krok ještě před " +"založením\n" +" příležitosti nebo zákazníka. Může to být třeba na vizitka, " +"kterou jste\n" +" obdrželi, kontaktní formulář na webu, nebo jinak projevený " +"zájem\n" +" o vaše produkty.\n" +"

\n" +" Jakmile zájemce jednou zpracujete (kvalifikujete), může být " +"převeden\n" +" na příležitost a/nebo na nového zákazníka do vašeho adresáře.\n" +"

\n" +" " #. module: crm #: field:sale.config.settings,fetchmail_lead:0 msgid "Create leads from incoming mails" -msgstr "" +msgstr "Vytvářet zájemce z příchozích e-mailů" #. module: crm #: view:crm.lead:0 @@ -2472,7 +2615,7 @@ msgstr "Plánovaný hovor" #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "My Sales Team(s)" -msgstr "" +msgstr "Mé obchodní týmy" #. module: crm #: help:crm.segmentation,exclusif:0 @@ -2482,16 +2625,20 @@ msgid "" "If checked, remove the category from partners that doesn't match " "segmentation criterions" msgstr "" +"Označte, má-li být kategorie přiřazena pouze kontaktům odpovídajícím " +"určitému segmentu. \n" +"Bude-li označeno, odstraní se kategorie z těch kontaktů, které kritériím " +"neodpovídají." #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 msgid "Creating business opportunities from Leads" -msgstr "" +msgstr "Vytváření obchodních příležitostí ze zájemců" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead3 msgid "Email Campaign - Products" -msgstr "" +msgstr "E-mailová kampaň - Produktu" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 @@ -2510,16 +2657,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte zápis o telefoním hovoru. \n" +"

\n" +" Systém umožňuje průběžně zaznamenávat uskutečněné hovory\n" +" a sledovat historii komunikace se zákazníkem. Také umožňuje\n" +" informovat jiného člena týmu.\n" +"

\n" +" Můžete také naplánovat další navazující hovor nebo schůzku\n" +" a nebo vytvořit příležitost.\n" +"

\n" +" " #. module: crm #: model:process.node,note:crm.process_node_leads0 msgid "Very first contact with new prospect" -msgstr "" +msgstr "Úplně první kontakt s novým zájemcem" #. module: crm #: view:res.partner:0 msgid "Calls" -msgstr "" +msgstr "Telefonáty" #. module: crm #: view:crm.lead:0 @@ -2529,23 +2687,23 @@ msgstr "" #. module: crm #: field:crm.case.stage,on_change:0 msgid "Change Probability Automatically" -msgstr "" +msgstr "Nastavit pravděpodobnost automaticky" #. module: crm #: view:crm.phonecall.report:0 msgid "My Phone Calls" -msgstr "" +msgstr "Mé hovory" #. module: crm #: model:crm.case.stage,name:crm.stage_lead3 msgid "Qualification" -msgstr "" +msgstr "Odhad" #. module: crm #: field:crm.lead2opportunity.partner,name:0 #: field:crm.lead2opportunity.partner.mass,name:0 msgid "Conversion Action" -msgstr "" +msgstr "Akce převedení" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_categ_action @@ -2561,6 +2719,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte novou značku.\n" +"

\n" +" Vytvářejte specifické značky podle činností vaší " +"společnosti,\n" +" abyste mohli lépe klasifikovat a analyzovat vaše zájemce a " +"příležitosti.\n" +" Tyto značky by měly odrážet strukturu vašich produktů\n" +" nebo různé způsoby vašich obchodních aktivit.\n" +"

\n" +" " #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -2573,12 +2742,12 @@ msgstr "Srpen" #: model:mail.message.subtype,name:crm.mt_lead_lost #: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost msgid "Opportunity Lost" -msgstr "" +msgstr "Ztracená příležitost" #. module: crm #: field:crm.lead.report,deadline_month:0 msgid "Exp. Closing Month" -msgstr "" +msgstr "Vypršel měsíc uzavření" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -2590,7 +2759,7 @@ msgstr "Prosinec" #. module: crm #: view:crm.phonecall:0 msgid "Date of Call" -msgstr "" +msgstr "Datum telefonátu" #. module: crm #: view:crm.lead:0 @@ -2606,7 +2775,7 @@ msgstr "Příležitosti podle hovorů" #. module: crm #: view:crm.segmentation:0 msgid "Sales Purchase" -msgstr "Prodej nákup" +msgstr "Prodej/Nákup" #. module: crm #: view:crm.lead:0 @@ -2616,12 +2785,12 @@ msgstr "Naplánovat setkání" #. module: crm #: field:crm.lead.report,deadline_year:0 msgid "Ex. Closing Year" -msgstr "" +msgstr "Vypršel rok uzavření" #. module: crm #: model:ir.actions.client,name:crm.action_client_crm_menu msgid "Open Sale Menu" -msgstr "" +msgstr "Otevřít menu Prodej" #. module: crm #: field:crm.lead,date_open:0 @@ -2639,17 +2808,17 @@ msgstr "Členové týmu" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Schedule/Log a Call" -msgstr "" +msgstr "Plánovat/Zapsat hovor" #. module: crm #: field:crm.lead,planned_cost:0 msgid "Planned Costs" -msgstr "" +msgstr "Plánované náklady" #. module: crm #: help:crm.lead,date_deadline:0 msgid "Estimate of the date on which the opportunity will be won." -msgstr "" +msgstr "Odhad data, kdy bude příležitost získána (vyhrána)." #. module: crm #: help:crm.lead,email_cc:0 @@ -2666,13 +2835,13 @@ msgstr "" #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_incoming0 #: model:ir.ui.menu,name:crm.menu_crm_case_phone_inbound msgid "Logged Calls" -msgstr "" +msgstr "Záznamy hovorů" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_won #: model:mail.message.subtype,name:crm.mt_salesteam_lead_won msgid "Opportunity Won" -msgstr "" +msgstr "Vyhraná příležitost" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree @@ -2685,7 +2854,7 @@ msgstr "Případy podle obchodních týmů" #: model:ir.model,name:crm.model_crm_meeting #: model:process.node,name:crm.process_node_meeting0 msgid "Meeting" -msgstr "Setkání" +msgstr "Schůzka" #. module: crm #: model:ir.model,name:crm.model_crm_case_categ @@ -2713,12 +2882,12 @@ msgstr "Ulice 2" #. module: crm #: field:sale.config.settings,module_crm_helpdesk:0 msgid "Manage Helpdesk and Support" -msgstr "" +msgstr "Spravovat zákaznickou podporu" #. module: crm #: field:crm.lead.report,delay_open:0 msgid "Delay to Open" -msgstr "Prodleva do otevření" +msgstr "Doba do otevření" #. module: crm #: field:crm.lead.report,user_id:0 @@ -2754,12 +2923,12 @@ msgstr "Smlouva" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead4 msgid "Twitter Ads" -msgstr "" +msgstr "Twitter Ads" #. module: crm #: field:crm.lead.report,creation_day:0 msgid "Creation Day" -msgstr "" +msgstr "Den vytvoření" #. module: crm #: view:crm.lead.report:0 @@ -2769,7 +2938,7 @@ msgstr "Plánované výnosy" #. module: crm #: help:crm.lead.report,deadline_year:0 msgid "Expected closing year" -msgstr "" +msgstr "Očekávaný rok uzavření" #. module: crm #: view:crm.lead:0 @@ -2796,7 +2965,7 @@ msgstr "" #: selection:crm.opportunity2phonecall,action:0 #: selection:crm.phonecall2phonecall,action:0 msgid "Schedule a call" -msgstr "" +msgstr "Naplánovat hovor" #. module: crm #: view:crm.lead:0 @@ -2806,12 +2975,13 @@ msgstr "Kategorizace" #. module: crm #: view:crm.phonecall2phonecall:0 msgid "Log Call" -msgstr "" +msgstr "Záznam o hovoru" #. module: crm #: help:sale.config.settings,group_fund_raising:0 msgid "Allows you to trace and manage your activities for fund raising." msgstr "" +"Umožňuje sledovat a řídit aktivity pro získání finančních prostředků." #. module: crm #: field:crm.meeting,phonecall_id:0 @@ -2822,12 +2992,12 @@ msgstr "Telefonní hovor" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls that are assigned to one of the sale teams I manage" -msgstr "" +msgstr "Telefonáty přiřazené někomu z prodejních týmů, které řídím" #. module: crm #: view:crm.lead:0 msgid "at" -msgstr "" +msgstr "na" #. module: crm #: model:crm.case.stage,name:crm.stage_lead1 @@ -2836,7 +3006,7 @@ msgstr "" #: selection:crm.lead,state:0 #: view:crm.lead.report:0 msgid "New" -msgstr "Nový" +msgstr "Vytvoření" #. module: crm #: field:crm.lead,function:0 @@ -2892,21 +3062,34 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte nový kanál.\n" +"

\n" +" Používejte kanály pro sledování zdrojů vašich zájemců a " +"příležitostí.\n" +" Kanály se většinou používají v sestavách pro analýzu vlivu " +"marketingových\n" +" aktivit na obchodní výsledky.\n" +"

\n" +" Některé příklady kanálů: firemní web, telefonická kampaň,\n" +" prodejce, apod.\n" +"

\n" +" " #. module: crm #: view:crm.lead:0 msgid "Internal Notes" -msgstr "" +msgstr "Interní poznámky" #. module: crm #: view:crm.lead:0 msgid "New Opportunities" -msgstr "" +msgstr "Nové příležitosti" #. module: crm #: field:crm.segmentation.line,operator:0 msgid "Mandatory / Optional" -msgstr "Povinné / Volitelné" +msgstr "Povinné/Nepovinné" #. module: crm #: field:crm.lead,street:0 @@ -2921,7 +3104,7 @@ msgstr "Odkazováno podle" #. module: crm #: view:crm.phonecall:0 msgid "Reset to Todo" -msgstr "" +msgstr "Obnovit na 'provést'" #. module: crm #: field:crm.case.section,working_hours:0 @@ -2954,13 +3137,13 @@ msgstr "Naplánovat setkání" #: model:crm.case.stage,name:crm.stage_lead8 #: view:crm.lead:0 msgid "Lost" -msgstr "Ztratil" +msgstr "Ztracen" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 #, python-format msgid "Closed/Cancelled leads cannot be converted into opportunities." -msgstr "" +msgstr "Uzavření nebo zrušení zájemci nemohou být převedeni na příležitosti." #. module: crm #: view:crm.lead:0 @@ -2993,12 +3176,12 @@ msgstr "Duben" #. module: crm #: field:crm.case.resource.type,name:0 msgid "Campaign Name" -msgstr "" +msgstr "Název kampaně" #. module: crm #: view:crm.segmentation:0 msgid "Profiling" -msgstr "" +msgstr "Profilace" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall_report @@ -3018,7 +3201,7 @@ msgstr "Hovor k hovoru" #. module: crm #: field:crm.case.stage,sequence:0 msgid "Sequence" -msgstr "Pořadí" +msgstr "Řazení" #. module: crm #: field:crm.segmentation.line,expr_name:0 @@ -3028,7 +3211,7 @@ msgstr "Řidící proměnná" #. module: crm #: model:crm.case.stage,name:crm.stage_lead4 msgid "Proposition" -msgstr "Návrh" +msgstr "Nabídka" #. module: crm #: view:crm.phonecall:0 @@ -3046,12 +3229,12 @@ msgstr "Rok" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead8 msgid "Newsletter" -msgstr "Zpravodaj" +msgstr "Newsletter" #. module: crm #: model:mail.message.subtype,name:crm.mt_salesteam_lead_stage msgid "Opportunity Stage Changed" -msgstr "" +msgstr "Změna fáze" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_stage_act @@ -3065,9 +3248,57 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím nastavíte novou fázi vašeho systému zájemců a " +"příležitostí.\n" +"

\n" +" Fáze dovolují obchodníkům lépe sledovat, kde se konkrétní\n" +" zájemce nebo příležitost v prodejním cyklu nachází.\n" +"

\n" +" " #~ msgid "Send Mail" #~ msgstr "Poslat poštu" #~ msgid "Exp.Closing" #~ msgstr "Oček.uzavření" + +#, python-format +#~ msgid "%s a call for the %s." +#~ msgstr "%s telefonát pro %s." + +#~ msgid "Leads that are assigned to one of the sale teams I manage, or to me" +#~ msgstr "Zájemci přiřazení někomu z obchodních týmů, které řídím, nebo mně" + +#~ msgid "Opportunity ${object.name | h})" +#~ msgstr "Příležitost ${object.name | h})" + +#~ msgid "" +#~ "Opportunities that are assigned to either me or one of the sale teams I " +#~ "manage" +#~ msgstr "" +#~ "Příležitosti, které nejsou přiřazeny ani mně ani nikomu z týmů, které řídím" + +#~ msgid "New Leads" +#~ msgstr "Noví zájemci" + +#~ msgid "Lead Description" +#~ msgstr "Popis zájemce" + +#~ msgid "Opportunities Assigned to Me or My Team(s)" +#~ msgstr "Příležitosti přiřazené mně nebo mým týmům" + +#~ msgid "Users" +#~ msgstr "Uživatelé" + +#~ msgid "Leads Assigned to Me or My Team(s)" +#~ msgstr "Zájemci přiřazení mně a mým týmům" + +#~ msgid "Unassigned Opportunities" +#~ msgstr "Nepřiřazené příležitosti" + +#~ msgid "Unassigned Leads" +#~ msgstr "Nepřiřazení zájemci" + +#~ msgid "Create date" +#~ msgstr "Datum vytvoření" diff --git a/addons/crm/i18n/da.po b/addons/crm/i18n/da.po index f67d1b79857..574505dad70 100644 --- a/addons/crm/i18n/da.po +++ b/addons/crm/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/de.po b/addons/crm/i18n/de.po index b126a294e5a..1250d8423aa 100644 --- a/addons/crm/i18n/de.po +++ b/addons/crm/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/el.po b/addons/crm/i18n/el.po index 8568e5e26a8..50032f48a9e 100644 --- a/addons/crm/i18n/el.po +++ b/addons/crm/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es.po b/addons/crm/i18n/es.po index 34b6a1f121e..31d975979c0 100644 --- a/addons/crm/i18n/es.po +++ b/addons/crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_AR.po b/addons/crm/i18n/es_AR.po index e8003bb5c29..21ca5bf1c9a 100644 --- a/addons/crm/i18n/es_AR.po +++ b/addons/crm/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_CR.po b/addons/crm/i18n/es_CR.po index 83f9dd0d2f3..3decc7334b8 100644 --- a/addons/crm/i18n/es_CR.po +++ b/addons/crm/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_EC.po b/addons/crm/i18n/es_EC.po index c87dfebb99f..67032ce7471 100644 --- a/addons/crm/i18n/es_EC.po +++ b/addons/crm/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/es_MX.po b/addons/crm/i18n/es_MX.po index 24271346a0b..ac53d7016c1 100644 --- a/addons/crm/i18n/es_MX.po +++ b/addons/crm/i18n/es_MX.po @@ -1,163 +1,156 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * crm +# Spanish (Mexico) 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: OpenERP Server 6.0dev\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2011-01-11 11:15+0000\n" -"PO-Revision-Date: 2011-01-18 07:46+0000\n" -"Last-Translator: Jorge L Tupac-Yupanqui \n" -"Language-Team: \n" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-03-07 08:36+0000\n" +"PO-Revision-Date: 2013-03-28 01:06+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Spanish (Mexico) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2011-09-05 05:08+0000\n" -"X-Generator: Launchpad (build 13830)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 msgid "# Leads" -msgstr "# Iniciativas" +msgstr "" #. module: crm +#: help:sale.config.settings,fetchmail_lead:0 +msgid "" +"Allows you to configure your incoming mail server, and create leads from " +"incoming emails." +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:881 +#: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 +#: view:crm.lead.report:0 #: selection:crm.lead.report,type:0 +#, python-format msgid "Lead" -msgstr "Iniciativa" - -#. module: crm -#: model:crm.case.categ,name:crm.categ_oppor3 -msgid "Need Services" -msgstr "Necesita servicios" - -#. module: crm -#: selection:crm.meeting,rrule_type:0 -msgid "Monthly" -msgstr "Mensual" - -#. module: crm -#: view:crm.opportunity2phonecall:0 -msgid "Schedule a PhoneCall" -msgstr "Planificar llamada telefónica" - -#. module: crm -#: model:ir.model,name:crm.model_crm_case_stage -msgid "Stage of case" -msgstr "Etapa del caso" - -#. module: crm -#: view:crm.meeting:0 -msgid "Visibility" -msgstr "Visibilidad" - -#. module: crm -#: field:crm.lead,title:0 -msgid "Title" -msgstr "Título" - -#. module: crm -#: field:crm.meeting,show_as:0 -msgid "Show as" -msgstr "Mostrar como" - -#. module: crm -#: field:crm.meeting,day:0 -#: selection:crm.meeting,select1:0 -msgid "Date of month" -msgstr "Día del mes" +msgstr "" #. module: crm #: view:crm.lead:0 -#: view:crm.phonecall:0 -msgid "Today" -msgstr "Hoy" +#: field:crm.lead,title:0 +msgid "Title" +msgstr "" #. module: crm -#: view:crm.merge.opportunity:0 +#: model:ir.actions.server,message:crm.action_email_reminder_lead +msgid "" +"Warning unprocessed incoming lead is more than 5 day old.\n" +"Name: [[object.name ]]\n" +"ID: [[object.id ]]\n" +"Description: [[object.description]]\n" +" " +msgstr "" + +#. module: crm +#: field:crm.opportunity2phonecall,action:0 +#: field:crm.phonecall2phonecall,action:0 +msgid "Action" +msgstr "" + +#. module: crm +#: model:ir.actions.server,name:crm.action_set_team_sales_department +msgid "Set team to Sales Department" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner.mass:0 msgid "Select Opportunities" -msgstr "Seleccionar oportunidades" +msgstr "" #. module: crm -#: view:crm.meeting:0 -#: view:crm.phonecall2opportunity:0 -#: view:crm.phonecall2phonecall:0 -#: view:crm.send.mail:0 -msgid " " -msgstr " " +#: model:res.groups,name:crm.group_fund_raising +#: field:sale.config.settings,group_fund_raising:0 +msgid "Manage Fund Raising" +msgstr "" #. module: crm #: view:crm.lead.report:0 #: field:crm.phonecall.report,delay_close:0 msgid "Delay to close" -msgstr "Demora cierre" +msgstr "" + +#. module: crm +#: view:crm.case.stage:0 +#: field:crm.case.stage,name:0 +msgid "Stage Name" +msgstr "" #. module: crm #: view:crm.lead:0 -msgid "Previous Stage" -msgstr "Etapa anterior" +#: field:crm.lead,user_id:0 +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +msgid "Salesperson" +msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_add_note.py:26 -#, python-format -msgid "Can not add note!" -msgstr "¡No se puede añadir una nota!" - -#. module: crm -#: field:crm.case.stage,name:0 -msgid "Stage Name" -msgstr "Nombre de etapa" +#: model:ir.model,name:crm.model_crm_lead_report +msgid "CRM Lead Analysis" +msgstr "" #. module: crm #: view:crm.lead.report:0 -#: field:crm.lead.report,day:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,day:0 msgid "Day" -msgstr "Día" +msgstr "" #. module: crm -#: sql_constraint:crm.case.section:0 -msgid "The code of the sales team must be unique !" -msgstr "¡El código del equipo de ventas debe ser único!" +#: view:crm.lead:0 +msgid "Company Name" +msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:95 -#, python-format -msgid "Lead '%s' has been converted to an opportunity." -msgstr "La inicaitiva '%s' ha sido convertida en oportunidad" +#: model:crm.case.categ,name:crm.categ_oppor6 +msgid "Training" +msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:228 -#, python-format -msgid "The lead '%s' has been closed." -msgstr "La iniciativa '%s' ha sido cerrada" +#: model:ir.actions.act_window,name:crm.crm_lead_categ_action +#: model:ir.ui.menu,name:crm.menu_crm_lead_categ +msgid "Sales Tags" +msgstr "" #. module: crm -#: selection:crm.meeting,freq:0 -msgid "No Repeat" -msgstr "No repetir" +#: view:crm.lead.report:0 +msgid "Exp. Closing" +msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:135 -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:260 -#: code:addons/crm/wizard/crm_lead_to_partner.py:55 -#: code:addons/crm/wizard/crm_phonecall_to_partner.py:52 -#, python-format -msgid "Warning !" -msgstr "Advertencia !" +#: view:crm.phonecall:0 +msgid "Cancel Call" +msgstr "" #. module: crm -#: selection:crm.meeting,rrule_type:0 -msgid "Yearly" -msgstr "Anual" +#: help:crm.lead.report,creation_day:0 +msgid "Creation day" +msgstr "" #. module: crm #: field:crm.segmentation.line,name:0 msgid "Rule Name" -msgstr "Nombre de regla" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_phonecall.py:280 +#, python-format +msgid "It's only possible to convert one phonecall at a time." +msgstr "" #. module: crm #: view:crm.case.resource.type:0 @@ -167,536 +160,151 @@ msgstr "Nombre de regla" #: field:crm.lead.report,type_id:0 #: model:ir.model,name:crm.model_crm_case_resource_type msgid "Campaign" -msgstr "Campaña" - -#. module: crm -#: selection:crm.lead2opportunity.partner,action:0 -msgid "Do not create a partner" -msgstr "No crear una empresa" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Search Opportunities" -msgstr "Busqueda de oportunidades" - -#. module: crm -#: code:addons/crm/wizard/crm_merge_opportunities.py:46 -#, python-format -msgid "" -"Opportunity must have Partner assigned before merging with other Opportunity." msgstr "" -"La oportunidad debe de tener una empresa asignada antes de fusionarla con " -"otra oportunidad." #. module: crm -#: code:addons/crm/wizard/crm_merge_opportunities.py:46 -#: code:addons/crm/wizard/crm_merge_opportunities.py:53 +#: help:crm.lead.report,deadline_month:0 +msgid "Expected closing month" +msgstr "" + +#. module: crm +#: help:crm.case.section,message_summary:0 +#: help:crm.lead,message_summary:0 +#: help:crm.phonecall,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" -msgstr "¡Aviso!" - -#. module: crm -#: view:crm.lead.report:0 -#: model:ir.actions.act_window,name:crm.action_report_crm_opportunity -#: model:ir.ui.menu,name:crm.menu_report_crm_opportunities_tree -msgid "Opportunities Analysis" -msgstr "Análisis de oportunidades" - -#. module: crm -#: field:crm.lead,partner_id:0 -#: view:crm.lead.report:0 -#: field:crm.lead.report,partner_id:0 -#: field:crm.lead2opportunity,partner_id:0 -#: field:crm.lead2opportunity.partner,partner_id:0 -#: field:crm.lead2partner,partner_id:0 -#: view:crm.meeting:0 -#: field:crm.meeting,partner_id:0 -#: field:crm.partner2opportunity,partner_id:0 -#: view:crm.phonecall:0 -#: field:crm.phonecall,partner_id:0 -#: view:crm.phonecall.report:0 -#: field:crm.phonecall.report,partner_id:0 -#: field:crm.phonecall2opportunity,partner_id:0 -#: field:crm.phonecall2partner,partner_id:0 -#: model:ir.model,name:crm.model_res_partner -#: model:process.node,name:crm.process_node_partner0 -msgid "Partner" -msgstr "Empresa" - -#. module: crm -#: field:crm.meeting,organizer:0 -#: field:crm.meeting,organizer_id:0 -msgid "Organizer" -msgstr "Organizador" - -#. module: crm -#: view:crm.phonecall:0 -#: view:crm.phonecall2phonecall:0 -#: model:ir.actions.act_window,name:crm.phonecall_to_phonecall_act -#: view:res.partner:0 -msgid "Schedule Other Call" -msgstr "Planificar otra llamada" - -#. module: crm -#: help:crm.meeting,edit_all:0 -msgid "Edit all Occurrences of recurrent Meeting." -msgstr "Editar todas las ocurrencias de la reunión recurrente." - -#. module: crm -#: code:addons/crm/wizard/crm_opportunity_to_phonecall.py:134 -#: code:addons/crm/wizard/crm_phonecall_to_phonecall.py:89 -#: model:crm.case.categ,name:crm.categ_meet3 -#: view:crm.phonecall:0 -#: model:ir.ui.menu,name:crm.menu_crm_config_phonecall -#: view:res.partner:0 -#, python-format -msgid "Phone Call" -msgstr "Llamada de telefono" - -#. module: crm -#: field:crm.lead,optout:0 -msgid "Opt-Out" -msgstr "No acepta recibir emails" - -#. module: crm -#: code:addons/crm/crm_opportunity.py:108 -#, python-format -msgid "The opportunity '%s' has been marked as lost." -msgstr "La oportunidad '%s' ha sido marcada como perdida." - -#. module: crm -#: model:ir.actions.act_window,help:crm.action_report_crm_lead -msgid "" -"Leads Analysis allows you to check different CRM related information. Check " -"for treatment delays, number of responses given and emails sent. You can " -"sort out your leads analysis by different groups to get accurate grained " -"analysis." msgstr "" -"El análisis de iniciativas le permite verificar información relacionada con " -"el CRM. Puede verificar los retrasos, el número de respuestas realizadas y " -"el número de emails enviados. Puede ordenar el análisis de sus iniciativas " -"según diferentes grupos para obtener un análisis reagrupado preciso." #. module: crm #: view:crm.lead:0 -msgid "Send New Email" -msgstr "Enviar nuevo email" +#: field:crm.lead,partner_id:0 +#: view:crm.lead.report:0 +#: field:crm.lead.report,partner_id:0 +#: field:crm.opportunity2phonecall,partner_id:0 +#: view:crm.phonecall:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,partner_id:0 +#: field:crm.phonecall2phonecall,partner_id:0 +#: model:ir.model,name:crm.model_res_partner +#: model:process.node,name:crm.process_node_partner0 +msgid "Partner" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +#: model:ir.actions.act_window,name:crm.phonecall_to_phonecall_act +msgid "Schedule Other Call" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_phonecall.py:209 +#: view:crm.phonecall:0 +#, python-format +msgid "Phone Call" +msgstr "" + +#. module: crm +#: field:crm.lead,opt_out:0 +msgid "Opt-Out" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Opportunities that are assigned to me" +msgstr "" + +#. module: crm +#: field:res.partner,meeting_count:0 +msgid "# Meetings" +msgstr "" + +#. module: crm +#: model:ir.actions.server,name:crm.action_email_reminder_lead +msgid "Reminder to User" +msgstr "" #. module: crm #: field:crm.segmentation,segmentation_line:0 msgid "Criteria" -msgstr "Criterios" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Assigned to My Team(s)" +msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Excluded Answers :" -msgstr "Respuestas excluidas:" +msgstr "" #. module: crm -#: field:crm.case.stage,section_ids:0 -msgid "Sections" -msgstr "Secciones" - -#. module: crm -#: view:crm.merge.opportunity:0 -msgid "_Merge" -msgstr "_Fusionar" +#: model:ir.model,name:crm.model_crm_merge_opportunity +msgid "Merge opportunities" +msgstr "" #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.action_report_crm_lead #: model:ir.ui.menu,name:crm.menu_report_crm_leads_tree msgid "Leads Analysis" -msgstr "Análisis de iniciativas" - -#. module: crm -#: view:crm.lead2opportunity.action:0 -msgid "" -"If you select Merge with existing Opportunity, the lead details(with the " -"communication history) will be merged with existing Opportunity of Selected " -"partner." msgstr "" -"Si selecciona fusionar con oportunidad existente, los detalles de la " -"iniciativa (con el histórico de la comunicación) serán fusionados con la " -"oportunidad existente de la empresa seleccionada" - -#. module: crm -#: selection:crm.meeting,class:0 -msgid "Public" -msgstr "Público" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_resource_type_act #: model:ir.ui.menu,name:crm.menu_crm_case_resource_type_act msgid "Campaigns" -msgstr "Campañas" +msgstr "" #. module: crm -#: model:ir.actions.act_window,name:crm.crm_lead_categ_action +#: view:crm.lead:0 +#: field:crm.lead,state_id:0 +msgid "State" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.lead,categ_ids:0 #: model:ir.ui.menu,name:crm.menu_crm_case_phonecall-act -#: model:ir.ui.menu,name:crm.menu_crm_lead_categ msgid "Categories" -msgstr "Categorías" +msgstr "" #. module: crm -#: selection:crm.meeting,end_type:0 -msgid "Forever" -msgstr "Siempre" - -#. module: crm -#: help:crm.lead,optout:0 +#: help:crm.lead,opt_out:0 msgid "" "If opt-out is checked, this contact has refused to receive emails or " "unsubscribed to a campaign." msgstr "" -"Si opt-out está marcado, este contacto ha rehusado recibir correos " -"electrónicos o ha eliminado su suscripción a una campaña." #. module: crm #: model:process.transition,name:crm.process_transition_leadpartner0 msgid "Prospect Partner" -msgstr "Socio prospecto" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:982 +#, python-format +msgid "No Subject" +msgstr "" #. module: crm #: field:crm.lead,contact_name:0 msgid "Contact Name" -msgstr "Nombre de contacto" - -#. module: crm -#: selection:crm.lead2opportunity.partner,action:0 -#: selection:crm.lead2partner,action:0 -#: selection:crm.phonecall2partner,action:0 -msgid "Link to an existing partner" -msgstr "Enlace al socio existente" - -#. module: crm -#: view:crm.lead:0 -#: view:crm.meeting:0 -#: field:crm.phonecall,partner_contact:0 -msgid "Contact" -msgstr "Contacto" - -#. module: crm -#: view:crm.installer:0 -msgid "Enhance your core CRM Application with additional functionalities." -msgstr "Mejore su aplicación CRM básica con funcionalidades adicionales." - -#. module: crm -#: field:crm.case.stage,on_change:0 -msgid "Change Probability Automatically" -msgstr "Cambiar la probabilidad automáticamente" - -#. module: crm -#: field:base.action.rule,regex_history:0 -msgid "Regular Expression on Case History" -msgstr "Expresiones Regulares en el Historial del Caso" - -#. module: crm -#: code:addons/crm/crm_lead.py:209 -#, python-format -msgid "The lead '%s' has been opened." -msgstr "La iniciativa '%s' ha sido abierta." - -#. module: crm -#: model:process.transition,name:crm.process_transition_opportunitymeeting0 -msgid "Opportunity Meeting" -msgstr "Oportunidad de Reunión" - -#. module: crm -#: help:crm.lead.report,delay_close:0 -#: help:crm.phonecall.report,delay_close:0 -msgid "Number of Days to close the case" -msgstr "Número de días para cerrar el caso" - -#. module: crm -#: model:process.node,note:crm.process_node_opportunities0 -msgid "When a real project/opportunity is detected" -msgstr "Cuando un proyecto/oportunidad real es detectado" - -#. module: crm -#: field:crm.installer,crm_fundraising:0 -msgid "Fundraising" -msgstr "Recaudación de fondos" - -#. module: crm -#: view:res.partner:0 -#: field:res.partner,opportunity_ids:0 -msgid "Leads and Opportunities" -msgstr "Iniciativas y oportunidades" - -#. module: crm -#: view:crm.send.mail:0 -msgid "_Send" -msgstr "_Enviar" - -#. module: crm -#: view:crm.lead:0 -msgid "Communication" -msgstr "Comunicación" - -#. module: crm -#: field:crm.case.section,change_responsible:0 -msgid "Change Responsible" -msgstr "Cambiar responsable" - -#. module: crm -#: field:crm.merge.opportunity,state:0 -msgid "Set State To" -msgstr "Cmabiar estado a" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0 -msgid "" -"Outbound Calls list all the calls to be done by your sales team. A salesman " -"can record the information about the call in the form view. This information " -"will be stored in the partner form to trace every contact you have with a " -"customer. You can also import a .CSV file with a list of calls to be done by " -"your sales team." msgstr "" -"Llamadas salientes muestra todas las llamadas realizadas por su equipo de " -"ventas. Un vendedor puede grabar la información sobre la llamada en la vista " -"de formulario. Esta información se almacenará en el formulario de empresa " -"para rastrear cada contacto que tenga con un cliente. También puede importar " -"un archivo .CSV con una lista de llamadas a realizar por su equipo de ventas." - -#. module: crm -#: model:ir.model,name:crm.model_crm_lead2opportunity_action -msgid "Convert/Merge Opportunity" -msgstr "Convertir/Fusionar oportunidad" - -#. module: crm -#: field:crm.lead,write_date:0 -msgid "Update Date" -msgstr "Actualizar fecha" - -#. module: crm -#: view:crm.lead2opportunity.action:0 -#: field:crm.lead2opportunity.action,name:0 -msgid "Select Action" -msgstr "Seleccionar acción" - -#. module: crm -#: field:base.action.rule,trg_categ_id:0 -#: view:crm.lead:0 -#: field:crm.lead,categ_id:0 -#: view:crm.lead.report:0 -#: field:crm.lead.report,categ_id:0 -#: field:crm.opportunity2phonecall,categ_id:0 -#: field:crm.phonecall,categ_id:0 -#: field:crm.phonecall.report,categ_id:0 -#: field:crm.phonecall2phonecall,categ_id:0 -msgid "Category" -msgstr "Categoría" - -#. module: crm -#: view:crm.lead.report:0 -msgid "#Opportunities" -msgstr "# Oportunidades" - -#. module: crm -#: model:crm.case.resource.type,name:crm.type_oppor2 -msgid "Campaign 1" -msgstr "Campaña 1" - -#. module: crm -#: model:crm.case.resource.type,name:crm.type_oppor1 -msgid "Campaign 2" -msgstr "Campaña 2" - -#. module: crm -#: view:crm.meeting:0 -msgid "Privacy" -msgstr "Privada" - -#. module: crm -#: view:crm.lead.report:0 -msgid "Opportunity Analysis" -msgstr "Análisis de oportunidades" - -#. module: crm -#: help:crm.meeting,location:0 -msgid "Location of Event" -msgstr "Lacalización del evento" - -#. module: crm -#: field:crm.meeting,rrule:0 -msgid "Recurrent Rule" -msgstr "Regla recurrente" - -#. module: crm -#: model:crm.case.resource.type,name:crm.type_lead1 -msgid "Version 4.2" -msgstr "Versión 4.2" - -#. module: crm -#: model:crm.case.resource.type,name:crm.type_lead2 -msgid "Version 4.4" -msgstr "Versión 4.4" - -#. module: crm -#: help:crm.installer,fetchmail:0 -msgid "Allows you to receive E-Mails from POP/IMAP server." -msgstr "Le permite recibir e-mails desde un servidor POP/IMAP" - -#. module: crm -#: model:process.transition,note:crm.process_transition_opportunitymeeting0 -msgid "Normal or phone meeting for opportunity" -msgstr "Oportunidad de reunion normal ó telefonico." - -#. module: crm -#: model:process.node,note:crm.process_node_leads0 -msgid "Very first contact with new prospect" -msgstr "Primer contacto con nueva prospección" - -#. module: crm -#: code:addons/crm/crm_lead.py:278 -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:197 -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:231 -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:299 -#: view:crm.lead2opportunity:0 -#: view:crm.partner2opportunity:0 -#: model:ir.actions.act_window,name:crm.action_crm_lead2opportunity -#: model:ir.actions.act_window,name:crm.action_view_crm_partner2opportunity -#: model:ir.actions.act_window,name:crm.crm_partner2opportunity -#, python-format -msgid "Create Opportunity" -msgstr "Crear oportunidad" - -#. module: crm -#: view:crm.installer:0 -msgid "Configure" -msgstr "Configurar" - -#. module: crm -#: code:addons/crm/crm.py:378 -#: view:crm.lead:0 -#: view:res.partner:0 -#, python-format -msgid "Escalate" -msgstr "Escalado" - -#. module: crm -#: model:ir.module.module,shortdesc:crm.module_meta_information -msgid "Customer & Supplier Relationship Management" -msgstr "Gestión de relaciones con clientes & proveedores" - -#. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 -#: selection:crm.phonecall.report,month:0 -msgid "June" -msgstr "Junio" - -#. module: crm -#: selection:crm.segmentation,state:0 -msgid "Not Running" -msgstr "No ejecutado" - -#. module: crm -#: view:crm.send.mail:0 -#: model:ir.actions.act_window,name:crm.action_crm_reply_mail -msgid "Reply to last Mail" -msgstr "Responder al último e-mail" - -#. module: crm -#: field:crm.lead,email:0 -msgid "E-Mail" -msgstr "E-mail" - -#. module: crm -#: field:crm.installer,wiki_sale_faq:0 -msgid "Sale FAQ" -msgstr "FAQ de ventas" - -#. module: crm -#: model:ir.model,name:crm.model_crm_send_mail_attachment -msgid "crm.send.mail.attachment" -msgstr "crm.enviar.mail.adjunto" - -#. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 -#: selection:crm.phonecall.report,month:0 -msgid "October" -msgstr "Octubre" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Included Answers :" -msgstr "Respuestas incluidas:" - -#. module: crm -#: help:crm.meeting,email_from:0 -#: help:crm.phonecall,email_from:0 -msgid "These people will receive email." -msgstr "Estas personas recibirán un email." - -#. module: crm -#: view:crm.meeting:0 -#: field:crm.meeting,name:0 -msgid "Summary" -msgstr "Resumen" - -#. module: crm -#: view:crm.segmentation:0 -msgid "State of Mind Computation" -msgstr "Cálculo grado de satisfacción" - -#. module: crm -#: help:crm.case.section,change_responsible:0 -msgid "" -"Thick this box if you want that on escalation, the responsible of this sale " -"team automatically becomes responsible of the lead/opportunity escaladed" -msgstr "" -"Marque esta opción si quiere que el responsable del equipo de ventas sea " -"automáticamente responsable de la iniciativa/oportunidad, en caso de ser " -"escalada." - -#. module: crm -#: help:crm.installer,outlook:0 -#: help:crm.installer,thunderbird:0 -msgid "" -"Allows you to link your e-mail to OpenERP's documents. You can attach it to " -"any existing one in OpenERP or create a new one." -msgstr "" -"Permite enlazar su e-mail a la gestión documental de OpenERP. Puede " -"adjuntarlo a cualquier documento ya existente en OpenERP o crear uno de " -"nuevo." - -#. module: crm -#: view:crm.case.categ:0 -msgid "Case Category" -msgstr "Categoría del caso" - -#. module: crm -#: help:crm.segmentation,som_interval_default:0 -msgid "" -"Default state of mind for period preceeding the 'Max Interval' computation. " -"This is the starting state of mind by default if the partner has no event." -msgstr "" -"Grado de satisfacción por defecto para el período que precede el cálculo de " -"'Intervalo máx.'. Este es el grado de satisfacción inicial por defecto si la " -"empresa no tiene ningún evento." - -#. module: crm -#: selection:crm.meeting,end_type:0 -msgid "End date" -msgstr "Fecha de fin" - -#. module: crm -#: constraint:base.action.rule:0 -msgid "Error: The mail is not well formated" -msgstr "Error: El email no está bien formateado" - -#. module: crm -#: view:crm.segmentation:0 -msgid "Profiling Options" -msgstr "Opciones de perfiles" - -#. module: crm -#: view:crm.phonecall.report:0 -msgid "#Phone calls" -msgstr "#Llamadas telefónicas" #. module: crm #: help:crm.segmentation,categ_id:0 @@ -704,41 +312,329 @@ msgid "" "The partner category that will be added to partners that match the " "segmentation criterions after computation." msgstr "" -"La categoría de empresas que será añadida a las empresas que cumplan los " -"criterios de segmentación después del cálculo." #. module: crm -#: view:crm.lead:0 -msgid "Communication history" -msgstr "Historial de comunicación" - -#. module: crm -#: help:crm.phonecall,canal_id:0 +#: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act msgid "" -"The channels represent the different communication " -"modes available with the customer. With each commercial opportunity, you can " -"indicate the canall which is this opportunity source." +"

\n" +" Click to define a new customer segmentation.\n" +"

\n" +" Create specific categories which you can assign to your\n" +" contacts to better manage your interactions with them. The\n" +" segmentation tool is able to assign categories to contacts\n" +" according to criteria you set.\n" +"

\n" +" " msgstr "" -"Los canales representan los diferentes modos de comunicación posibles con el " -"cliente. En cada oportunidad comercial, puede indicar el canal que ha sido " -"el origen de esta oportunidad." #. module: crm -#: code:addons/crm/crm_meeting.py:93 -#, python-format -msgid "The meeting '%s' has been confirmed." -msgstr "La reunión '%s' ha sido confirmada" +#: field:crm.opportunity2phonecall,contact_name:0 +#: field:crm.phonecall,partner_id:0 +#: field:crm.phonecall2phonecall,contact_name:0 +msgid "Contact" +msgstr "" + +#. module: crm +#: help:crm.case.section,change_responsible:0 +msgid "" +"When escalating to this team override the salesman with the team leader." +msgstr "" + +#. module: crm +#: model:process.transition,name:crm.process_transition_opportunitymeeting0 +msgid "Opportunity Meeting" +msgstr "" + +#. module: crm +#: help:crm.lead.report,delay_close:0 +#: help:crm.phonecall.report,delay_close:0 +msgid "Number of Days to close the case" +msgstr "" + +#. module: crm +#: model:process.node,note:crm.process_node_opportunities0 +msgid "When a real project/opportunity is detected" +msgstr "" + +#. module: crm +#: field:res.partner,opportunity_ids:0 +msgid "Leads and Opportunities" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.relate_partner_opportunities +msgid "" +"

\n" +" Click to create an opportunity related to this customer.\n" +"

\n" +" Use opportunities to keep track of your sales pipeline, " +"follow\n" +" up potential sales and better forecast your future " +"revenues.\n" +"

\n" +" You will be able to plan meetings and phone calls from\n" +" opportunities, convert them into quotations, attach related\n" +" documents, track all discussions, and much more.\n" +"

\n" +" " +msgstr "" + +#. module: crm +#: model:crm.case.stage,name:crm.stage_lead7 +#: view:crm.lead:0 +msgid "Dead" +msgstr "" + +#. module: crm +#: field:crm.case.section,message_unread:0 +#: view:crm.lead:0 +#: field:crm.lead,message_unread:0 +#: field:crm.phonecall,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +#: field:crm.segmentation.line,segmentation_id:0 +#: model:ir.actions.act_window,name:crm.crm_segmentation-act +msgid "Segmentation" +msgstr "" + +#. module: crm +#: selection:crm.lead2opportunity.partner,action:0 +#: selection:crm.lead2opportunity.partner.mass,action:0 +#: selection:crm.partner.binding,action:0 +msgid "Link to an existing customer" +msgstr "" + +#. module: crm +#: field:crm.lead,write_date:0 +msgid "Update Date" +msgstr "" #. module: crm #: field:crm.case.section,user_id:0 -msgid "Responsible User" -msgstr "Usuario responsable" +msgid "Team Leader" +msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_phonecall_to_partner.py:53 +#: code:addons/crm/crm_lead.py:1032 #, python-format -msgid "A partner is already defined on this phonecall." -msgstr "Una empresa ya esta definida para esta llamada." +msgid "%s a call for %s.%s" +msgstr "" + +#. module: crm +#: help:crm.case.stage,probability:0 +msgid "" +"This percentage depicts the default/average probability of the Case for this " +"stage to be a success" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: field:crm.opportunity2phonecall,categ_id:0 +#: field:crm.phonecall,categ_id:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,categ_id:0 +#: field:crm.phonecall2phonecall,categ_id:0 +msgid "Category" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "#Opportunities" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:624 +#, python-format +msgid "" +"Please select more than one element (lead or opportunity) from the list view." +msgstr "" + +#. module: crm +#: field:crm.lead,partner_address_email:0 +msgid "Partner Contact Email" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_section_act +msgid "" +"

\n" +" Click to define a new sales team.\n" +"

\n" +" Use sales team to organize your different salespersons or\n" +" departments into separate teams. Each team will work in\n" +" its own list of opportunities.\n" +"

\n" +" " +msgstr "" + +#. module: crm +#: model:process.transition,note:crm.process_transition_opportunitymeeting0 +msgid "Normal or phone meeting for opportunity" +msgstr "" + +#. module: crm +#: field:crm.lead,state:0 +#: field:crm.lead.report,state:0 +#: field:crm.phonecall,state:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,state:0 +msgid "Status" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner:0 +msgid "Create Opportunity" +msgstr "" + +#. module: crm +#: view:sale.config.settings:0 +msgid "Configure" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Escalate" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Mailings" +msgstr "" + +#. module: crm +#: model:mail.message.subtype,description:crm.mt_lead_stage +msgid "Stage changed" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 +#: selection:crm.phonecall.report,month:0 +msgid "June" +msgstr "" + +#. module: crm +#: selection:crm.segmentation,state:0 +msgid "Not Running" +msgstr "" + +#. module: crm +#: field:crm.lead.report,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:970 +#, python-format +msgid "Customer Email" +msgstr "" + +#. module: crm +#: field:crm.lead,planned_revenue:0 +msgid "Expected Revenue" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 +#: selection:crm.phonecall.report,month:0 +msgid "October" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Included Answers :" +msgstr "" + +#. module: crm +#: help:crm.phonecall,state:0 +msgid "" +"The status is set to 'Todo', when a case is created. " +" If the case is in progress the status is set to 'Open'. " +" When the call is over, the status is set to 'Held'. " +" If the call needs to be done then the status is set " +"to 'Not Held'." +msgstr "" + +#. module: crm +#: field:crm.case.section,message_summary:0 +#: field:crm.lead,message_summary:0 +#: field:crm.phonecall,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: crm +#: view:crm.merge.opportunity:0 +msgid "Merge" +msgstr "" + +#. module: crm +#: view:crm.case.categ:0 +msgid "Case Category" +msgstr "" + +#. module: crm +#: field:crm.lead,partner_address_name:0 +msgid "Partner Contact Name" +msgstr "" + +#. module: crm +#: model:ir.actions.server,subject:crm.action_email_reminder_lead +msgid "" +"Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' " +"+object.partner_id.name or '']]" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:745 +#, python-format +msgid "" +"No customer name defined. Please fill one of the following fields: Company " +"Name, Contact Name or Email (\"Name \")" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Profiling Options" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +msgid "#Phone calls" +msgstr "" + +#. module: crm +#: sql_constraint:crm.case.section:0 +msgid "The code of the sales team must be unique !" +msgstr "" + +#. module: crm +#: help:crm.lead,email_from:0 +msgid "Email address of the contact" +msgstr "" + +#. module: crm +#: selection:crm.case.stage,state:0 +#: view:crm.lead:0 +#: selection:crm.lead,state:0 +msgid "In Progress" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action +msgid "" +"

\n" +" Click to add a new category.\n" +"

\n" +" Create specific phone call categories to better define the type " +"of\n" +" calls tracked in the system.\n" +"

\n" +" " +msgstr "" #. module: crm #: help:crm.case.section,reply_to:0 @@ -746,546 +642,391 @@ msgid "" "The email address put in the 'Reply-To' of all emails sent by OpenERP about " "cases in this sales team" msgstr "" -"La dirección de correo electrónico usada como \"Responder a\" de todos los " -"correos electrónicos enviados por OpenERP para los casos de este equipo de " -"ventas." #. module: crm -#: view:res.users:0 -msgid "Current Activity" -msgstr "Actividad actual" - -#. module: crm -#: help:crm.meeting,exrule:0 -msgid "" -"Defines a rule or repeating pattern of time to exclude from the recurring " -"rule." +#: field:crm.lead.report,creation_month:0 +msgid "Creation Month" msgstr "" -"Define una regla o patrón de repetición de tiempo a excluir de la regla " -"recurrente." #. module: crm #: field:crm.case.section,resource_calendar_id:0 +#: model:ir.ui.menu,name:crm.menu_action_resource_calendar_form msgid "Working Time" -msgstr "Horario de trabajo" +msgstr "" #. module: crm #: view:crm.segmentation.line:0 msgid "Partner Segmentation Lines" -msgstr "Líneas de segmentación de empresa" - -#. module: crm -#: view:crm.lead:0 -#: view:crm.meeting:0 -msgid "Details" -msgstr "Detalles" - -#. module: crm -#: help:crm.installer,crm_caldav:0 -msgid "" -"Helps you to synchronize the meetings with other calendar clients and " -"mobiles." msgstr "" -"Le permite sincronizar las reuniones con otros clientes de calendario y " -"móviles." #. module: crm -#: selection:crm.meeting,freq:0 -msgid "Years" -msgstr "Años" - -#. module: crm -#: help:crm.installer,crm_claim:0 -msgid "" -"Manages the suppliers and customers claims, including your corrective or " -"preventive actions." +#: model:ir.actions.act_window,name:crm.action_report_crm_phonecall +#: model:ir.ui.menu,name:crm.menu_report_crm_phonecalls_tree +msgid "Phone Calls Analysis" msgstr "" -"Gestiona las reclamaciones de clientes y proveedores, incluyendo acciones " -"correctivas o preventivas" #. module: crm #: view:crm.lead:0 msgid "Leads Form" -msgstr "Formulario de iniciativas" +msgstr "" #. module: crm #: view:crm.segmentation:0 #: model:ir.model,name:crm.model_crm_segmentation msgid "Partner Segmentation" -msgstr "Segmentación de empresa" +msgstr "" + +#. module: crm +#: field:crm.lead,company_currency:0 +msgid "Currency" +msgstr "" #. module: crm #: field:crm.lead.report,probable_revenue:0 msgid "Probable Revenue" -msgstr "Ingreso estimado" +msgstr "" + +#. module: crm +#: help:crm.lead.report,creation_month:0 +msgid "Creation month" +msgstr "" #. module: crm #: help:crm.segmentation,name:0 msgid "The name of the segmentation." -msgstr "El nombre de la segmentación." +msgstr "" #. module: crm -#: field:crm.case.stage,probability:0 -#: field:crm.lead,probability:0 -msgid "Probability (%)" -msgstr "Probabilidad (%)" +#: model:ir.filters,name:crm.filter_usa_lead +msgid "Leads from USA" +msgstr "" + +#. module: crm +#: sql_constraint:crm.lead:0 +msgid "The probability of closing the deal should be between 0% and 100%!" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Leads Generation" -msgstr "Generación de iniciativas" +msgstr "" #. module: crm #: view:board.board:0 -#: model:ir.ui.menu,name:crm.menu_board_statistics_dash msgid "Statistics Dashboard" -msgstr "Tablero de estadísticas" +msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:88 -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:98 -#: code:addons/crm/wizard/crm_partner_to_opportunity.py:101 -#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:117 +#: code:addons/crm/crm_lead.py:861 +#: model:crm.case.stage,name:crm.stage_lead2 +#: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 +#: view:crm.lead.report:0 #: selection:crm.lead.report,type:0 -#: field:crm.lead2opportunity,name:0 #: field:crm.meeting,opportunity_id:0 -#: field:crm.phonecall,opportunity_id:0 +#: field:res.partner,opportunity_count:0 #, python-format msgid "Opportunity" -msgstr "Oportunidad" +msgstr "" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead7 msgid "Television" -msgstr "Televisión" +msgstr "" #. module: crm -#: field:crm.installer,crm_caldav:0 -msgid "Calendar Synchronizing" -msgstr "Sincronización del calendario" +#: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert +msgid "Convert to opportunities" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_sale_config_settings +msgid "sale.config.settings" +msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Stop Process" -msgstr "Parar el proceso" +msgstr "" + +#. module: crm +#: field:crm.case.section,alias_id:0 +msgid "Alias" +msgstr "" #. module: crm #: view:crm.phonecall:0 msgid "Search Phonecalls" -msgstr "Buscar llamadas" +msgstr "" #. module: crm -#: view:crm.lead2opportunity.partner:0 -#: view:crm.lead2partner:0 -#: view:crm.phonecall2partner:0 -msgid "Continue" -msgstr "Siguiente" +#: view:crm.lead.report:0 +msgid "" +"Leads/Opportunities that are assigned to one of the sale teams I manage" +msgstr "" #. module: crm -#: field:crm.segmentation,som_interval:0 -msgid "Days per Period" -msgstr "Días por período" +#: field:crm.segmentation.line,expr_value:0 +msgid "Value" +msgstr "" #. module: crm -#: field:crm.meeting,byday:0 -msgid "By day" -msgstr "Por día" - -#. module: crm -#: field:base.action.rule,act_section_id:0 -msgid "Set Team to" -msgstr "Establecer equipo a" - -#. module: crm -#: view:calendar.attendee:0 #: field:calendar.attendee,categ_id:0 msgid "Event Type" -msgstr "Tipo de evento" - -#. module: crm -#: model:ir.model,name:crm.model_crm_installer -msgid "crm.installer" -msgstr "crm.instalador" +msgstr "" #. module: crm #: field:crm.segmentation,exclusif:0 msgid "Exclusive" -msgstr "Exclusivo" - -#. module: crm -#: code:addons/crm/crm_opportunity.py:91 -#, python-format -msgid "The opportunity '%s' has been won." -msgstr "La oportunidad '%s' ha sido ganada" - -#. module: crm -#: help:crm.meeting,alarm_id:0 -msgid "Set an alarm at this time, before the event occurs" -msgstr "Configure una alarma en este momento, antes de que ocurra el evento" - -#. module: crm -#: model:ir.module.module,description:crm.module_meta_information -msgid "" -"The generic OpenERP Customer Relationship Management\n" -"system enables a group of people to intelligently and efficiently manage\n" -"leads, opportunities, meeting, phonecall etc.\n" -"It manages key tasks such as communication, identification, prioritization,\n" -"assignment, resolution and notification.\n" -"\n" -"OpenERP ensures that all cases are successfully tracked by users, customers " -"and\n" -"suppliers. It can automatically send reminders, escalate the request, " -"trigger\n" -"specific methods and lots of other actions based on your own enterprise " -"rules.\n" -"\n" -"The greatest thing about this system is that users don't need to do " -"anything\n" -"special. They can just send email to the request tracker. OpenERP will take\n" -"care of thanking them for their message, automatically routing it to the\n" -"appropriate staff, and make sure all future correspondence gets to the " -"right\n" -"place.\n" -"\n" -"The CRM module has a email gateway for the synchronisation interface\n" -"between mails and OpenERP. \n" -"Create dashboard for CRM that includes:\n" -" * My Leads (list)\n" -" * Leads by Stage (graph)\n" -" * My Meetings (list)\n" -" * Sales Pipeline by Stage (graph)\n" -" * My Cases (list)\n" -" * Jobs Tracking (graph)\n" msgstr "" -"El sistema genérico de gestión de relaciones con el cliente de OpenERP\n" -"permite a un grupo de gente manejar de forma inteligente y eficiente\n" -"iniciativas, oportunidades, reuniones, llamadas, etc.\n" -"Maneja tareas clave como la comunicación, identificación, priorización,\n" -"asignación, resolución y notificación.\n" -"\n" -"OpenERP se asegura de que todos los casos son seguidos por los usuarios, " -"clientes y\n" -"proveedores. Puede enviar automáticamente recordatorios, escalar la " -"petición, disparar\n" -"métodos específicos y muchas otras acciones basadas en las reglas de su " -"empresa.\n" -"\n" -"Lo mejor de este sistema es que los usuarios no necesitan hacer nada \n" -"especial. Tan sólo tienen que enviar un correo electrónico al gestor de " -"seguimientos. \n" -"OpenERP le agradecerá su mensaje, enrutándolo automáticamente a la \n" -"persona adecuada, asegurándose de que toda la correspondencia futura llegue " -"al\n" -"lugar correcto.\n" -"\n" -"El módulo CRM tiene una pasarela de correo para el interfaz de " -"sincronización\n" -"entre correos electrónicos y OpenERP. \n" -"Cree tableros para el CRM que incluyan:\n" -" *Mis iniciativas(lista)\n" -" *Iniciativas por etapa (gráfico)\n" -" *Mis reuniones (lista)\n" -" *Proceso de ventas por etapa (gráfico)\n" -" *Mis casos (lista)\n" -" *Seguimiento de trabajos (gráfico)\n" + +#. module: crm +#: code:addons/crm/crm_lead.py:584 +#, python-format +msgid "From %s : %s" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner.mass:0 +msgid "Convert to Opportunities" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2opportunity.partner.mass:0 +#: view:crm.merge.opportunity:0 +#: view:crm.opportunity2phonecall:0 +#: view:crm.phonecall2phonecall:0 +msgid "or" +msgstr "" #. module: crm #: field:crm.lead.report,create_date:0 #: field:crm.phonecall.report,create_date:0 msgid "Create Date" -msgstr "Fecha creación" +msgstr "" #. module: crm #: field:crm.lead,ref2:0 msgid "Reference 2" -msgstr "Referencia 2" +msgstr "" #. module: crm -#: view:crm.segmentation:0 -msgid "Sales Purchase" -msgstr "Compra Ventas" +#: help:crm.case.stage,section_ids:0 +msgid "" +"Link between stages and sales teams. When set, this limitate the current " +"stage to the selected sales teams." +msgstr "" #. module: crm #: view:crm.case.stage:0 #: field:crm.case.stage,requirements:0 msgid "Requirements" -msgstr "Requerimientos" - -#. module: crm -#: help:crm.meeting,exdate:0 -msgid "" -"This property defines the list of date/time exceptions for a recurring " -"calendar component." msgstr "" -"Esta propiedad define la lista de excepciones de fecha/hora para un evento " -"de calendario recurrente." #. module: crm -#: view:crm.phonecall2opportunity:0 -msgid "Convert To Opportunity " -msgstr "Convertir a oportunidad " - -#. module: crm -#: help:crm.case.stage,sequence:0 -msgid "Gives the sequence order when displaying a list of case stages." +#: field:crm.lead,zip:0 +msgid "Zip" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +msgid "Unassigned Phonecalls" msgstr "" -"Indica el orden de secuencia cuando se muestra un lista de etapas de casos." #. module: crm #: view:crm.lead:0 -#: field:crm.merge.opportunity,opportunity_ids:0 +#: view:crm.lead2opportunity.partner:0 +#: field:crm.lead2opportunity.partner,opportunity_ids:0 +#: field:crm.lead2opportunity.partner.mass,opportunity_ids:0 #: model:ir.actions.act_window,name:crm.crm_case_category_act_oppor11 -#: model:ir.ui.menu,name:crm.menu_crm_case_opp +#: model:ir.actions.act_window,name:crm.relate_partner_opportunities +#: model:ir.ui.menu,name:crm.menu_crm_opportunities #: model:process.node,name:crm.process_node_opportunities0 +#: view:res.partner:0 msgid "Opportunities" -msgstr "Oportunidades" +msgstr "" #. module: crm #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "Categoría de empresa" +msgstr "" #. module: crm -#: view:crm.add.note:0 -#: model:ir.actions.act_window,name:crm.action_crm_add_note -msgid "Add Note" -msgstr "Añadir nota" +#: field:crm.lead,probability:0 +msgid "Success Rate (%)" +msgstr "" #. module: crm -#: field:crm.lead,is_supplier_add:0 -msgid "Supplier" -msgstr "Proveedor" +#: field:crm.segmentation,sales_purchase_active:0 +msgid "Use The Sales Purchase Rules" +msgstr "" #. module: crm -#: help:crm.send.mail,reply_to:0 -msgid "Reply-to of the Sales team defined on this case" -msgstr "\"Responder a\" del equipo de ventas definido en este caso" +#: model:crm.case.categ,name:crm.categ_phone2 +msgid "Outbound" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Leads that are assigned to me" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Mark Won" -msgstr "Marcar ganado" +msgstr "" #. module: crm -#: selection:crm.segmentation.line,expr_name:0 -msgid "Purchase Amount" -msgstr "Importe de compra" +#: field:crm.case.stage,probability:0 +msgid "Probability (%)" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Mark Lost" -msgstr "Marcar perdido" +msgstr "" #. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 +#: model:ir.filters,name:crm.filter_draft_lead +msgid "Draft Leads" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "March" -msgstr "Marzo" +msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:230 +#: view:crm.lead:0 +msgid "Send Email" +msgstr "" + +#. module: crm +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 #, python-format -msgid "The opportunity '%s' has been closed." -msgstr "La oportunidad '%s' ha sido cerrada" +msgid "Warning !" +msgstr "" + +#. module: crm +#: help:crm.case.section,message_unread:0 +#: help:crm.lead,message_unread:0 +#: help:crm.phonecall,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" #. module: crm #: field:crm.lead,day_open:0 msgid "Days to Open" -msgstr "Días para abrir" +msgstr "" #. module: crm -#: view:crm.meeting:0 -msgid "Show Time as" -msgstr "Mostrar hora como" - -#. module: crm -#: code:addons/crm/crm_lead.py:264 -#: view:crm.phonecall2partner:0 -#, python-format -msgid "Create Partner" -msgstr "Crear empresa" - -#. module: crm -#: selection:crm.segmentation.line,expr_operator:0 -msgid "<" -msgstr "<" +#: view:crm.lead:0 +msgid "ZIP" +msgstr "" #. module: crm #: field:crm.lead,mobile:0 #: field:crm.phonecall,partner_mobile:0 msgid "Mobile" -msgstr "Móvil" - -#. module: crm -#: field:crm.meeting,end_type:0 -msgid "Way to end reccurency" -msgstr "Forma de terminar recurrencia" - -#. module: crm -#: code:addons/crm/wizard/crm_merge_opportunities.py:53 -#, python-format -msgid "" -"There are no other 'Open' or 'Pending' Opportunities for the partner '%s'." msgstr "" -"No existen más oportunidades 'Abiertas' o 'Pendientes' para la empresa '%s'." - -#. module: crm -#: view:crm.lead:0 -msgid "Next Stage" -msgstr "Siguiente etapa" - -#. module: crm -#: view:board.board:0 -msgid "My Meetings" -msgstr "Mis reuniones" #. module: crm #: field:crm.lead,ref:0 msgid "Reference" -msgstr "Referencia" +msgstr "" #. module: crm -#: field:crm.lead,optin:0 -msgid "Opt-In" -msgstr "Acepta recibir emails" +#: help:crm.case.section,resource_calendar_id:0 +msgid "Used to compute open days" +msgstr "" #. module: crm -#: code:addons/crm/crm_opportunity.py:208 -#: code:addons/crm/crm_phonecall.py:185 -#: code:addons/crm/wizard/crm_phonecall_to_meeting.py:55 -#: code:addons/crm/wizard/crm_phonecall_to_meeting.py:137 -#: view:crm.meeting:0 #: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_meeting_new -#: model:ir.actions.act_window,name:crm.crm_case_categ_meet -#: model:ir.ui.menu,name:crm.menu_crm_case_categ_meet -#: model:ir.ui.menu,name:crm.menu_meeting_sale +#: model:ir.actions.act_window,name:crm.crm_meeting_partner #: view:res.partner:0 #: field:res.partner,meeting_ids:0 -#, python-format msgid "Meetings" -msgstr "Reuniones" - -#. module: crm -#: view:crm.meeting:0 -msgid "Choose day where repeat the meeting" -msgstr "Eligir día en el que repetir la cita" +msgstr "" #. module: crm #: field:crm.lead,date_action_next:0 #: field:crm.lead,title_action:0 -#: field:crm.meeting,date_action_next:0 #: field:crm.phonecall,date_action_next:0 msgid "Next Action" -msgstr "Acción siguiente" - -#. module: crm -#: field:crm.meeting,end_date:0 -msgid "Repeat Until" -msgstr "Repetir hasta" - -#. module: crm -#: field:crm.meeting,date_deadline:0 -msgid "Deadline" -msgstr "Fecha límite" - -#. module: crm -#: help:crm.meeting,active:0 -msgid "" -"If the active field is set to true, it will allow you to hide the " -"event alarm information without removing it." msgstr "" -"Si el campo activo se establece en verdadero, se omitirá la alarma del " -"evento, sin embargo no se eliminará." #. module: crm -#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:57 +#: code:addons/crm/crm_lead.py:763 #, python-format -msgid "Closed/Cancelled Phone Call Could not convert into Opportunity" +msgid "Partner set to %s." +msgstr "" + +#. module: crm +#: selection:crm.lead.report,state:0 +#: selection:crm.phonecall,state:0 +#: selection:crm.phonecall.report,state:0 +msgid "Draft" msgstr "" -"Las llamadas telefónicas cerradas/canceladas no podrían ser convertidas en " -"oportunidades" #. module: crm #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "Segmentaciones de empresa" +msgstr "" #. module: crm -#: view:crm.meeting:0 -#: field:crm.meeting,user_id:0 -#: view:crm.phonecall:0 -#: field:crm.phonecall,user_id:0 -#: view:res.partner:0 -msgid "Responsible" -msgstr "Responsable" +#: view:crm.lead.report:0 +msgid "Show only opportunity" +msgstr "" #. module: crm -#: view:res.partner:0 -msgid "Previous" -msgstr "Anterior" +#: field:crm.lead,name:0 +msgid "Subject" +msgstr "" #. module: crm #: view:crm.lead:0 -msgid "Statistics" -msgstr "Estadísticas" +msgid "Show Sales Team" +msgstr "" #. module: crm -#: view:crm.meeting:0 -#: field:crm.send.mail,email_from:0 -msgid "From" -msgstr "De" +#: help:sale.config.settings,module_crm_claim:0 +msgid "" +"Allows you to track your customers/suppliers claims and grievances.\n" +" This installs the module crm_claim." +msgstr "" #. module: crm -#: view:crm.lead2opportunity.action:0 -#: view:res.partner:0 -msgid "Next" -msgstr "Siguiente" - -#. module: crm -#: view:crm.lead:0 -msgid "Stage:" -msgstr "Etapa:" - -#. module: crm -#: model:crm.case.stage,name:crm.stage_lead5 -#: model:crm.case.stage,name:crm.stage_opportunity5 +#: model:crm.case.stage,name:crm.stage_lead6 #: view:crm.lead:0 msgid "Won" -msgstr "Ganado" +msgstr "" #. module: crm #: field:crm.lead.report,delay_expected:0 msgid "Overpassed Deadline" -msgstr "Fecha límite sobrepasada" +msgstr "" #. module: crm #: model:crm.case.section,name:crm.section_sales_department msgid "Sales Department" -msgstr "Departamento de ventas" - -#. module: crm -#: field:crm.send.mail,html:0 -msgid "HTML formatting?" -msgstr "Formato HTML?" +msgstr "" #. module: crm #: field:crm.case.stage,type:0 #: field:crm.lead,type:0 #: field:crm.lead.report,type:0 -#: view:crm.meeting:0 -#: view:crm.phonecall:0 -#: view:crm.phonecall.report:0 -#: view:res.partner:0 +#: view:crm.opportunity2phonecall:0 msgid "Type" -msgstr "Tipo" +msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Compute Segmentation" -msgstr "Calcular la segmentación" +msgstr "" #. module: crm #: selection:crm.lead,priority:0 @@ -1293,100 +1034,65 @@ msgstr "Calcular la segmentación" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Lowest" -msgstr "Muy bajo" +msgstr "" #. module: crm -#: view:crm.add.note:0 -#: view:crm.send.mail:0 -#: field:crm.send.mail.attachment,binary:0 -msgid "Attachment" -msgstr "Adjunto" - -#. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 -#: selection:crm.phonecall.report,month:0 -msgid "August" -msgstr "Agosto" - -#. module: crm -#: view:crm.lead:0 #: field:crm.lead,create_date:0 -#: field:crm.lead.report,creation_date:0 -#: field:crm.meeting,create_date:0 +#: view:crm.phonecall:0 #: field:crm.phonecall,create_date:0 #: field:crm.phonecall.report,creation_date:0 msgid "Creation Date" -msgstr "Fecha creación" +msgstr "" #. module: crm -#: model:crm.case.categ,name:crm.categ_oppor5 -msgid "Need a Website Design" -msgstr "Necesita un diseño de sitio web" +#: code:addons/crm/crm_lead.py:698 +#, python-format +msgid "Lead converted into an Opportunity" +msgstr "" #. module: crm -#: field:crm.meeting,recurrent_uid:0 -msgid "Recurrent ID" -msgstr "ID recurrente" +#: selection:crm.segmentation.line,expr_name:0 +msgid "Purchase Amount" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +msgid "Year of call" +msgstr "" #. module: crm #: view:crm.lead:0 -#: view:crm.meeting:0 -#: field:crm.send.mail,subject:0 -#: view:res.partner:0 -msgid "Subject" -msgstr "Asunto" +msgid "Open Leads" +msgstr "" #. module: crm -#: field:crm.meeting,tu:0 -msgid "Tue" -msgstr "Mar" - -#. module: crm -#: code:addons/crm/crm_lead.py:300 #: view:crm.case.stage:0 #: view:crm.lead:0 #: field:crm.lead,stage_id:0 #: view:crm.lead.report:0 #: field:crm.lead.report,stage_id:0 -#, python-format msgid "Stage" -msgstr "Etapa" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +msgid "Phone Calls that are assigned to me" +msgstr "" + +#. module: crm +#: field:crm.lead,user_login:0 +msgid "User Login" +msgstr "" #. module: crm #: view:crm.lead:0 -msgid "History Information" -msgstr "Histórico información" +msgid "No salesperson" +msgstr "" #. module: crm -#: field:base.action.rule,act_mail_to_partner:0 -msgid "Mail to Partner" -msgstr "Mail a la empresa" - -#. module: crm -#: view:crm.lead:0 -msgid "Mailings" -msgstr "Mailings" - -#. module: crm -#: field:crm.meeting,class:0 -msgid "Mark as" -msgstr "Marcar como" - -#. module: crm -#: field:crm.meeting,count:0 -msgid "Repeat" -msgstr "Repetir" - -#. module: crm -#: help:crm.meeting,rrule_type:0 -msgid "Let the event automatically repeat at that interval" -msgstr "Permite que el evento se repita en ese intervalo" - -#. module: crm -#: view:base.action.rule:0 -msgid "Condition Case Fields" -msgstr "Campos de condiciones de casos" +#: view:crm.phonecall.report:0 +msgid "Phone calls which are in pending state" +msgstr "" #. module: crm #: view:crm.case.section:0 @@ -1394,67 +1100,102 @@ msgstr "Campos de condiciones de casos" #: view:crm.case.stage:0 #: model:ir.actions.act_window,name:crm.crm_case_stage_act #: model:ir.actions.act_window,name:crm.crm_lead_stage_act -#: model:ir.actions.act_window,name:crm.crm_opportunity_stage_act #: model:ir.ui.menu,name:crm.menu_crm_lead_stage_act -#: model:ir.ui.menu,name:crm.menu_crm_opportunity_stage_act msgid "Stages" -msgstr "Etapas" - -#. module: crm -#: field:crm.lead,planned_revenue:0 -#: field:crm.lead2opportunity,planned_revenue:0 -#: field:crm.partner2opportunity,planned_revenue:0 -#: field:crm.phonecall2opportunity,planned_revenue:0 -msgid "Expected Revenue" -msgstr "Ingreso estimado" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action -msgid "" -"Create specific phone call categories to better define the type of calls " -"tracked in the system." msgstr "" -"Crear categorías específicas de llamada telefónica para definir mejor el " -"tipo de llamadas en el sistema de seguimiento." #. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 +#: help:sale.config.settings,module_crm_helpdesk:0 +msgid "" +"Allows you to communicate with Customer, process Customer query, and " +"provide better help and support. This installs the module crm_helpdesk." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Delete" +msgstr "" + +#. module: crm +#: model:mail.message.subtype,description:crm.mt_lead_create +msgid "Opportunity created" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "í" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +msgid "Description..." +msgstr "" + +#. module: crm +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "September" -msgstr "Setiembre" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11 +msgid "" +"

\n" +" Click to create a new opportunity.\n" +"

\n" +" OpenERP helps you keep track of your sales pipeline to follow\n" +" up potential sales and better forecast your future revenues.\n" +"

\n" +" You will be able to plan meetings and phone calls from\n" +" opportunities, convert them into quotations, attach related\n" +" documents, track all discussions, and much more.\n" +"

\n" +" " +msgstr "" #. module: crm #: field:crm.segmentation,partner_id:0 msgid "Max Partner ID processed" -msgstr "Máx ID de empresa procesado" +msgstr "" #. module: crm -#: model:ir.actions.act_window,name:crm.action_report_crm_phonecall -#: model:ir.ui.menu,name:crm.menu_report_crm_phonecalls_tree -msgid "Phone Calls Analysis" -msgstr "Análisis de llamadas" +#: help:crm.case.stage,on_change:0 +msgid "" +"Setting this stage will change the probability automatically on the " +"opportunity." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "oe_kanban_text_red" +msgstr "" + +#. module: crm +#: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act +msgid "Payment Modes" +msgstr "" #. module: crm #: field:crm.lead.report,opening_date:0 #: field:crm.phonecall.report,opening_date:0 msgid "Opening Date" -msgstr "Fecha de apertura" +msgstr "" #. module: crm #: help:crm.phonecall,duration:0 msgid "Duration in Minutes" -msgstr "Duración en minutos" +msgstr "" #. module: crm -#: help:crm.installer,crm_helpdesk:0 -msgid "Manages a Helpdesk service." -msgstr "Gestiona un servicio de soporte." +#: field:crm.case.channel,name:0 +msgid "Channel Name" +msgstr "" #. module: crm -#: field:crm.partner2opportunity,name:0 -msgid "Opportunity Name" -msgstr "Nombre oportunidad" +#: help:crm.lead.report,deadline_day:0 +msgid "Expected closing day" +msgstr "" #. module: crm #: help:crm.case.section,active:0 @@ -1462,44 +1203,26 @@ msgid "" "If the active field is set to true, it will allow you to hide the sales team " "without removing it." msgstr "" -"Si el campo activo se marca, permite ocultar el equipo de ventas sin " -"eliminarlo." #. module: crm -#: view:crm.lead.report:0 -#: view:crm.phonecall.report:0 -msgid " Year " -msgstr " Año " +#: help:crm.case.stage,case_default:0 +msgid "" +"If you check this field, this stage will be proposed by default on each " +"sales team. It will not assign this stage to existing teams." +msgstr "" #. module: crm -#: field:crm.meeting,edit_all:0 -msgid "Edit All" -msgstr "Editar todo" +#: help:crm.case.stage,type:0 +msgid "" +"This field is used to distinguish stages related to Leads from stages " +"related to Opportunities, or to specify stages available for both types." +msgstr "" #. module: crm -#: field:crm.meeting,fr:0 -msgid "Fri" -msgstr "Vie" - -#. module: crm -#: model:ir.model,name:crm.model_crm_lead -msgid "crm.lead" -msgstr "crm.iniciativa" - -#. module: crm -#: field:crm.meeting,write_date:0 -msgid "Write Date" -msgstr "Fecha escritura" - -#. module: crm -#: view:crm.meeting:0 -msgid "End of Recurrency" -msgstr "Fin de recurrencia" - -#. module: crm -#: view:crm.meeting:0 -msgid "Reminder" -msgstr "Recordatorio" +#: model:mail.message.subtype,name:crm.mt_lead_create +#: model:mail.message.subtype,name:crm.mt_salesteam_lead +msgid "Lead Created" +msgstr "" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1507,238 +1230,247 @@ msgid "" "Check if you want to use this tab as part of the segmentation rule. If not " "checked, the criteria beneath will be ignored" msgstr "" -"Márquela si quiere utilizar esta pestaña como parte de la regla de " -"segmentación. Si no se marca, los criterios que contenga serán ignorados" - -#. module: crm -#: view:crm.lead2opportunity.partner:0 -#: view:crm.lead2partner:0 -#: view:crm.phonecall:0 -#: view:crm.phonecall2partner:0 -#: model:ir.actions.act_window,name:crm.action_crm_lead2partner -#: model:ir.actions.act_window,name:crm.action_crm_phonecall2partner -#: view:res.partner:0 -msgid "Create a Partner" -msgstr "Crear una empresa" #. module: crm #: field:crm.segmentation,state:0 msgid "Execution Status" -msgstr "Estado ejecución" +msgstr "" #. module: crm -#: selection:crm.meeting,week_list:0 -msgid "Monday" -msgstr "Lunes" +#: view:crm.opportunity2phonecall:0 +msgid "Log call" +msgstr "" #. module: crm #: field:crm.lead,day_close:0 msgid "Days to Close" -msgstr "Días para el cierre" +msgstr "" #. module: crm -#: field:crm.add.note,attachment_ids:0 #: field:crm.case.section,complete_name:0 -#: field:crm.send.mail,attachment_ids:0 msgid "unknown" -msgstr "desconocido" +msgstr "" #. module: crm -#: field:crm.lead,id:0 -#: field:crm.meeting,id:0 -#: field:crm.phonecall,id:0 -msgid "ID" -msgstr "ID" +#: field:crm.case.section,message_is_follower:0 +#: field:crm.lead,message_is_follower:0 +#: field:crm.phonecall,message_is_follower:0 +msgid "Is a Follower" +msgstr "" #. module: crm -#: model:ir.model,name:crm.model_crm_partner2opportunity -msgid "Partner To Opportunity" -msgstr "Empresa a oportunidad" - -#. module: crm -#: view:crm.meeting:0 -#: field:crm.meeting,date:0 #: field:crm.opportunity2phonecall,date:0 #: view:crm.phonecall:0 #: field:crm.phonecall,date:0 #: field:crm.phonecall2phonecall,date:0 -#: view:res.partner:0 msgid "Date" -msgstr "Fecha" +msgstr "" + +#. module: crm +#: model:crm.case.section,name:crm.crm_case_section_4 +msgid "Online Support" +msgstr "" #. module: crm -#: view:crm.lead:0 #: view:crm.lead.report:0 -#: view:crm.meeting:0 #: view:crm.phonecall.report:0 msgid "Extended Filters..." -msgstr "Filtros extendidos..." +msgstr "" #. module: crm -#: field:crm.phonecall2opportunity,name:0 -msgid "Opportunity Summary" -msgstr "Resumen oportunidad" +#: view:crm.phonecall.report:0 +msgid "Phone calls which are in closed state" +msgstr "" #. module: crm #: view:crm.phonecall.report:0 msgid "Search" -msgstr "Buscar" +msgstr "" #. module: crm -#: view:board.board:0 -msgid "Opportunities by Categories" -msgstr "Oportunidades por categorías" +#: help:crm.lead,state:0 +msgid "" +"The Status is set to 'Draft', when a case is created. If the case is in " +"progress the Status is set to 'Open'. When the case is over, the Status is " +"set to 'Done'. If the case needs to be reviewed then the Status is set to " +"'Pending'." +msgstr "" #. module: crm -#: view:crm.meeting:0 -msgid "Choose day in the month where repeat the meeting" -msgstr "Elija el día del mes en que se repetirá la cita." +#: model:crm.case.section,name:crm.crm_case_section_1 +msgid "Sales Marketing Department" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:569 +#, python-format +msgid "Merged lead" +msgstr "" + +#. module: crm +#: help:crm.lead,section_id:0 +msgid "" +"When sending mails, the default email address is taken from the sales team." +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +msgid "" +"Phone Calls Assigned to the current user or with a team having the current " +"user as team leader" +msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Description" -msgstr "Descripción de segmentación" - -#. module: crm -#: view:crm.lead:0 -#: view:res.partner:0 -msgid "History" -msgstr "Historial" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act -msgid "" -"Create specific partner categories which you can assign to your partners to " -"better manage your interactions with them. The segmentation tool is able to " -"assign categories to partners according to criteria you set." msgstr "" -"Cree categorías de empresa específicas para gestionar mejor sus " -"interacciones con ellas. La herramienta de segmentación es capaz de asignar " -"categorías a empresas de acuerdo a los criterios que establezca." + +#. module: crm +#: code:addons/crm/crm_lead.py:565 +#, python-format +msgid "Merged opportunities" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor7 +msgid "Consulting" +msgstr "" #. module: crm #: field:crm.case.section,code:0 msgid "Code" -msgstr "Código" +msgstr "" + +#. module: crm +#: view:sale.config.settings:0 +msgid "Features" +msgstr "" #. module: crm #: field:crm.case.section,child_ids:0 msgid "Child Teams" -msgstr "Equipos hijos" +msgstr "" #. module: crm -#: view:crm.lead:0 -#: field:crm.lead,state:0 -#: view:crm.lead.report:0 -#: field:crm.lead.report,state:0 -#: view:crm.meeting:0 -#: field:crm.meeting,state:0 -#: field:crm.phonecall,state:0 #: view:crm.phonecall.report:0 -#: field:crm.phonecall.report,state:0 -msgid "State" -msgstr "Estado" +msgid "Phone calls which are in draft and open state" +msgstr "" #. module: crm -#: field:crm.meeting,freq:0 -msgid "Frequency" -msgstr "Frecuencia" +#: field:crm.lead2opportunity.partner.mass,user_ids:0 +msgid "Salesmen" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "References" -msgstr "Referencias" - -#. module: crm -#: code:addons/crm/crm.py:392 -#: view:crm.lead:0 -#: view:crm.lead2opportunity:0 -#: view:crm.lead2opportunity.action:0 -#: view:crm.lead2opportunity.partner:0 -#: view:crm.lead2partner:0 -#: view:crm.phonecall:0 -#: view:crm.phonecall2partner:0 -#: view:res.partner:0 -#, python-format -msgid "Cancel" -msgstr "Cancelar" - -#. module: crm -#: model:ir.model,name:crm.model_res_users -msgid "res.users" -msgstr "res.usuarios" - -#. module: crm -#: model:ir.model,name:crm.model_crm_merge_opportunity -msgid "Merge two Opportunities" -msgstr "Fusionar dos oportunidades" - -#. module: crm -#: selection:crm.meeting,end_type:0 -msgid "Fix amout of times" -msgstr "Cantidad fija de veces" - -#. module: crm -#: view:crm.lead:0 -#: view:crm.meeting:0 -#: view:crm.phonecall:0 -msgid "Current" -msgstr "Actual" - -#. module: crm -#: field:crm.meeting,exrule:0 -msgid "Exception Rule" -msgstr "Exception de regla" - -#. module: crm -#: help:base.action.rule,act_mail_to_partner:0 -msgid "Check this if you want the rule to send an email to the partner." msgstr "" -"Verifica esto si tu quieres enviar la norma en un correo electronico a el " -"socio" + +#. module: crm +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2opportunity.partner.mass:0 +#: view:crm.merge.opportunity:0 +#: view:crm.opportunity2phonecall:0 +#: view:crm.phonecall:0 +#: view:crm.phonecall2phonecall:0 +msgid "Cancel" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor4 +msgid "Information" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "Leads/Opportunities which are in pending state" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +msgid "To Do" +msgstr "" + +#. module: crm +#: model:mail.message.subtype,description:crm.mt_lead_lost +msgid "Opportunity lost" +msgstr "" + +#. module: crm +#: field:crm.lead2opportunity.partner,action:0 +#: field:crm.lead2opportunity.partner.mass,action:0 +#: field:crm.partner.binding,action:0 +msgid "Related Customer" +msgstr "" + +#. module: crm +#: model:crm.case.categ,name:crm.categ_oppor8 +msgid "Other" +msgstr "" + +#. module: crm +#: field:crm.phonecall,opportunity_id:0 +#: model:ir.model,name:crm.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.action_merge_opportunities +#: model:ir.actions.act_window,name:crm.merge_opportunity_act +msgid "Merge leads/opportunities" +msgstr "" + +#. module: crm +#: help:crm.case.stage,sequence:0 +msgid "Used to order stages. Lower is better." +msgstr "" #. module: crm #: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action msgid "Phonecall Categories" -msgstr "Categorías de llamadas" +msgstr "" #. module: crm -#: view:crm.meeting:0 -msgid "Invite People" -msgstr "Invitar personas" +#: view:crm.lead.report:0 +msgid "Leads/Opportunities which are in open state" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Opportunities that are assigned to any sales teams I am member of" +msgstr "" + +#. module: crm +#: model:mail.message.subtype,name:crm.mt_lead_stage +msgid "Stage Changed" +msgstr "" + +#. module: crm +#: field:crm.case.stage,section_ids:0 +msgid "Sections" +msgstr "" #. module: crm #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive Sales team." -msgstr "¡Error! No puede crear equipos de ventas recursivos." +msgstr "" #. module: crm -#: view:crm.meeting:0 -msgid "Search Meetings" -msgstr "Buscar reuniones" +#: selection:crm.opportunity2phonecall,action:0 +#: selection:crm.phonecall2phonecall,action:0 +msgid "Log a call" +msgstr "" #. module: crm #: selection:crm.segmentation.line,expr_name:0 msgid "Sale Amount" -msgstr "Importe de venta" - -#. module: crm -#: code:addons/crm/wizard/crm_send_email.py:141 -#, python-format -msgid "Unable to send mail. Please check SMTP is configured properly." msgstr "" -"Imposible enviar el correo electrónico. Verifique que la configuración SMTP " -"sea correcta." #. module: crm -#: selection:crm.segmentation.line,expr_operator:0 -msgid "=" -msgstr "=" - -#. module: crm -#: selection:crm.meeting,state:0 -msgid "Unconfirmed" -msgstr "No confirmado" +#: view:crm.phonecall.report:0 +#: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_phonecall_new +msgid "Phone calls" +msgstr "" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_opportunity @@ -1749,73 +1481,46 @@ msgid "" "mainly used by the sales manager in order to do the periodic review with the " "teams of the sales pipeline." msgstr "" -"El análisis de oportunidades le da acceso instantáneo a sus oportunidades " -"con información como el ingreso previsto, coste planeado, fechas límite " -"incumplidas o el número de interacciones por oportunidad. Este informe lo " -"utiliza principalmente el responsable de ventas para hacer una revisión " -"periódica del proceso de ventas con los equipos." #. module: crm #: field:crm.case.categ,name:0 -#: field:crm.installer,name:0 -#: field:crm.lead,name:0 +#: field:crm.payment.mode,name:0 #: field:crm.segmentation,name:0 -#: field:crm.send.mail.attachment,name:0 msgid "Name" -msgstr "Nombre" - -#. module: crm -#: field:crm.meeting,alarm_id:0 -#: field:crm.meeting,base_calendar_alarm_id:0 -msgid "Alarm" -msgstr "Alarma" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_lead_stage_act -msgid "" -"Add specific stages to leads and opportunities allowing your sales to better " -"organise their sales pipeline. Stages will allow them to easily track how a " -"specific lead or opportunity is positioned in the sales cycle." msgstr "" -"Agregar etapas específicas de iniciativas y oportunidades para organizar " -"mejor su flujo de ventas. Estas etapas permitirán un fácil seguimiento de " -"iniciativas u oportunidades en relación al ciclo de ventas." #. module: crm #: view:crm.lead.report:0 -#: view:crm.phonecall.report:0 -msgid "My Case(s)" -msgstr "Mi(s) caso(s)" - -#. module: crm -#: field:crm.lead,birthdate:0 -msgid "Birthdate" -msgstr "Fecha de nacimiento" - -#. module: crm -#: view:crm.meeting:0 -msgid "The" -msgstr "El" - -#. module: crm -#: field:crm.send.mail.attachment,wizard_id:0 -msgid "Wizard" -msgstr "Asistente" - -#. module: crm -#: help:crm.lead,section_id:0 -msgid "" -"Sales team to which this case belongs to. Defines responsible user and e-" -"mail address for the mail gateway." +msgid "Leads/Opportunities that are assigned to me" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "My Case(s)" +msgstr "" + +#. module: crm +#: help:crm.case.section,message_ids:0 +#: help:crm.lead,message_ids:0 +#: help:crm.phonecall,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Show Countries" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +msgid "Date of call" msgstr "" -"El equipo de ventas al que pertenece este caso. Define el usuario " -"responsable y la dirección de correo electrónico para la pasarela de correo." #. module: crm #: view:crm.lead:0 #: view:crm.phonecall:0 msgid "Creation" -msgstr "Creación" +msgstr "" #. module: crm #: selection:crm.lead,priority:0 @@ -1823,168 +1528,114 @@ msgstr "Creación" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "High" -msgstr "Alto" +msgstr "" #. module: crm #: model:process.node,note:crm.process_node_partner0 msgid "Convert to prospect to business partner" -msgstr "Convertir prospección a empresa" - -#. module: crm -#: view:crm.phonecall2opportunity:0 -msgid "_Convert" -msgstr "_Convertir" - -#. module: crm -#: model:ir.actions.act_window,help:crm.action_view_attendee_form -msgid "" -"With Meeting Invitations you can create and manage the meeting invitations " -"sent/to be sent to your colleagues/partners. You can not only invite OpenERP " -"users, but also external parties, such as a customer." msgstr "" -"Con invitaciones a reuniones puede crear y gesionar las invitaciones de " -"reuniones enviadas / por enviar a sus compañeros de trabajo / empresas. La " -"invitación no debe ser únicamente para usuarios de OpenERP, puede ser " -"igualmente para terceros externos, como un cliente." #. module: crm -#: selection:crm.meeting,week_list:0 -msgid "Saturday" -msgstr "Sábado" +#: model:ir.model,name:crm.model_crm_payment_mode +msgid "CRM Payment Mode" +msgstr "" #. module: crm -#: selection:crm.meeting,byday:0 -msgid "Fifth" -msgstr "Quinto" - -#. module: crm -#: view:crm.phonecall2phonecall:0 -msgid "_Schedule" -msgstr "_Calendario" +#: view:crm.lead.report:0 +msgid "Leads/Opportunities which are in done state" +msgstr "" #. module: crm #: field:crm.lead.report,delay_close:0 msgid "Delay to Close" -msgstr "Tiempo restante para el cierre" - -#. module: crm -#: field:crm.meeting,we:0 -msgid "Wed" -msgstr "Mier" - -#. module: crm -#: model:crm.case.categ,name:crm.categ_oppor6 -msgid "Potential Reseller" -msgstr "Distribuidor potencial" - -#. module: crm -#: field:crm.lead.report,planned_revenue:0 -msgid "Planned Revenue" -msgstr "Ingresos previstos" +msgstr "" #. module: crm #: view:crm.lead:0 #: view:crm.lead.report:0 -#: view:crm.meeting:0 #: view:crm.phonecall:0 #: view:crm.phonecall.report:0 msgid "Group By..." -msgstr "Agrupar por..." - -#. module: crm -#: help:crm.lead,partner_id:0 -msgid "Optional linked partner, usually after conversion of the lead" msgstr "" -"Empresa relacionada opcional, normalmente después de la conversión de la " -"iniciativa" #. module: crm -#: view:crm.meeting:0 -msgid "Invitation details" -msgstr "Detalles de la invitación" +#: model:email.template,subject:crm.email_template_opportunity_mail +msgid "${object.name}" +msgstr "" + +#. module: crm +#: view:crm.merge.opportunity:0 +msgid "Merge Leads/Opportunities" +msgstr "" #. module: crm #: field:crm.case.section,parent_id:0 msgid "Parent Team" -msgstr "Equipo padre" +msgstr "" + +#. module: crm +#: selection:crm.lead2opportunity.partner,action:0 +#: selection:crm.lead2opportunity.partner.mass,action:0 +#: selection:crm.partner.binding,action:0 +msgid "Do not link to a customer" +msgstr "" #. module: crm #: field:crm.lead,date_action:0 msgid "Next Action Date" -msgstr "Fecha de la próxima acción" +msgstr "" #. module: crm -#: selection:crm.segmentation,state:0 -msgid "Running" -msgstr "En proceso" +#: help:crm.case.stage,state:0 +msgid "" +"The status of your document will automatically change regarding the selected " +"stage. For example, if a stage is related to the status 'Close', when your " +"document reaches this stage, it is automatically closed." +msgstr "" #. module: crm -#: selection:crm.meeting,freq:0 -msgid "Hours" -msgstr "Horas" - -#. module: crm -#: field:crm.lead,zip:0 -msgid "Zip" -msgstr "Código postal" - -#. module: crm -#: code:addons/crm/crm_lead.py:213 -#, python-format -msgid "The case '%s' has been opened." -msgstr "El caso '%s' ha sido abierto" - -#. module: crm -#: view:crm.installer:0 -msgid "title" -msgstr "título" +#: view:crm.lead2opportunity.partner.mass:0 +msgid "Assign opportunities to" +msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_phone1 -#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_incoming0 -#: model:ir.ui.menu,name:crm.menu_crm_case_phone_inbound msgid "Inbound" -msgstr "Entrante" - -#. module: crm -#: help:crm.case.stage,probability:0 -msgid "" -"This percentage depicts the default/average probability of the Case for this " -"stage to be a success" msgstr "" -"Este porcentaje representa la probabilidad por defecto / media para que los " -"casos de esta etapa sean un éxito." #. module: crm #: view:crm.phonecall.report:0 -#: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_phonecall_new -msgid "Phone calls" -msgstr "Llamadas telefónicas" +msgid "Month of call" +msgstr "" #. module: crm #: view:crm.lead:0 -msgid "Communication History" -msgstr "Historial de comunicaciones" +msgid "Describe the lead..." +msgstr "" #. module: crm -#: selection:crm.meeting,show_as:0 -msgid "Free" -msgstr "Libre" +#: code:addons/crm/crm_phonecall.py:290 +#, python-format +msgid "Partner has been created." +msgstr "" #. module: crm -#: view:crm.installer:0 -msgid "Synchronization" -msgstr "Sincronización" +#: field:sale.config.settings,module_crm_claim:0 +msgid "Manage Customer Claims" +msgstr "" #. module: crm -#: field:crm.case.section,allow_unlink:0 -msgid "Allow Delete" -msgstr "Permitir eliminar" +#: model:ir.actions.act_window,help:crm.action_report_crm_lead +msgid "" +"Leads Analysis allows you to check different CRM related information like " +"the treatment delays or number of leads per state. You can sort out your " +"leads analysis by different groups to get accurate grained analysis." +msgstr "" #. module: crm -#: field:crm.meeting,mo:0 -msgid "Mon" -msgstr "Lun" +#: model:crm.case.categ,name:crm.categ_oppor3 +msgid "Services" +msgstr "" #. module: crm #: selection:crm.lead,priority:0 @@ -1992,162 +1643,89 @@ msgstr "Lun" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Highest" -msgstr "Muy alto" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 -msgid "" -"The Inbound Calls tool allows you to log your inbound calls on the fly. Each " -"call you get will appear on the partner form to trace every contact you have " -"with a partner. From the phone call form, you can trigger a request for " -"another call, a meeting or an opportunity." msgstr "" -"La herramienta de llamadas entrantes le permite seguir el rastro de sus " -"llamadas entrantes en tiempo real. Cada llamada que reciba, aparecerá en el " -"formulario de la empresa para dejar el rastro de cada contacto que tiene en " -"una empresa. Desde el formulario de llamada telefónica, puede lanzar una " -"solicitud para otra llamada, una reunión o una oportunidad" #. module: crm -#: help:crm.meeting,recurrency:0 -msgid "Recurrent Meeting" -msgstr "Reunión periódica" +#: help:crm.lead.report,creation_year:0 +msgid "Creation year" +msgstr "" #. module: crm #: view:crm.case.section:0 -#: view:crm.lead:0 #: field:crm.lead,description:0 msgid "Notes" -msgstr "Notas" +msgstr "" #. module: crm -#: selection:crm.meeting,freq:0 -msgid "Days" -msgstr "Días" +#: view:crm.opportunity2phonecall:0 +msgid "Call Description" +msgstr "" #. module: crm -#: field:crm.segmentation.line,expr_value:0 -msgid "Value" -msgstr "Valor" - -#. module: crm -#: view:crm.lead:0 -#: view:crm.lead.report:0 -msgid "Opportunity by Categories" -msgstr "Oportunidades por categorías" - -#. module: crm -#: view:crm.lead:0 #: field:crm.lead,partner_name:0 msgid "Customer Name" -msgstr "Nombre del cliente" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_case_categ_meet -msgid "" -"The meeting calendar is shared between the sales teams and fully integrated " -"with other applications such as the employee holidays or the business " -"opportunities. You can also synchronize meetings with your mobile phone " -"using the caldav interface." msgstr "" -"El calendario de reuniones es compartido entre los equipos de ventas e " -"integrado por completo con otras aplicaciones como las vacaciones de " -"empleados o las oportunidades de negocio. Puede sincronizar reuniones con su " -"teléfono móvil utilizando el interfaz caldav." - -#. module: crm -#: model:ir.model,name:crm.model_crm_phonecall2opportunity -msgid "Phonecall To Opportunity" -msgstr "Llamada telefónica a oportunidad" #. module: crm #: field:crm.case.section,reply_to:0 msgid "Reply-To" -msgstr "Responder a" +msgstr "" #. module: crm -#: view:crm.case.section:0 -msgid "Select Stages for this Sales Team" -msgstr "Seleccionar etapas para este equipo de ventas" +#: view:crm.lead:0 +msgid "Display" +msgstr "" #. module: crm #: view:board.board:0 msgid "Opportunities by Stage" -msgstr "Oportunidades por etapa" - -#. module: crm -#: view:crm.meeting:0 -msgid "Recurrency Option" -msgstr "Opción de recurrencia" +msgstr "" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 msgid "Prospect is converting to business partner" -msgstr "El prospecto se convierte a partner" +msgstr "" #. module: crm -#: view:crm.lead2opportunity:0 -#: view:crm.partner2opportunity:0 -#: model:ir.actions.act_window,name:crm.phonecall2opportunity_act -msgid "Convert To Opportunity" -msgstr "Convertir en oportunidad" +#: view:crm.case.channel:0 +#: model:ir.actions.act_window,name:crm.crm_case_channel_action +#: model:ir.model,name:crm.model_crm_case_channel +#: model:ir.ui.menu,name:crm.menu_crm_case_channel +msgid "Channels" +msgstr "" #. module: crm #: view:crm.phonecall:0 +#: selection:crm.phonecall,state:0 #: view:crm.phonecall.report:0 -#: view:res.partner:0 +#: selection:crm.phonecall.report,state:0 msgid "Held" -msgstr "Realizada" - -#. module: crm -#: view:crm.lead:0 -#: view:crm.phonecall:0 -#: view:res.partner:0 -msgid "Reset to Draft" -msgstr "Cambiar a borrador" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Extra Info" -msgstr "Información extra" +msgstr "" #. module: crm -#: view:crm.merge.opportunity:0 -#: model:ir.actions.act_window,name:crm.action_merge_opportunities -#: model:ir.actions.act_window,name:crm.merge_opportunity_act -msgid "Merge Opportunities" -msgstr "Fusionar oportunidades" +#: view:crm.lead:0 +msgid "Fund Raising" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Edit..." +msgstr "" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead5 msgid "Google Adwords" -msgstr "Google Adwords" +msgstr "" #. module: crm -#: model:ir.model,name:crm.model_crm_phonecall -msgid "crm.phonecall" -msgstr "crm.llamadateléfono" - -#. module: crm -#: model:crm.case.resource.type,name:crm.type_lead3 -msgid "Mail Campaign 2" -msgstr "Campaña mail 2" - -#. module: crm -#: view:crm.lead:0 -msgid "Create" -msgstr "Crear" - -#. module: crm -#: view:crm.lead:0 -msgid "Dates" -msgstr "Fechas" - -#. module: crm -#: code:addons/crm/crm.py:492 -#, python-format -msgid "Send" -msgstr "Enviar" +#: view:crm.case.section:0 +msgid "Select Stages for this Sales Team" +msgstr "" #. module: crm #: view:crm.lead:0 @@ -2158,257 +1736,200 @@ msgstr "Enviar" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,priority:0 msgid "Priority" -msgstr "Prioridad" - -#. module: crm -#: field:crm.segmentation,sales_purchase_active:0 -msgid "Use The Sales Purchase Rules" -msgstr "Utiliza las reglas de compra ventas" +msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner msgid "Lead To Opportunity Partner" -msgstr "Iniciativa a Oportunidad" +msgstr "" #. module: crm -#: field:crm.meeting,location:0 -msgid "Location" -msgstr "Ubicación" +#: help:crm.lead,partner_id:0 +msgid "Linked partner (optional). Usually created when converting the lead." +msgstr "" #. module: crm -#: view:crm.lead:0 -msgid "Reply" -msgstr "Responder" +#: field:crm.lead,payment_mode:0 +#: view:crm.payment.mode:0 +#: model:ir.actions.act_window,name:crm.action_crm_payment_mode +msgid "Payment Mode" +msgstr "" #. module: crm -#: selection:crm.meeting,freq:0 -msgid "Weeks" -msgstr "Semanas" +#: model:ir.model,name:crm.model_crm_lead2opportunity_partner_mass +msgid "Mass Lead To Opportunity Partner" +msgstr "" + +#. module: crm +#: view:sale.config.settings:0 +msgid "On Mail Server" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.open_board_statistical_dash +#: model:ir.ui.menu,name:crm.menu_board_statistics_dash +msgid "CRM" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.crm_segmentation_tree-act +#: model:ir.ui.menu,name:crm.menu_crm_segmentation-act +msgid "Contacts Segmentation" +msgstr "" #. module: crm #: model:process.node,note:crm.process_node_meeting0 msgid "Schedule a normal or phone meeting" -msgstr "Programar una reunión normal o telefónica" - -#. module: crm -#: code:addons/crm/crm.py:375 -#, python-format -msgid "Error !" -msgstr "¡Error!" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_meeting_categ_action -msgid "" -"Create different meeting categories to better organize and classify your " -"meetings." msgstr "" -"Cree diferentes categorías de reuniones para organizarlas y clasificarlas " -"mejor." + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead1 +msgid "Telesales" +msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_segmentation_line msgid "Segmentation line" -msgstr "Línea de segmentación" +msgstr "" #. module: crm #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Planned Date" -msgstr "Fecha prevista" - -#. module: crm -#: field:crm.meeting,base_calendar_url:0 -msgid "Caldav URL" -msgstr "URL de caldav" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Expected Revenues" -msgstr "Ingresos esperados" +msgstr "" #. module: crm -#: model:crm.case.resource.type,name:crm.type_lead6 -msgid "Google Adwords 2" -msgstr "Google Adwords 2" +#: view:crm.lead:0 +msgid "Referrer" +msgstr "" #. module: crm #: help:crm.lead,type:0 #: help:crm.lead.report,type:0 msgid "Type is used to separate Leads and Opportunities" -msgstr "El tipo es utilizado para separar iniciativas y oportunidades" - -#. module: crm -#: view:crm.phonecall2partner:0 -msgid "Are you sure you want to create a partner based on this Phonecall ?" msgstr "" -"¿Está seguro que quiere crear una empresa basada en esta llamada telefónica?" #. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "July" -msgstr "Julio" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_case_section_act -msgid "" -"Define a Sales Team to organize your different salesmen or sales departments " -"into separate teams. Each team will work in its own list of opportunities, " -"sales orders, etc. Each user can set a default team in his user preferences. " -"The opportunities and sales order displayed, will automatically be filtered " -"according to his team." msgstr "" -"Defina un equipo de ventas para organizar a sus diferentes vendedores o " -"departamentos de ventas en equipos separados. Cada equipo trabajará en su " -"propia lista de oportunidades, pedidos de venta, etc. Cada usuario puede " -"configurar un equipo predeterminado en sus preferencias de usuario. Las " -"oportunidades y pedidos de venta mostrados se filtrarán automáticamente de " -"acuerdo a su equipo." #. module: crm -#: help:crm.meeting,count:0 -msgid "Repeat x times" -msgstr "Repetir x veces" +#: view:crm.lead:0 +msgid "Lead / Customer" +msgstr "" + +#. module: crm +#: model:crm.case.section,name:crm.crm_case_section_2 +msgid "Support Department" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +msgid "Show only lead" +msgstr "" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act #: model:ir.model,name:crm.model_crm_case_section #: model:ir.ui.menu,name:crm.menu_crm_case_section_act msgid "Sales Teams" -msgstr "Equipos de ventas" +msgstr "" #. module: crm -#: model:ir.model,name:crm.model_crm_lead2partner -msgid "Lead to Partner" -msgstr "Inicaitiva a cliente" - -#. module: crm -#: view:crm.segmentation:0 -#: field:crm.segmentation.line,segmentation_id:0 -#: model:ir.actions.act_window,name:crm.crm_segmentation-act -msgid "Segmentation" -msgstr "Segmentación" +#: field:crm.case.stage,case_default:0 +msgid "Default to New Sales Team" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Team" -msgstr "Equipo" - -#. module: crm -#: field:crm.installer,outlook:0 -msgid "MS-Outlook" -msgstr "MS-Outlook" - -#. module: crm -#: view:crm.phonecall:0 -#: view:crm.phonecall.report:0 -#: view:res.partner:0 -msgid "Not Held" -msgstr "Pendiente" - -#. module: crm -#: field:crm.lead.report,probability:0 -msgid "Probability" -msgstr "Probabilidad" +msgstr "" #. module: crm #: view:crm.lead.report:0 -#: field:crm.lead.report,month:0 -#: field:crm.meeting,month_list:0 -#: view:crm.phonecall.report:0 -#: field:crm.phonecall.report,month:0 -msgid "Month" -msgstr "Mes" - -#. module: crm -#: view:crm.lead:0 -#: model:ir.actions.act_window,name:crm.crm_case_category_act_leads_all -#: model:ir.ui.menu,name:crm.menu_crm_case_categ0_act_leads -#: model:process.node,name:crm.process_node_leads0 -msgid "Leads" -msgstr "Iniciativas" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all -msgid "" -"Leads allow you to manage and keep track of all initial contacts with a " -"prospect or partner showing interest in your products or services. A lead is " -"usually the first step in your sales cycle. Once qualified, a lead may be " -"converted into a business opportunity, while creating the related partner " -"for further detailed tracking of any linked activities. You can import a " -"database of prospects, keep track of your business cards or integrate your " -"website's contact form with the OpenERP Leads. Leads can be connected to the " -"email gateway: new emails may create leads, each of them automatically gets " -"the history of the conversation with the prospect." +msgid "Leads/Opportunities which are in New state" msgstr "" -"Las iniciativas le permiten gestionar y realizar un seguimiento de todos los " -"contactos iniciales con un cliente potencial o socio que muestre interés en " -"sus productos o servicios. Una iniciativa es generalmente el primer paso en " -"su ciclo de ventas. Una vez identificada, una iniciativa se puede convertir " -"en una oportunidad de negocio, creándose el socio correspondiente para el " -"seguimiento detallado de cualquier actividad relacionada. Usted puede " -"importar una base de datos de posibles clientes, realizar el seguimiento de " -"sus tarjetas de visita o integrar el formulario de contacto de su sitio web " -"con las iniciativas de OpenERP. Las iniciativas pueden ser conectadas a una " -"pasarela de correo electrónico: los nuevos correos crearán nuevas " -"iniciativas y cada una de ellas obtendrá automáticamente el historial de la " -"conversación con el cliente potencial." - -#. module: crm -#: selection:crm.lead2opportunity.partner,action:0 -#: selection:crm.lead2partner,action:0 -#: selection:crm.phonecall2partner,action:0 -msgid "Create a new partner" -msgstr "Crear una nueva empresa" - -#. module: crm -#: view:crm.meeting:0 -#: view:res.partner:0 -msgid "Start Date" -msgstr "Fecha inicio" #. module: crm #: selection:crm.phonecall,state:0 #: view:crm.phonecall.report:0 -msgid "Todo" -msgstr "Por hacer" - -#. module: crm -#: view:crm.meeting:0 -msgid "Delegate" -msgstr "Delegar" - -#. module: crm -#: view:crm.meeting:0 -msgid "Decline" -msgstr "Rechazar" - -#. module: crm -#: help:crm.lead,optin:0 -msgid "If opt-in is checked, this contact has accepted to receive emails." +msgid "Not Held" msgstr "" -"Si opt-in está marcado, este contacto ha aceptado recibir correos " -"electrónicos." #. module: crm -#: view:crm.meeting:0 -msgid "Reset to Unconfirmed" -msgstr "Restablecer a no confirmado" +#: field:crm.lead.report,probability:0 +msgid "Probability" +msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_add_note.py:40 -#: view:crm.add.note:0 +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +#: field:crm.phonecall.report,month:0 +msgid "Month" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +#: model:ir.actions.act_window,name:crm.crm_case_category_act_leads_all +#: model:ir.ui.menu,name:crm.menu_crm_leads +#: model:process.node,name:crm.process_node_leads0 +msgid "Leads" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:563 #, python-format -msgid "Note" -msgstr "Nota" +msgid "Merged leads" +msgstr "" #. module: crm -#: constraint:res.users:0 -msgid "The chosen company is not in the allowed companies for this user" +#: model:crm.case.categ,name:crm.categ_oppor5 +msgid "Design" +msgstr "" + +#. module: crm +#: selection:crm.lead2opportunity.partner,name:0 +#: selection:crm.lead2opportunity.partner.mass,name:0 +msgid "Merge with existing opportunities" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +#: selection:crm.phonecall.report,state:0 +msgid "Todo" +msgstr "" + +#. module: crm +#: model:mail.message.subtype,name:crm.mt_lead_convert_to_opportunity +#: model:mail.message.subtype,name:crm.mt_salesteam_lead_opportunity +msgid "Lead to Opportunity" +msgstr "" + +#. module: crm +#: field:crm.lead,user_email:0 +msgid "User Email" +msgstr "" + +#. module: crm +#: help:crm.lead,partner_name:0 +msgid "" +"The name of the future partner company that will be created while converting " +"the lead into opportunity" +msgstr "" + +#. module: crm +#: field:crm.opportunity2phonecall,note:0 +#: field:crm.phonecall2phonecall,note:0 +msgid "Note" msgstr "" -"La compañía seleccionada no está en las compañías permitidas para este " -"usuario" #. module: crm #: selection:crm.lead,priority:0 @@ -2416,561 +1937,319 @@ msgstr "" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Low" -msgstr "Bajo" +msgstr "" #. module: crm -#: selection:crm.add.note,state:0 +#: selection:crm.case.stage,state:0 #: field:crm.lead,date_closed:0 #: selection:crm.lead,state:0 #: view:crm.lead.report:0 #: selection:crm.lead.report,state:0 -#: field:crm.meeting,date_closed:0 -#: selection:crm.merge.opportunity,state:0 #: field:crm.phonecall,date_closed:0 -#: selection:crm.phonecall.report,state:0 -#: selection:crm.send.mail,state:0 msgid "Closed" -msgstr "Cerrado" +msgstr "" #. module: crm -#: view:crm.installer:0 -msgid "Plug-In" -msgstr "Conector" - -#. module: crm -#: model:crm.case.categ,name:crm.categ_meet2 -msgid "Internal Meeting" -msgstr "Reunión interna" - -#. module: crm -#: code:addons/crm/crm.py:411 -#: selection:crm.add.note,state:0 #: view:crm.lead:0 +msgid "Open Opportunities" +msgstr "" + +#. module: crm +#: model:crm.case.resource.type,name:crm.type_lead2 +msgid "Email Campaign - Services" +msgstr "" + +#. module: crm +#: selection:crm.case.stage,state:0 #: selection:crm.lead,state:0 #: view:crm.lead.report:0 #: selection:crm.lead.report,state:0 -#: selection:crm.merge.opportunity,state:0 -#: selection:crm.phonecall,state:0 #: selection:crm.phonecall.report,state:0 -#: selection:crm.send.mail,state:0 -#, python-format msgid "Pending" -msgstr "Pendiente" - -#. module: crm -#: model:crm.case.categ,name:crm.categ_meet1 -msgid "Customer Meeting" -msgstr "Reunión de cliente" +msgstr "" #. module: crm #: view:crm.lead:0 -#: field:crm.lead,email_cc:0 -msgid "Global CC" -msgstr "CC Global" +msgid "Assigned to Me" +msgstr "" #. module: crm +#: model:process.transition,name:crm.process_transition_leadopportunity0 +msgid "Prospect Opportunity" +msgstr "" + +#. module: crm +#: field:crm.lead,email_cc:0 +msgid "Global CC" +msgstr "" + +#. module: crm +#: view:crm.lead:0 #: view:crm.phonecall:0 #: model:ir.actions.act_window,name:crm.crm_case_categ_phone0 #: model:ir.ui.menu,name:crm.menu_crm_case_phone -#: view:res.partner:0 +#: model:ir.ui.menu,name:crm.menu_crm_config_phonecall msgid "Phone Calls" -msgstr "Llamadas telefónicas" +msgstr "" + +#. module: crm +#: view:crm.case.stage:0 +msgid "Stage Search" +msgstr "" #. module: crm #: help:crm.lead.report,delay_open:0 #: help:crm.phonecall.report,delay_open:0 msgid "Number of Days to open the case" -msgstr "Número de días para abrir el caso" +msgstr "" #. module: crm #: field:crm.lead,phone:0 +#: field:crm.opportunity2phonecall,phone:0 +#: view:crm.phonecall:0 #: field:crm.phonecall,partner_phone:0 +#: field:crm.phonecall2phonecall,phone:0 msgid "Phone" -msgstr "Teléfono" +msgstr "" #. module: crm +#: field:crm.case.channel,active:0 #: field:crm.case.section,active:0 #: field:crm.lead,active:0 -#: view:crm.lead.report:0 -#: field:crm.meeting,active:0 #: field:crm.phonecall,active:0 msgid "Active" -msgstr "Activo" - -#. module: crm -#: code:addons/crm/crm_lead.py:306 -#, python-format -msgid "The stage of opportunity '%s' has been changed to '%s'." -msgstr "La fase de la oportunidad '%s' ha cambiado a '%s'." - -#. module: crm -#: code:addons/crm/crm_lead.py:282 -#, python-format -msgid "Changed Stage to: %s" msgstr "" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Mandatory Expression" -msgstr "Expresión obligatoria" - -#. module: crm -#: selection:crm.segmentation.line,expr_operator:0 -msgid ">" -msgstr ">" - -#. module: crm -#: view:crm.meeting:0 -msgid "Uncertain" -msgstr "Incierto" - -#. module: crm -#: field:crm.send.mail,email_cc:0 -msgid "CC" -msgstr "CC" - -#. module: crm -#: view:crm.send.mail:0 -#: model:ir.actions.act_window,name:crm.action_crm_send_mail -msgid "Send Mail" -msgstr "Enviar correo" - -#. module: crm -#: selection:crm.meeting,freq:0 -msgid "Months" -msgstr "Meses" - -#. module: crm -#: help:crm.installer,wiki_sale_faq:0 -msgid "" -"Helps you manage wiki pages for Frequently Asked Questions on Sales " -"Application." msgstr "" -"Le ayuda a organizar páginas wiki para preguntas frecuentes sobre la " -"aplicación de ventas" #. module: crm -#: help:crm.installer,crm_fundraising:0 -msgid "This may help associations in their fundraising process and tracking." +#: selection:crm.lead2opportunity.partner,action:0 +#: selection:crm.lead2opportunity.partner.mass,action:0 +#: selection:crm.partner.binding,action:0 +msgid "Create a new customer" msgstr "" -"Puede ayudar a las asociaciones en su proceso de obtención de fondos y " -"seguimiento." #. module: crm -#: field:crm.lead2opportunity.partner,action:0 -#: field:crm.lead2partner,action:0 -#: field:crm.phonecall2partner,action:0 -msgid "Action" -msgstr "Acción" +#: field:crm.lead.report,deadline_day:0 +msgid "Exp. Closing Day" +msgstr "" #. module: crm -#: field:crm.installer,crm_claim:0 -msgid "Claims" -msgstr "Reclamaciones" +#: model:crm.case.categ,name:crm.categ_oppor2 +msgid "Software" +msgstr "" #. module: crm -#: field:crm.segmentation,som_interval_decrease:0 -msgid "Decrease (0>1)" -msgstr "Disminuir (0>1)" +#: field:crm.case.section,change_responsible:0 +msgid "Reassign Escalated" +msgstr "" #. module: crm -#: view:crm.add.note:0 -#: view:crm.lead:0 -#: view:crm.send.mail:0 -msgid "Attachments" -msgstr "Datos adjuntos" - -#. module: crm -#: selection:crm.meeting,rrule_type:0 -msgid "Weekly" -msgstr "Semanal" - -#. module: crm -#: code:addons/crm/wizard/crm_send_email.py:72 -#: code:addons/crm/wizard/crm_send_email.py:169 -#: code:addons/crm/wizard/crm_send_email.py:270 -#, python-format -msgid "Can not send mail!" -msgstr "¡No se pudo enviar el correo!" +#: view:crm.lead.report:0 +#: model:ir.actions.act_window,name:crm.action_report_crm_opportunity +#: model:ir.ui.menu,name:crm.menu_report_crm_opportunities_tree +msgid "Opportunities Analysis" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Misc" -msgstr "Varios" +msgstr "" #. module: crm -#: model:crm.case.categ,name:crm.categ_oppor8 -#: view:crm.meeting:0 -msgid "Other" -msgstr "Otro" - -#. module: crm -#: view:crm.meeting:0 -#: selection:crm.meeting,state:0 -#: selection:crm.phonecall,state:0 -msgid "Done" -msgstr "Hecho" - -#. module: crm -#: help:crm.meeting,interval:0 -msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Repetir cada (días/semana/mes/año)" - -#. module: crm -#: field:crm.segmentation,som_interval_max:0 -msgid "Max Interval" -msgstr "Intervalo máx" - -#. module: crm -#: view:crm.opportunity2phonecall:0 -msgid "_Schedule Call" -msgstr "_Programar llamada" - -#. module: crm -#: code:addons/crm/crm.py:326 -#: selection:crm.add.note,state:0 #: view:crm.lead:0 -#: selection:crm.lead,state:0 +#: view:crm.lead.report:0 #: selection:crm.lead.report,state:0 -#: selection:crm.merge.opportunity,state:0 -#: view:crm.phonecall:0 -#: selection:crm.phonecall.report,state:0 -#: selection:crm.send.mail,state:0 -#: view:res.partner:0 -#, python-format msgid "Open" -msgstr "Abierto" - -#. module: crm -#: selection:crm.meeting,week_list:0 -msgid "Tuesday" -msgstr "Martes" +msgstr "" #. module: crm +#: view:crm.lead:0 #: field:crm.lead,city:0 msgid "City" -msgstr "Ciudad" - -#. module: crm -#: selection:crm.meeting,show_as:0 -msgid "Busy" -msgstr "Ocupado" - -#. module: crm -#: field:crm.meeting,interval:0 -msgid "Repeat every" -msgstr "Repetir cada" - -#. module: crm -#: field:crm.installer,crm_helpdesk:0 -msgid "Helpdesk" -msgstr "Asistencia/Ayuda" - -#. module: crm -#: field:crm.meeting,recurrency:0 -msgid "Recurrent" -msgstr "Recurrente" - -#. module: crm -#: code:addons/crm/crm.py:397 -#, python-format -msgid "The case '%s' has been cancelled." -msgstr "El caso '%s' ha sido cancelado" - -#. module: crm -#: field:crm.installer,sale_crm:0 -msgid "Opportunity to Quotation" -msgstr "Oportunidad a presupuesto" - -#. module: crm -#: model:ir.model,name:crm.model_crm_send_mail -msgid "Send new email" -msgstr "Enviar nuevo email" - -#. module: crm -#: view:board.board:0 -#: model:ir.actions.act_window,name:crm.act_my_oppor -msgid "My Open Opportunities" -msgstr "Mis oportunidades abiertas" - -#. module: crm -#: model:ir.actions.act_window,name:crm.open_board_statistical_dash -msgid "CRM - Statistics Dashboard" -msgstr "CRM - Tablero de estadísticas" - -#. module: crm -#: help:crm.meeting,rrule:0 -msgid "" -"Defines a rule or repeating pattern for recurring events\n" -"e.g.: Every other month on the last Sunday of the month for 10 occurrences: " -" FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" msgstr "" -"Define una regla o patrón repetitivo para eventos recurrentes.\n" -"Por ejemplo: Para 10 ocurrencias cada último domingo de cada dos meses : " -"FREQ=MONTHLY;INTERVAL=2;COUNT=10;BYDAY=-1SU" #. module: crm -#: field:crm.lead,job_id:0 -msgid "Main Job" -msgstr "Trabajo principal" - -#. module: crm -#: field:base.action.rule,trg_max_history:0 -msgid "Maximum Communication History" -msgstr "Máximo historial de comunicaciones" - -#. module: crm -#: view:crm.lead2opportunity.partner:0 -#: view:crm.lead2partner:0 -msgid "Are you sure you want to create a partner based on this lead ?" -msgstr "¿Está seguro que quiere crear una empresa basada en esta iniciativa?" - -#. module: crm -#: view:crm.meeting:0 -#: field:crm.meeting,categ_id:0 -msgid "Meeting Type" -msgstr "Tipo de reunión" - -#. module: crm -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:314 -#, python-format -msgid "Merge with Existing Opportunity" -msgstr "Fusinar con oportunidad existente" - -#. module: crm -#: help:crm.lead,state:0 -#: help:crm.phonecall,state:0 -msgid "" -"The state is set to 'Draft', when a case is created. " -" \n" -"If the case is in progress the state is set to 'Open'. " -" \n" -"When the case is over, the state is set to 'Done'. " -" \n" -"If the case needs to be reviewed then the state is set to 'Pending'." +#: selection:crm.case.stage,type:0 +msgid "Both" msgstr "" -"El estado se establece a 'Borrador', cuando se crea un caso. " -" \n" -"Si el caso está en progreso el estado se establece a 'Abierto'. " -" \n" -"Cuando el caso se cierra, el estado se establece a 'Realizado'. " -" \n" -"Si el caso necesita ser revisado entonces en estado se establece a " -"'Pendiente'." #. module: crm -#: view:crm.meeting:0 -#: view:res.partner:0 -msgid "End Date" -msgstr "Fecha final" - -#. module: crm -#: selection:crm.meeting,byday:0 -msgid "Third" -msgstr "Tercero" - -#. module: crm -#: help:crm.segmentation,som_interval_max:0 -msgid "" -"The computation is made on all events that occured during this interval, the " -"past X periods." +#: view:crm.phonecall:0 +msgid "Call Done" msgstr "" -"El cálculo se realiza en todos los eventos que ocurran durante este " -"intervalo, los X períodos anteriores." #. module: crm -#: view:board.board:0 -msgid "My Win/Lost Ratio for the Last Year" -msgstr "Mi coeficiente ganado/perdido del año anterior" +#: view:crm.phonecall:0 +#: field:crm.phonecall,user_id:0 +msgid "Responsible" +msgstr "" #. module: crm -#: field:crm.installer,thunderbird:0 -msgid "Thunderbird" -msgstr "Thunderbird" +#: model:crm.case.section,name:crm.crm_case_section_3 +msgid "Direct Marketing" +msgstr "" #. module: crm -#: view:crm.lead.report:0 -msgid "# of Emails" -msgstr "Nº de e-mails" +#: model:crm.case.categ,name:crm.categ_oppor1 +msgid "Product" +msgstr "" + +#. module: crm +#: field:crm.lead.report,creation_year:0 +msgid "Creation Year" +msgstr "" + +#. module: crm +#: view:crm.lead2opportunity.partner.mass:0 +msgid "Conversion Options" +msgstr "" + +#. module: crm +#: view:crm.case.section:0 +msgid "" +"Follow this salesteam to automatically track the events associated to users " +"of this team." +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Address" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Leads that are assigned to any sales teams I am member of" +msgstr "" + +#. module: crm +#: help:crm.case.section,alias_id:0 +msgid "" +"The email address associated with this team. New emails received will " +"automatically create new leads assigned to the team." +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Search Leads" -msgstr "Buscar iniciativas" +msgstr "" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,delay_open:0 msgid "Delay to open" -msgstr "Retraso de apertura" +msgstr "" #. module: crm -#: view:crm.meeting:0 -msgid "Recurrency period" -msgstr "Periodo de recurrencia" +#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0 +#: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound +msgid "Scheduled Calls" +msgstr "" #. module: crm -#: field:crm.meeting,week_list:0 -msgid "Weekday" -msgstr "Día de la semana" +#: field:crm.lead,id:0 +msgid "ID" +msgstr "" #. module: crm -#: view:crm.lead:0 -msgid "Referrer" -msgstr "Referenciado por" - -#. module: crm -#: model:ir.model,name:crm.model_crm_lead2opportunity -msgid "Lead To Opportunity" -msgstr "Iniciativa a opportunidad" +#: help:crm.lead,type_id:0 +msgid "" +"From which campaign (seminar, marketing campaign, mass mailing, ...) did " +"this contact come from?" +msgstr "" #. module: crm #: model:ir.model,name:crm.model_calendar_attendee msgid "Attendee information" -msgstr "Información asistencia" +msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Test" -msgstr "Prueba de segmentación" +msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Continue Process" -msgstr "Continuar el proceso" - -#. module: crm -#: view:crm.installer:0 -msgid "Configure Your CRM Application" -msgstr "Configure su aplicación CRM" - -#. module: crm -#: model:ir.model,name:crm.model_crm_phonecall2partner -msgid "Phonecall to Partner" -msgstr "Llamada telefónica a empresa" - -#. module: crm -#: help:crm.lead,partner_name:0 -msgid "" -"The name of the future partner that will be created while converting the " -"into opportunity" msgstr "" -"El nombre del futuro cliente que se creará cuando se convierta en " -"oportunidad." + +#. module: crm +#: selection:crm.lead2opportunity.partner,name:0 +#: selection:crm.lead2opportunity.partner.mass,name:0 +#: model:ir.actions.act_window,name:crm.action_crm_lead2opportunity_partner +msgid "Convert to opportunity" +msgstr "" #. module: crm #: field:crm.opportunity2phonecall,user_id:0 #: field:crm.phonecall2phonecall,user_id:0 msgid "Assign To" -msgstr "Asignar a" - -#. module: crm -#: field:crm.add.note,state:0 -#: field:crm.send.mail,state:0 -msgid "Set New State To" -msgstr "Establecer nuevo estado a" +msgstr "" #. module: crm #: field:crm.lead,date_action_last:0 -#: field:crm.meeting,date_action_last:0 #: field:crm.phonecall,date_action_last:0 msgid "Last Action" -msgstr "Última acción" +msgstr "" #. module: crm -#: field:crm.meeting,duration:0 #: field:crm.phonecall,duration:0 #: field:crm.phonecall.report,duration:0 msgid "Duration" -msgstr "Duración" +msgstr "" #. module: crm -#: field:crm.send.mail,reply_to:0 -msgid "Reply To" -msgstr "Responder a" +#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0 +msgid "" +"

\n" +" Click to schedule a call \n" +"

\n" +" OpenERP allows you to easily define all the calls to be done\n" +" by your sales team and follow up based on their summary.\n" +"

\n" +" You can use the import feature to massively import a new list " +"of\n" +" prospects to qualify.\n" +"

\n" +" " +msgstr "" #. module: crm -#: view:board.board:0 -#: model:ir.actions.act_window,name:crm.open_board_crm -#: model:ir.ui.menu,name:crm.menu_board_crm -msgid "Sales Dashboard" -msgstr "Tablero de ventas" - -#. module: crm -#: code:addons/crm/wizard/crm_lead_to_partner.py:56 -#, python-format -msgid "A partner is already defined on this lead." -msgstr "Una empresa ya ha sido definida en esta iniciativa." +#: help:crm.case.stage,fold:0 +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 "" #. module: crm #: field:crm.lead.report,nbr:0 #: field:crm.phonecall.report,nbr:0 msgid "# of Cases" -msgstr "# de casos" +msgstr "" #. module: crm -#: help:crm.meeting,section_id:0 #: help:crm.phonecall,section_id:0 msgid "Sales team to which Case belongs to." -msgstr "Equipo de ventas al cual pertence el caso" +msgstr "" #. module: crm -#: selection:crm.meeting,week_list:0 -msgid "Sunday" -msgstr "Domingo" +#: model:crm.case.resource.type,name:crm.type_lead6 +msgid "Banner Ads" +msgstr "" #. module: crm -#: selection:crm.meeting,byday:0 -msgid "Fourth" -msgstr "Cuarto" - -#. module: crm -#: selection:crm.add.note,state:0 -#: selection:crm.merge.opportunity,state:0 -#: selection:crm.send.mail,state:0 -msgid "Unchanged" -msgstr "Sin cambios" - -#. module: crm -#: model:ir.actions.act_window,name:crm.crm_segmentation_tree-act -#: model:ir.ui.menu,name:crm.menu_crm_segmentation-act -msgid "Partners Segmentation" -msgstr "Segmentación de empresas" +#: field:crm.merge.opportunity,opportunity_ids:0 +msgid "Leads/Opportunities" +msgstr "" #. module: crm #: field:crm.lead,fax:0 msgid "Fax" -msgstr "Fax" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11 -msgid "" -"With opportunities you can manage and keep track of your sales pipeline by " -"creating specific customer- or prospect-related sales documents to follow up " -"potential sales. Information such as expected revenue, opportunity stage, " -"expected closing date, communication history and much more can be stored. " -"Opportunities can be connected to the email gateway: new emails may create " -"opportunities, each of them automatically gets the history of the " -"conversation with the customer.\n" -"\n" -"You and your team(s) will be able to plan meetings and phone calls from " -"opportunities, convert them into quotations, manage related documents, track " -"all customer related activities, and much more." msgstr "" -"Con las oportunidades puede gestionar y guardar el registro de su canal de " -"ventas creando documentos específicos de venta por cliente - o potencial " -"cliente - para el seguimiento de sus ventas potenciales. La información " -"sobre ingresos esperados, etapa de la oportunidad, fecha estimada de cierre, " -"histórico de las comunicaciones y muchos otros datos puede ser registrada. " -"Las oportunidades pueden ser conectadas a la pasarela de correo electrónico: " -"nuevos emails pueden crear oportunidades, y cada uno de ellos obtiene " -"automáticamente el historial de la conversación con el cliente." - -#. module: crm -#: view:crm.meeting:0 -msgid "Assignment" -msgstr "Asignación" #. module: crm #: field:crm.lead,company_id:0 @@ -2980,148 +2259,80 @@ msgstr "Asignación" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,company_id:0 msgid "Company" -msgstr "Compañía" +msgstr "" #. module: crm -#: selection:crm.meeting,week_list:0 -msgid "Friday" -msgstr "Viernes" +#: selection:crm.segmentation,state:0 +msgid "Running" +msgstr "" #. module: crm -#: field:crm.meeting,allday:0 -msgid "All Day" -msgstr "Todo el día" +#: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity +msgid "Lead converted into an opportunity" +msgstr "" #. module: crm -#: field:crm.segmentation.line,operator:0 -msgid "Mandatory / Optional" -msgstr "Obligatorio / Opcional" - -#. module: crm -#: model:ir.actions.act_window,name:crm.action_view_attendee_form -#: model:ir.ui.menu,name:crm.menu_attendee_invitations -msgid "Meeting Invitations" -msgstr "Invitaciones a reunión" +#: model:mail.message.subtype,description:crm.mt_lead_won +msgid "Opportunity won" +msgstr "" #. module: crm #: field:crm.case.categ,object_id:0 msgid "Object Name" -msgstr "Nombre del objeto" +msgstr "" #. module: crm -#: help:crm.lead,email_from:0 -msgid "E-mail address of the contact" -msgstr "e-mail del contacto" - -#. module: crm -#: field:crm.lead,referred:0 -msgid "Referred by" -msgstr "Referenciado por" +#: view:crm.phonecall:0 +msgid "Phone Calls Assigned to Me or My Team(s)" +msgstr "" #. module: crm #: view:crm.lead:0 -#: model:ir.model,name:crm.model_crm_add_note -msgid "Add Internal Note" -msgstr "Añadir nota interna" +msgid "Reset" +msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:304 -#, python-format -msgid "The stage of lead '%s' has been changed to '%s'." -msgstr "La etapa de la iniciativa '%s' ha sido cambiada por '%s'" - -#. module: crm -#: selection:crm.meeting,byday:0 -msgid "Last" -msgstr "Último" +#: view:sale.config.settings:0 +msgid "After-Sale Services" +msgstr "" #. module: crm +#: field:crm.case.section,message_ids:0 #: field:crm.lead,message_ids:0 -#: field:crm.meeting,message_ids:0 #: field:crm.phonecall,message_ids:0 msgid "Messages" -msgstr "Mensajes" +msgstr "" #. module: crm -#: help:crm.case.stage,on_change:0 -msgid "Change Probability on next and previous stages." -msgstr "Cambiar probabilidad para las etapas siguientes y anteriores." - -#. module: crm -#: code:addons/crm/crm.py:455 -#: code:addons/crm/crm.py:457 -#: code:addons/crm/crm_action_rule.py:66 -#: code:addons/crm/wizard/crm_send_email.py:141 -#, python-format -msgid "Error!" -msgstr "¡Error!" +#: help:crm.lead,channel_id:0 +msgid "Communication channel (mail, direct, phone, ...)" +msgstr "" #. module: crm #: field:crm.opportunity2phonecall,name:0 #: field:crm.phonecall2phonecall,name:0 msgid "Call summary" -msgstr "Resumen de la llamada" +msgstr "" #. module: crm -#: selection:crm.add.note,state:0 +#: selection:crm.case.stage,state:0 #: selection:crm.lead,state:0 #: selection:crm.lead.report,state:0 -#: selection:crm.meeting,state:0 -#: selection:crm.merge.opportunity,state:0 #: selection:crm.phonecall,state:0 #: selection:crm.phonecall.report,state:0 -#: selection:crm.send.mail,state:0 msgid "Cancelled" -msgstr "Cancelado" +msgstr "" #. module: crm -#: field:crm.add.note,body:0 -msgid "Note Body" -msgstr "Contenido de la nota" - -#. module: crm -#: view:board.board:0 -msgid "My Planned Revenues by Stage" -msgstr "Mis ingresos previstos por etapa" +#: view:crm.lead:0 +msgid "Street..." +msgstr "" #. module: crm #: field:crm.lead.report,date_closed:0 #: field:crm.phonecall.report,date_closed:0 msgid "Close Date" -msgstr "Fecha cierre" - -#. module: crm -#: view:crm.lead.report:0 -#: view:crm.phonecall.report:0 -msgid " Month " -msgstr " Mes " - -#. module: crm -#: view:crm.lead:0 -msgid "Links" -msgstr "Enlaces" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_lead_categ_action -msgid "" -"Create specific categories that fit your company's activities to better " -"classify and analyse your leads and opportunities. Such categories could for " -"instance reflect your product structure or the different types of sales you " -"do." msgstr "" -"Crear categorías específicas que se adapten a las actividades de su compañía " -"para clasificar y analizar mejor sus iniciativas y oportunidades. Estas " -"categorías podrían, por ejemplo, reflejar la estructura de sus productos o " -"de los distintos tipos de ventas que realice." - -#. module: crm -#: help:crm.segmentation,som_interval_decrease:0 -msgid "" -"If the partner has not purchased (or bought) during a period, decrease the " -"state of mind by this factor. It's a multiplication" -msgstr "" -"Si la empresa no ha comprado durante un período, disminuir el grado de " -"satisfacción por este factor. Es una multiplicación." #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_phonecall @@ -3131,164 +2342,135 @@ msgid "" "several criteria and drill down the information, by adding more groups in " "the report." msgstr "" -"Desde este informe, puede analizar el rendimiento de su equipo de ventas " -"basándose en sus llamadas telefónicas. Puede agrupar o filtrar la " -"información de acuerdo a varios criterios y profundizar en la información " -"añadiendo más grupos al informe." #. module: crm -#: view:crm.case.section:0 -msgid "Mailgateway" -msgstr "Pasarela de correo" - -#. module: crm -#: help:crm.lead,user_id:0 -msgid "By Default Salesman is Administrator when create New User" +#: field:crm.case.stage,fold:0 +msgid "Fold by Default" msgstr "" -"Por defecto el vendedor es administrador cuando se crea un nuevo usuario" #. module: crm -#: view:crm.lead.report:0 -msgid "# Mails" -msgstr "Nº de correos" - -#. module: crm -#: code:addons/crm/wizard/crm_phonecall_to_opportunity.py:57 -#, python-format -msgid "Warning" -msgstr "Aviso" +#: field:crm.case.stage,state:0 +msgid "Related Status" +msgstr "" #. module: crm #: field:crm.phonecall,name:0 -#: view:res.partner:0 msgid "Call Summary" -msgstr "Resumen de llamadas" +msgstr "" + +#. module: crm +#: field:crm.lead,color:0 +msgid "Color Index" +msgstr "" #. module: crm #: field:crm.segmentation.line,expr_operator:0 msgid "Operator" -msgstr "Operador" - -#. module: crm -#: model:ir.model,name:crm.model_crm_phonecall2phonecall -msgid "Phonecall To Phonecall" -msgstr "Llamada telefónica a llamada telefónica" +msgstr "" #. module: crm #: view:crm.lead:0 +#: model:ir.actions.act_window,name:crm.opportunity2phonecall_act msgid "Schedule/Log Call" -msgstr "Planificar/Registrar llamada" - -#. module: crm -#: field:crm.installer,fetchmail:0 -msgid "Fetch Emails" -msgstr "Buscar emails" - -#. module: crm -#: selection:crm.meeting,state:0 -msgid "Confirmed" -msgstr "Confirmado" - -#. module: crm -#: help:crm.send.mail,email_cc:0 -msgid "" -"These addresses will receive a copy of this email. To modify the permanent " -"CC list, edit the global CC field of this case" msgstr "" -"Estas direcciones recibirán una copia de este correo electrónico. Para " -"modificar la lista CC permanente, edite el campo CC global de este caso." #. module: crm -#: view:crm.meeting:0 +#: view:crm.merge.opportunity:0 +msgid "Select Leads/Opportunities" +msgstr "" + +#. module: crm +#: selection:crm.phonecall,state:0 +msgid "Confirmed" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_partner_binding +msgid "Handle partner binding or generation in CRM wizards." +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,name:crm.act_oppor_stage_user +msgid "Planned Revenue By User and Stage" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 msgid "Confirm" -msgstr "Confirmar" +msgstr "" #. module: crm -#: field:crm.meeting,su:0 -msgid "Sun" -msgstr "Dom" +#: view:crm.lead:0 +msgid "Unread messages" +msgstr "" #. module: crm #: field:crm.phonecall.report,section_id:0 msgid "Section" -msgstr "Sección" - -#. module: crm -#: view:crm.lead:0 -msgid "Total of Planned Revenue" -msgstr "Total ingresos previstos" - -#. module: crm -#: code:addons/crm/crm.py:375 -#, python-format -msgid "" -"You can not escalate, You are already at the top level regarding your sales-" -"team category." msgstr "" -"No puede escalar, ya está en el nivel más alto en su categoría de equipo de " -"ventas." #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Optional Expression" -msgstr "Expresión opcional" +msgstr "" #. module: crm -#: selection:crm.meeting,select1:0 -msgid "Day of month" -msgstr "Día del mes" +#: field:crm.case.section,message_follower_ids:0 +#: field:crm.lead,message_follower_ids:0 +#: field:crm.phonecall,message_follower_ids:0 +msgid "Followers" +msgstr "" #. module: crm -#: field:crm.lead2opportunity,probability:0 -msgid "Success Rate (%)" -msgstr "Tasa de éxito (%)" +#: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all +msgid "" +"

\n" +" Click to create an unqualified lead.\n" +"

\n" +" Use leads if you need a qualification step before creating an\n" +" opportunity or a customer. It can be a business card you " +"received,\n" +" a contact form filled in your website, or a file of unqualified\n" +" prospects you import, etc.\n" +"

\n" +" Once qualified, the lead can be converted into a business\n" +" opportunity and/or a new customer in your address book.\n" +"

\n" +" " +msgstr "" #. module: crm -#: model:crm.case.stage,name:crm.stage_lead1 -#: model:crm.case.stage,name:crm.stage_opportunity1 -msgid "New" -msgstr "Nuevo" - -#. module: crm -#: view:crm.meeting:0 -msgid "Mail TO" -msgstr "Enviar correo a" +#: field:sale.config.settings,fetchmail_lead:0 +msgid "Create leads from incoming mails" +msgstr "" #. module: crm #: view:crm.lead:0 #: field:crm.lead,email_from:0 -#: field:crm.meeting,email_from:0 #: field:crm.phonecall,email_from:0 msgid "Email" -msgstr "Email" +msgstr "" #. module: crm +#: view:crm.case.channel:0 #: view:crm.lead:0 #: field:crm.lead,channel_id:0 #: view:crm.lead.report:0 #: field:crm.lead.report,channel_id:0 -#: field:crm.phonecall,canal_id:0 msgid "Channel" -msgstr "Canal" - -#. module: crm -#: model:ir.actions.act_window,name:crm.opportunity2phonecall_act -msgid "Schedule Call" -msgstr "Planificar llamada" - -#. module: crm -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:135 -#: code:addons/crm/wizard/crm_lead_to_opportunity.py:260 -#, python-format -msgid "Closed/Cancelled Leads Could not convert into Opportunity" msgstr "" -"Las iniciativas cerradas/canceladas no podrían ser convertidas en " -"oportunidades" #. module: crm -#: view:crm.segmentation:0 -msgid "Profiling" -msgstr "Perfiles" +#: view:crm.opportunity2phonecall:0 +#: view:crm.phonecall2phonecall:0 +msgid "Schedule Call" +msgstr "" + +#. module: crm +#: view:crm.lead.report:0 +#: view:crm.phonecall.report:0 +msgid "My Sales Team(s)" +msgstr "" #. module: crm #: help:crm.segmentation,exclusif:0 @@ -3298,252 +2480,174 @@ msgid "" "If checked, remove the category from partners that doesn't match " "segmentation criterions" msgstr "" -"Marque esta opción si la categoría está limitada a empresas que coincidan " -"con los criterios de segmentación. \n" -"Si está marcada, elimina la categoría de aquellas empresas que no coincidan " -"con los criterios de segmentación." - -#. module: crm -#: field:crm.meeting,exdate:0 -msgid "Exception Date/Times" -msgstr "Fecha/horas excepción" - -#. module: crm -#: selection:crm.meeting,class:0 -msgid "Confidential" -msgstr "Confidencial" - -#. module: crm -#: help:crm.meeting,date_deadline:0 -msgid "" -"Deadline Date is automatically computed from Start " -"Date + Duration" -msgstr "" -"La fecha límite se calcula automáticamente a partir de la fecha inicial + " -"duración." - -#. module: crm -#: field:crm.lead,state_id:0 -msgid "Fed. State" -msgstr "Provincia" #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 msgid "Creating business opportunities from Leads" -msgstr "Creando oportunidades de negocio desde iniciativas" - -#. module: crm -#: help:crm.send.mail,html:0 -msgid "Select this if you want to send email with HTML formatting." -msgstr "Seleccione esta opción si desea enviar emails con formato HTML" - -#. module: crm -#: model:crm.case.categ,name:crm.categ_oppor4 -msgid "Need Information" -msgstr "Necesita información" - -#. module: crm -#: model:process.transition,name:crm.process_transition_leadopportunity0 -msgid "Prospect Opportunity" -msgstr "Oportunidad de prospección" - -#. module: crm -#: view:crm.installer:0 -#: model:ir.actions.act_window,name:crm.action_crm_installer -msgid "CRM Application Configuration" -msgstr "Configuración de la aplicación CRM" - -#. module: crm -#: field:base.action.rule,act_categ_id:0 -msgid "Set Category to" -msgstr "Establecer categoría" - -#. module: crm -#: view:crm.case.section:0 -msgid "Configuration" -msgstr "Configuración" - -#. module: crm -#: field:crm.meeting,th:0 -msgid "Thu" -msgstr "Jue" - -#. module: crm -#: view:crm.add.note:0 -#: view:crm.merge.opportunity:0 -#: view:crm.opportunity2phonecall:0 -#: view:crm.partner2opportunity:0 -#: view:crm.phonecall2opportunity:0 -#: view:crm.phonecall2phonecall:0 -#: view:crm.send.mail:0 -msgid "_Cancel" -msgstr "_Cancelar" - -#. module: crm -#: view:crm.lead.report:0 -#: view:crm.phonecall.report:0 -msgid " Month-1 " -msgstr " Mes-1 " - -#. module: crm -#: help:crm.installer,sale_crm:0 -msgid "This module relates sale from opportunity cases in the CRM." -msgstr "Este módulo relaciona ventas con oportunidades en el CRM." - -#. module: crm -#: selection:crm.meeting,rrule_type:0 -msgid "Daily" -msgstr "Diario" - -#. module: crm -#: model:crm.case.stage,name:crm.stage_lead2 -#: model:crm.case.stage,name:crm.stage_opportunity2 -msgid "Qualification" -msgstr "Calificación" - -#. module: crm -#: view:crm.case.stage:0 -msgid "Stage Definition" -msgstr "Definición de etapa" - -#. module: crm -#: selection:crm.meeting,byday:0 -msgid "First" -msgstr "Primero" - -#. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 -#: selection:crm.phonecall.report,month:0 -msgid "December" -msgstr "Diciembre" - -#. module: crm -#: field:crm.installer,config_logo:0 -msgid "Image" -msgstr "Imagen" - -#. module: crm -#: view:base.action.rule:0 -msgid "Condition on Communication History" -msgstr "Condición en el historial de comunicaciones" - -#. module: crm -#: help:crm.segmentation,som_interval:0 -msgid "" -"A period is the average number of days between two cycle of sale or purchase " -"for this segmentation. \n" -"It's mainly used to detect if a partner has not purchased or buy for a too " -"long time, \n" -"so we suppose that his state of mind has decreased because he probably " -"bought goods to another supplier. \n" -"Use this functionality for recurring businesses." msgstr "" -"Un periodo es el número medio de días entre dos ciclos de ventas o compras " -"para esta segmentación. \n" -"Se utiliza principalmente para detectar si una empresa no ha comprado por un " -"largo periodo de tiempo, \n" -"por lo que suponemos que su grado de satisfacción ha disminuido porqué " -"seguramente compró bienes a otro proveedor. \n" -"Utilice esta funcionalidad para negocios recurrentes." #. module: crm -#: view:crm.send.mail:0 -msgid "_Send Reply" -msgstr "_Enviar respuesta" +#: model:crm.case.resource.type,name:crm.type_lead3 +msgid "Email Campaign - Products" +msgstr "" #. module: crm -#: field:crm.meeting,vtimezone:0 -msgid "Timezone" -msgstr "Zona horaria" +#: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 +msgid "" +"

\n" +" Click to log the summary of a phone call. \n" +"

\n" +" OpenERP allows you to log inbound calls on the fly to track the\n" +" history of the communication with a customer or to inform " +"another\n" +" team member.\n" +"

\n" +" In order to follow up on the call, you can trigger a request " +"for\n" +" another call, a meeting or an opportunity.\n" +"

\n" +" " +msgstr "" #. module: crm -#: field:crm.lead2opportunity.partner,msg:0 -#: field:crm.lead2partner,msg:0 -#: view:crm.send.mail:0 -msgid "Message" -msgstr "Mensaje" +#: model:process.node,note:crm.process_node_leads0 +msgid "Very first contact with new prospect" +msgstr "" #. module: crm -#: field:crm.meeting,sa:0 -msgid "Sat" -msgstr "Sáb" +#: view:res.partner:0 +msgid "Calls" +msgstr "" #. module: crm #: view:crm.lead:0 -#: field:crm.lead,user_id:0 -#: view:crm.lead.report:0 -#: view:crm.phonecall.report:0 -msgid "Salesman" -msgstr "Comercial" +msgid "Cancel Case" +msgstr "" #. module: crm +#: field:crm.case.stage,on_change:0 +msgid "Change Probability Automatically" +msgstr "" + +#. module: crm +#: view:crm.phonecall.report:0 +msgid "My Phone Calls" +msgstr "" + +#. module: crm +#: model:crm.case.stage,name:crm.stage_lead3 +msgid "Qualification" +msgstr "" + +#. module: crm +#: field:crm.lead2opportunity.partner,name:0 +#: field:crm.lead2opportunity.partner.mass,name:0 +msgid "Conversion Action" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_lead_categ_action +msgid "" +"

\n" +" Click to define a new sales tag.\n" +"

\n" +" Create specific tags that fit your company's activities\n" +" to better classify and analyse your leads and " +"opportunities.\n" +" Such categories could for instance reflect your product\n" +" structure or the different types of sales you do.\n" +"

\n" +" " +msgstr "" + +#. module: crm +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 +#: selection:crm.phonecall.report,month:0 +msgid "August" +msgstr "" + +#. module: crm +#: model:mail.message.subtype,name:crm.mt_lead_lost +#: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost +msgid "Opportunity Lost" +msgstr "" + +#. module: crm +#: field:crm.lead.report,deadline_month:0 +msgid "Exp. Closing Month" +msgstr "" + +#. module: crm +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 +#: selection:crm.phonecall.report,month:0 +msgid "December" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +msgid "Date of Call" +msgstr "" + +#. module: crm +#: view:crm.lead:0 #: field:crm.lead,date_deadline:0 msgid "Expected Closing" -msgstr "Cierre previsto" +msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_opportunity2phonecall msgid "Opportunity to Phonecall" -msgstr "Oportunidad a llamada telefónica" +msgstr "" #. module: crm -#: help:crm.case.section,allow_unlink:0 -msgid "Allows to delete non draft cases" -msgstr "Permite eliminar los casos en estado no borrador." +#: view:crm.segmentation:0 +msgid "Sales Purchase" +msgstr "" #. module: crm #: view:crm.lead:0 msgid "Schedule Meeting" -msgstr "Programar reunión" +msgstr "" #. module: crm -#: view:crm.lead:0 -msgid "Partner Name" -msgstr "Nombre empresa" +#: field:crm.lead.report,deadline_year:0 +msgid "Ex. Closing Year" +msgstr "" #. module: crm -#: model:crm.case.categ,name:crm.categ_phone2 -#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0 -#: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound -msgid "Outbound" -msgstr "Saliente" +#: model:ir.actions.client,name:crm.action_client_crm_menu +msgid "Open Sale Menu" +msgstr "" #. module: crm #: field:crm.lead,date_open:0 #: field:crm.phonecall,date_open:0 msgid "Opened" -msgstr "Abierto" +msgstr "" #. module: crm #: view:crm.case.section:0 #: field:crm.case.section,member_ids:0 msgid "Team Members" -msgstr "Miembros del equipo" +msgstr "" #. module: crm -#: view:crm.lead:0 -#: field:crm.lead,job_ids:0 -#: view:crm.meeting:0 -#: view:crm.phonecall:0 -#: view:res.partner:0 -msgid "Contacts" -msgstr "Contactos" +#: view:crm.opportunity2phonecall:0 +#: view:crm.phonecall2phonecall:0 +msgid "Schedule/Log a Call" +msgstr "" #. module: crm -#: model:crm.case.categ,name:crm.categ_oppor1 -msgid "Interest in Computer" -msgstr "Interesado en ordenadores" +#: field:crm.lead,planned_cost:0 +msgid "Planned Costs" +msgstr "" #. module: crm -#: view:crm.meeting:0 -msgid "Invitation Detail" -msgstr "Detalle de la invitación" - -#. module: crm -#: field:crm.segmentation,som_interval_default:0 -msgid "Default (0=None)" -msgstr "Por defecto (0=Ninguno)" +#: help:crm.lead,date_deadline:0 +msgid "Estimate of the date on which the opportunity will be won." +msgstr "" #. module: crm #: help:crm.lead,email_cc:0 @@ -3552,83 +2656,41 @@ msgid "" "outbound emails for this record before being sent. Separate multiple email " "addresses with a comma" msgstr "" -"Estas direcciones de correo serán añadidas al campo CC para todos los " -"correos entrantes y salientes de este registro antes de ser enviados. Separe " -"las diferentes direcciones de correo con una coma." #. module: crm -#: constraint:res.partner:0 -msgid "Error ! You can not create recursive associated members." -msgstr "¡Error! No puede crear miembros asociados recursivos." +#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_incoming0 +#: model:ir.ui.menu,name:crm.menu_crm_case_phone_inbound +msgid "Logged Calls" +msgstr "" #. module: crm -#: field:crm.partner2opportunity,probability:0 -#: field:crm.phonecall2opportunity,probability:0 -msgid "Success Probability" -msgstr "Probabilidad de éxito" - -#. module: crm -#: code:addons/crm/crm.py:426 -#: selection:crm.add.note,state:0 -#: selection:crm.lead,state:0 -#: selection:crm.lead.report,state:0 -#: selection:crm.merge.opportunity,state:0 -#: selection:crm.phonecall,state:0 -#: selection:crm.phonecall.report,state:0 -#: selection:crm.send.mail,state:0 -#, python-format -msgid "Draft" -msgstr "Borrador" +#: model:mail.message.subtype,name:crm.mt_lead_won +#: model:mail.message.subtype,name:crm.mt_salesteam_lead_won +msgid "Opportunity Won" +msgstr "" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree msgid "Cases by Sales Team" -msgstr "Casos por equipo de ventas" +msgstr "" #. module: crm -#: field:crm.meeting,attendee_ids:0 -msgid "Attendees" -msgstr "Asistentes" - -#. module: crm -#: view:crm.meeting:0 +#: view:crm.lead:0 #: view:crm.phonecall:0 #: model:ir.model,name:crm.model_crm_meeting #: model:process.node,name:crm.process_node_meeting0 -#: model:res.request.link,name:crm.request_link_meeting msgid "Meeting" -msgstr "Reunión" +msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_case_categ msgid "Category of Case" -msgstr "Categoría de caso" - -#. module: crm -#: view:crm.lead:0 -#: view:crm.phonecall:0 -msgid "7 Days" -msgstr "7 días" +msgstr "" #. module: crm #: view:board.board:0 msgid "Planned Revenue by Stage and User" -msgstr "Ingresos previsto por etapa y usuario" - -#. module: crm -#: view:crm.lead:0 -msgid "Communication & History" -msgstr "Comunicación e Historial" - -#. module: crm -#: model:ir.model,name:crm.model_crm_lead_report -msgid "CRM Lead Report" -msgstr "Informe de iniciativas CRM" - -#. module: crm -#: field:crm.installer,progress:0 -msgid "Configuration Progress" -msgstr "Progreso de la configuración" +msgstr "" #. module: crm #: selection:crm.lead,priority:0 @@ -3636,217 +2698,154 @@ msgstr "Progreso de la configuración" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Normal" -msgstr "Normal" +msgstr "" #. module: crm #: field:crm.lead,street2:0 msgid "Street2" -msgstr "Calle2" +msgstr "" #. module: crm -#: model:ir.actions.act_window,name:crm.crm_meeting_categ_action -#: model:ir.ui.menu,name:crm.menu_crm_case_meeting-act -msgid "Meeting Categories" -msgstr "Categorías de reuniones" - -#. module: crm -#: view:crm.lead2opportunity.partner:0 -#: view:crm.lead2partner:0 -#: view:crm.phonecall2partner:0 -msgid "You may have to verify that this partner does not exist already." -msgstr "Debería verificar que esta empresa no exista ya." +#: field:sale.config.settings,module_crm_helpdesk:0 +msgid "Manage Helpdesk and Support" +msgstr "" #. module: crm #: field:crm.lead.report,delay_open:0 msgid "Delay to Open" -msgstr "Retraso de apertura" +msgstr "" #. module: crm #: field:crm.lead.report,user_id:0 #: field:crm.phonecall.report,user_id:0 msgid "User" -msgstr "Usuario" +msgstr "" #. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "November" -msgstr "Noviembre" - -#. module: crm -#: code:addons/crm/crm_action_rule.py:67 -#, python-format -msgid "No E-Mail ID Found for your Company address!" -msgstr "¡No se ha encontrado Email en la dirección de su compañía!" +msgstr "" #. module: crm #: view:crm.lead.report:0 +#: model:ir.actions.act_window,name:crm.act_opportunity_stage msgid "Opportunities By Stage" -msgstr "Oportunidades por etapa" +msgstr "" #. module: crm -#: model:ir.actions.act_window,name:crm.crm_case_categ_phone_create_partner -msgid "Schedule Phone Call" -msgstr "Planificar llamada telefónica" - -#. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "January" -msgstr "Enero" - -#. module: crm -#: model:ir.actions.act_window,help:crm.crm_opportunity_stage_act -msgid "" -"Create specific stages that will help your sales better organise their sales " -"pipeline by maintaining them to their sales opportunities. It will allow " -"them to easily track how is positioned a specific opportunity in the sales " -"cycle." msgstr "" -"Crear pasos específicos que ayudarán a su departamento de ventas a organizar " -"mejor el flujo de venta gestionando sus oportunidades de venta. Esto les " -"permitirá seguir fácilmente como está posicionada una oportunidad en el " -"ciclo de ventas." #. module: crm #: model:process.process,name:crm.process_process_contractprocess0 msgid "Contract" -msgstr "Contrato" +msgstr "" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead4 msgid "Twitter Ads" -msgstr "Anuncios Twiter" +msgstr "" #. module: crm -#: code:addons/crm/wizard/crm_add_note.py:26 -#: code:addons/crm/wizard/crm_send_email.py:72 -#: code:addons/crm/wizard/crm_send_email.py:169 -#: code:addons/crm/wizard/crm_send_email.py:270 -#, python-format -msgid "Error" -msgstr "Error" +#: field:crm.lead.report,creation_day:0 +msgid "Creation Day" +msgstr "" #. module: crm #: view:crm.lead.report:0 msgid "Planned Revenues" -msgstr "Ingresos esperados" +msgstr "" #. module: crm -#: model:crm.case.categ,name:crm.categ_oppor7 -msgid "Need Consulting" -msgstr "Necesita consultoría" - -#. module: crm -#: constraint:crm.segmentation:0 -msgid "Error ! You can not create recursive profiles." -msgstr "¡Error! No se puede crear perfiles recursivos." - -#. module: crm -#: code:addons/crm/crm_lead.py:232 -#, python-format -msgid "The case '%s' has been closed." -msgstr "El caso '%s' ha sido cerrado" - -#. module: crm -#: field:crm.lead,partner_address_id:0 -#: field:crm.meeting,partner_address_id:0 -#: field:crm.phonecall,partner_address_id:0 -msgid "Partner Contact" -msgstr "Contacto empresa" - -#. module: crm -#: field:crm.meeting,recurrent_id:0 -msgid "Recurrent ID date" -msgstr "ID fecha recurrente" - -#. module: crm -#: sql_constraint:res.users:0 -msgid "You can not have two users with the same login !" -msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" - -#. module: crm -#: code:addons/crm/wizard/crm_merge_opportunities.py:100 -#, python-format -msgid "Merged into Opportunity: %s" -msgstr "Fusionado con la oportunidad '%s'" - -#. module: crm -#: code:addons/crm/crm.py:347 -#: view:crm.lead:0 -#: view:res.partner:0 -#, python-format -msgid "Close" -msgstr "Cerrado" +#: help:crm.lead.report,deadline_year:0 +msgid "Expected closing year" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "e.g. Call for proposal" +msgstr "" + +#. module: crm +#: model:ir.model,name:crm.model_crm_case_stage +msgid "Stage of case" +msgstr "" + +#. module: crm +#: code:addons/crm/crm_lead.py:569 +#, python-format +msgid "Merged opportunity" +msgstr "" + +#. module: crm +#: view:crm.lead:0 +msgid "Unassigned" +msgstr "" + +#. module: crm +#: selection:crm.opportunity2phonecall,action:0 +#: selection:crm.phonecall2phonecall,action:0 +msgid "Schedule a call" +msgstr "" #. module: crm #: view:crm.lead:0 -#: view:crm.phonecall:0 -#: view:res.partner:0 msgid "Categorization" -msgstr "Categorización" +msgstr "" #. module: crm -#: model:ir.model,name:crm.model_base_action_rule -msgid "Action Rules" -msgstr "Reglas de acciones" +#: view:crm.phonecall2phonecall:0 +msgid "Log Call" +msgstr "" #. module: crm -#: field:crm.meeting,rrule_type:0 -msgid "Recurrency" -msgstr "Recurrencia" +#: help:sale.config.settings,group_fund_raising:0 +msgid "Allows you to trace and manage your activities for fund raising." +msgstr "" #. module: crm #: field:crm.meeting,phonecall_id:0 +#: model:ir.model,name:crm.model_crm_phonecall msgid "Phonecall" -msgstr "Llamada telefónica" +msgstr "" #. module: crm -#: selection:crm.meeting,week_list:0 -msgid "Thursday" -msgstr "Jueves" +#: view:crm.phonecall.report:0 +msgid "Phone calls that are assigned to one of the sale teams I manage" +msgstr "" #. module: crm -#: view:crm.meeting:0 -#: field:crm.send.mail,email_to:0 -msgid "To" -msgstr "Para" +#: view:crm.lead:0 +msgid "at" +msgstr "" #. module: crm -#: selection:crm.meeting,class:0 -msgid "Private" -msgstr "Privado" +#: model:crm.case.stage,name:crm.stage_lead1 +#: selection:crm.case.stage,state:0 +#: view:crm.lead:0 +#: selection:crm.lead,state:0 +#: view:crm.lead.report:0 +msgid "New" +msgstr "" #. module: crm #: field:crm.lead,function:0 msgid "Function" -msgstr "Función" - -#. module: crm -#: view:crm.add.note:0 -msgid "_Add" -msgstr "_Añadir" - -#. module: crm -#: selection:crm.segmentation.line,expr_name:0 -msgid "State of Mind" -msgstr "Grado de satisfacción" +msgstr "" #. module: crm #: field:crm.case.section,note:0 -#: view:crm.meeting:0 -#: field:crm.meeting,description:0 -#: view:crm.phonecall:0 #: field:crm.phonecall,description:0 #: field:crm.segmentation,description:0 -#: view:res.partner:0 msgid "Description" -msgstr "Descripción" +msgstr "" #. module: crm -#: field:base.action.rule,trg_section_id:0 #: field:crm.case.categ,section_id:0 #: field:crm.case.resource.type,section_id:0 #: view:crm.case.section:0 @@ -3854,790 +2853,210 @@ msgstr "Descripción" #: field:crm.lead,section_id:0 #: view:crm.lead.report:0 #: field:crm.lead.report,section_id:0 -#: field:crm.meeting,section_id:0 +#: field:crm.lead2opportunity.partner.mass,section_id:0 #: field:crm.opportunity2phonecall,section_id:0 +#: field:crm.payment.mode,section_id:0 #: view:crm.phonecall:0 #: field:crm.phonecall,section_id:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall2phonecall,section_id:0 #: field:res.partner,section_id:0 -#: field:res.users,context_section_id:0 msgid "Sales Team" -msgstr "Equipo de ventas" +msgstr "" #. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "May" -msgstr "Mayo" +msgstr "" #. module: crm -#: model:crm.case.categ,name:crm.categ_oppor2 -msgid "Interest in Accessories" -msgstr "Interesado en accesorios" +#: model:ir.actions.act_window,help:crm.crm_case_channel_action +msgid "" +"

\n" +" Click to define a new channel.\n" +"

\n" +" Use channels to track the soure of your leads and " +"opportunities. Channels\n" +" are mostly used in reporting to analyse sales performance\n" +" related to marketing efforts.\n" +"

\n" +" Some examples of channels: company website, phone call\n" +" campaign, reseller, etc.\n" +"

\n" +" " +msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:211 -#, python-format -msgid "The opportunity '%s' has been opened." -msgstr "La oportunidad '%s' ha sido abierta" +#: view:crm.lead:0 +msgid "Internal Notes" +msgstr "" #. module: crm -#: field:crm.lead.report,email:0 -msgid "# Emails" -msgstr "Nº de emails" +#: view:crm.lead:0 +msgid "New Opportunities" +msgstr "" + +#. module: crm +#: field:crm.segmentation.line,operator:0 +msgid "Mandatory / Optional" +msgstr "" #. module: crm #: field:crm.lead,street:0 msgid "Street" -msgstr "Calle" +msgstr "" #. module: crm -#: view:crm.lead.report:0 -msgid "Opportunities by User and Team" -msgstr "Oportunidades por usuario y equipo" +#: field:crm.lead,referred:0 +msgid "Referred By" +msgstr "" + +#. module: crm +#: view:crm.phonecall:0 +msgid "Reset to Todo" +msgstr "" #. module: crm #: field:crm.case.section,working_hours:0 msgid "Working Hours" -msgstr "Horario de trabajo" +msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:968 #: view:crm.lead:0 -#: field:crm.lead,is_customer_add:0 +#: field:crm.lead2opportunity.partner,partner_id:0 +#: field:crm.lead2opportunity.partner.mass,partner_id:0 +#: field:crm.partner.binding,partner_id:0 +#, python-format msgid "Customer" -msgstr "Cliente" +msgstr "" #. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "February" -msgstr "Febrero" +msgstr "" #. module: crm #: view:crm.phonecall:0 -#: model:ir.actions.act_window,name:crm.crm_case_categ_meet_create_partner -#: view:res.partner:0 msgid "Schedule a Meeting" -msgstr "Planificar una reunión" +msgstr "" #. module: crm -#: model:crm.case.stage,name:crm.stage_lead6 -#: model:crm.case.stage,name:crm.stage_opportunity6 +#: model:crm.case.stage,name:crm.stage_lead8 #: view:crm.lead:0 msgid "Lost" -msgstr "Perdido" +msgstr "" #. module: crm +#: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 +#, python-format +msgid "Closed/Cancelled leads cannot be converted into opportunities." +msgstr "" + +#. module: crm +#: view:crm.lead:0 #: field:crm.lead,country_id:0 #: view:crm.lead.report:0 #: field:crm.lead.report,country_id:0 msgid "Country" -msgstr "País" +msgstr "" #. module: crm #: view:crm.lead:0 -#: selection:crm.lead2opportunity.action,name:0 +#: view:crm.lead2opportunity.partner:0 +#: view:crm.lead2opportunity.partner.mass:0 #: view:crm.phonecall:0 -#: view:res.partner:0 msgid "Convert to Opportunity" -msgstr "Convertir a oportunidad" +msgstr "" #. module: crm -#: selection:crm.meeting,week_list:0 -msgid "Wednesday" -msgstr "Miércoles" +#: help:crm.phonecall,email_from:0 +msgid "These people will receive email." +msgstr "" #. module: crm -#: selection:crm.lead.report,month:0 -#: selection:crm.meeting,month_list:0 +#: selection:crm.lead.report,creation_month:0 +#: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "April" -msgstr "Abril" +msgstr "" #. module: crm #: field:crm.case.resource.type,name:0 msgid "Campaign Name" -msgstr "Nombre de la campaña" +msgstr "" + +#. module: crm +#: view:crm.segmentation:0 +msgid "Profiling" +msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall_report msgid "Phone calls by user and section" -msgstr "Llamadas telefónicas por usuario y sección" +msgstr "" #. module: crm -#: selection:crm.lead2opportunity.action,name:0 -msgid "Merge with existing Opportunity" -msgstr "Fusionado con oportunidad existente" - -#. module: crm -#: field:crm.meeting,select1:0 -msgid "Option" -msgstr "Opción" - -#. module: crm -#: model:crm.case.stage,name:crm.stage_lead4 -#: model:crm.case.stage,name:crm.stage_opportunity4 +#: model:crm.case.stage,name:crm.stage_lead5 msgid "Negotiation" -msgstr "Negociación" +msgstr "" #. module: crm -#: view:crm.lead:0 -msgid "Exp.Closing" -msgstr "Cierre previsto" +#: model:ir.model,name:crm.model_crm_phonecall2phonecall +msgid "Phonecall To Phonecall" +msgstr "" #. module: crm #: field:crm.case.stage,sequence:0 -#: field:crm.meeting,sequence:0 msgid "Sequence" -msgstr "Secuencia" - -#. module: crm -#: field:crm.send.mail,body:0 -msgid "Message Body" -msgstr "Cuerpo del mensaje" - -#. module: crm -#: view:crm.meeting:0 -msgid "Accept" -msgstr "Aceptar" +msgstr "" #. module: crm #: field:crm.segmentation.line,expr_name:0 msgid "Control Variable" -msgstr "Variable de control" +msgstr "" #. module: crm -#: selection:crm.meeting,byday:0 -msgid "Second" -msgstr "Segundo" - -#. module: crm -#: model:crm.case.stage,name:crm.stage_lead3 -#: model:crm.case.stage,name:crm.stage_opportunity3 +#: model:crm.case.stage,name:crm.stage_lead4 msgid "Proposition" -msgstr "Propuesta" +msgstr "" #. module: crm +#: view:crm.phonecall:0 #: field:res.partner,phonecall_ids:0 msgid "Phonecalls" -msgstr "Llamadas telefónicas" +msgstr "" #. module: crm #: view:crm.lead.report:0 -#: field:crm.lead.report,name:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,name:0 msgid "Year" -msgstr "Año" +msgstr "" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead8 msgid "Newsletter" -msgstr "Boletín de noticias" - -#~ msgid "Status" -#~ msgstr "Estado" - -#, python-format -#~ msgid "" -#~ "You can not escalate this case.\n" -#~ "You are already at the top level." -#~ msgstr "" -#~ "No puede intensificar este caso.\n" -#~ "Ya se encuentra en el nivel superior." - -#~ msgid "Delay After Trigger Date:" -#~ msgstr "Demora después fecha del disparo:" - -#~ msgid "My Draft " -#~ msgstr "Mis borradores " - -#~ msgid "Add Last Mail for Replying" -#~ msgstr "Añadir último mail para responder" - -#~ msgid "All Cases" -#~ msgstr "Todos los casos" - -#~ msgid "Remind Partner" -#~ msgstr "Recordar empresa" - -#~ msgid "Update The Proposed Menus To Be Created" -#~ msgstr "Actualizar los menús propuestos a crear" - -#~ msgid "Base Information" -#~ msgstr "Información base" - -#~ msgid "All Open " -#~ msgstr "Todos los abiertos " - -#~ msgid "Create menus for a case section" -#~ msgstr "Crear menús para una sección de casos" - -#~ msgid "Template of Email to Send" -#~ msgstr "Plantilla de Email a enviar" - -#~ msgid "CRM & SRM" -#~ msgstr "CRM & SRM" - -#~ msgid "%(case_user)s = Responsible name" -#~ msgstr "%(case_user)s = Nombre del responsable" - -#~ msgid "Add watchers (Cc)" -#~ msgstr "Añadir observadores (CC)" - -#~ msgid "My " -#~ msgstr "Mis " - -#~ msgid "Cases" -#~ msgstr "Casos" - -#~ msgid "Watchers Emails" -#~ msgstr "Observadores emails (CC)" - -#~ msgid "Create menu Entries" -#~ msgstr "Crear entradas de menús" - -#~ msgid "Case history" -#~ msgstr "Historial del caso" - -#~ msgid "Set state to" -#~ msgstr "Establecer grado a" - -#~ msgid "Case Category Name" -#~ msgstr "Nombre de la categoría de casos" - -#~ msgid "None" -#~ msgstr "Ninguno" - -#~ msgid "Minutes" -#~ msgstr "Minutos" - -#~ msgid "All Unclosed and Unassigned " -#~ msgstr "Mis no cerrados o no asignados " - -#~ msgid "" -#~ "Check this if you want the rule to send a reminder by email to the partner." -#~ msgstr "" -#~ "Marque esta opción si desea que la regla envíe un recordatorio por correo " -#~ "electrónico a la empresa." - -#~ msgid "Maximim Priority" -#~ msgstr "Prioridad máxima" - -#~ msgid "New " -#~ msgstr "Nuevo " - -#~ msgid "Partner Events" -#~ msgstr "Eventos empresa" - -#~ msgid "Conditions on Case Fields" -#~ msgstr "Condiciones sobre campos del caso" - -#~ msgid "Case Communication History" -#~ msgstr "Historial de comunicación del caso" - -#~ msgid "Category of case" -#~ msgstr "Categoría del caso" - -#~ msgid "Estimates" -#~ msgstr "Estimaciones" - -#~ msgid "%(case_subject)s = Case subject" -#~ msgstr "%(case_subject)s = Asunto del caso" - -#~ msgid "" -#~ "The generic Open ERP Customer Relationship Management\n" -#~ "system enables a group of people to intelligently and efficiently manage\n" -#~ "leads, opportunities, tasks, issues, requests, bugs, campaign, claims, etc.\n" -#~ "It manages key tasks such as communication, identification, prioritization,\n" -#~ "assignment, resolution and notification.\n" -#~ "\n" -#~ "Open ERP ensures that all cases are successfully tracked by users, customers " -#~ "and\n" -#~ "suppliers. It can automatically send reminders, escalate the request, " -#~ "trigger\n" -#~ "specific methods and lots of others actions based on your enterprise own " -#~ "rules.\n" -#~ "\n" -#~ "The greatest thing about this system is that users don't need to do " -#~ "anything\n" -#~ "special. They can just send email to the request tracker. Open ERP will " -#~ "take\n" -#~ "care of thanking them for their message, automatically routing it to the\n" -#~ "appropriate staff, and making sure all future correspondence gets to the " -#~ "right\n" -#~ "place.\n" -#~ "\n" -#~ "The CRM module has a email gateway for the synchronisation interface\n" -#~ "between mails and Open ERP." -#~ msgstr "" -#~ "El sistema genérico de Gestión de las Relaciones con el Cliente (CRM) de\n" -#~ "OpenERP permite a un grupo de gente gestionar de forma inteligente\n" -#~ "y eficaz iniciativas, oportunidades, tareas, cuestiones,\n" -#~ "peticiones, errores, campañas comerciales, reclamaciones, etc.\n" -#~ "Gestiona tareas clave como comunicación, identificación,\n" -#~ "priorización, asignación, resolución y notificación.\n" -#~ "\n" -#~ "OpenERP asegura que todos los casos son seguidos con éxito\n" -#~ "por usuarios, clientes y proveedores. Puede enviar automáticamente\n" -#~ "recordatorios y notificaciones, intensificar la petición, disparar\n" -#~ "métodos específicos y muchas otras acciones basadas en sus\n" -#~ "reglas propias de empresa.\n" -#~ "\n" -#~ "La cosa más importante sobre este sistema es que los usuarios no\n" -#~ "necesitan hacer nada especial. Pueden enviar sólo un correo electrónico\n" -#~ "al registro de peticiones. OpenERP se encargará de agradecerle su\n" -#~ "mensaje, dirigirlo automáticamente a las personas apropiadas, y asegurarse\n" -#~ "de que toda la futura correspondencia llega al lugar apropiado.\n" -#~ "\n" -#~ "El módulo de CRM dispone de una puerta de enlace con el correo electrónico\n" -#~ "para la sincronización entre correos electrónicos y OpenERP." - -#~ msgid "My Open " -#~ msgstr "Mis abiertos " - -#~ msgid "Select Views (empty for default)" -#~ msgstr "Seleccionar vistas (vacía por defecto)" - -#~ msgid "Case State" -#~ msgstr "Estado del caso" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML inválido para la definición de la vista!" - -#~ msgid "Your action" -#~ msgstr "Su acción" - -#~ msgid "Case section" -#~ msgstr "Sección del caso" - -#~ msgid "E-Mail Reminders (includes the content of the case)" -#~ msgstr "Recordatorios por Email (incluye el contenido del caso)" - -#~ msgid "Fields to Change" -#~ msgstr "Campos a cambiar" - -#~ msgid "Cases Histories" -#~ msgstr "Historiales de casos" - -#~ msgid "My cases" -#~ msgstr "Mis casos" - -#~ msgid "All Draft " -#~ msgstr "Todos los borradores " - -#~ msgid "%(partner_email)s = Partner email" -#~ msgstr "%(partner_email)s = Email empresa" - -#~ msgid "My Open Cases" -#~ msgstr "Mis casos abiertos" - -#~ msgid "Remind with attachment" -#~ msgstr "Recordar con adjunto" - -#~ msgid "All Late " -#~ msgstr "Todos los retrasados " - -#~ msgid "My Late " -#~ msgstr "Mis retrasados " - -#~ msgid "Open cases" -#~ msgstr "Casos abiertos" - -#~ msgid "My Unclosed " -#~ msgstr "Mis no cerrados " - -#~ msgid "Created" -#~ msgstr "Creado" - -#~ msgid "Mail to responsible" -#~ msgstr "Enviar correo a responsable" - -#~ msgid "My Pending " -#~ msgstr "Mis pendientes " - -#~ msgid "New Form" -#~ msgstr "Nuevo formulario" - -#~ msgid "Set responsible to" -#~ msgstr "Establecer responsable a" - -#~ msgid "" -#~ "The rule use a AND operator. The case must match all non empty fields so " -#~ "that the rule execute the action described in the 'Actions' tab." -#~ msgstr "" -#~ "La regla utiliza un operador AND. El caso debe concordar con todos los " -#~ "campos no vacíos para que la regla ejecute la acción descrita en la pestaña " -#~ "'Acciones'." - -#~ msgid "%(email_from)s = Partner email" -#~ msgstr "%(email_from)s = Email empresa" - -#~ msgid "Case Section" -#~ msgstr "Sección del caso" - -#~ msgid "Rules" -#~ msgstr "Reglas" - -#~ msgid "Call Object Method" -#~ msgstr "Método llamada al objeto" - -#, python-format -#~ msgid "You can not delete this case. You should better cancel it." -#~ msgstr "No puede eliminar este caso. Sería mejor que lo cancelara." - -#, python-format -#~ msgid "done" -#~ msgstr "realizado" - -#~ msgid "Calendar" -#~ msgstr "Calendario" - -#~ msgid "Log" -#~ msgstr "Registro" - -#~ msgid "" -#~ "These people will receive a copy of the futur communication between partner " -#~ "and users by email" -#~ msgstr "" -#~ "Estas personas recibirán una copia de la futura comunicación entre empresa y " -#~ "usuarios por correo electrónico" - -#, python-format -#~ msgid "Historize" -#~ msgstr "Añadir al historial" - -#~ msgid "%(partner)s = Partner name" -#~ msgstr "%(partner)s = Nombre empresa" - -#~ msgid "New With Calendar" -#~ msgstr "Nuevo con calendario" - -#~ msgid "List With Calendar" -#~ msgstr "Lista con calendario" - -#~ msgid "Action Information" -#~ msgstr "Información de la acción" - -#~ msgid "Calendar View" -#~ msgstr "Vista calendario" - -#~ msgid "%(case_user_phone)s = Responsible phone" -#~ msgstr "%(case_user_phone)s = Teléfono del responsable" - -#~ msgid "Delay after trigger date" -#~ msgstr "Demora después fecha del disparo" - -#~ msgid "Conditions" -#~ msgstr "Condiciones" - -#~ msgid "Open Cases" -#~ msgstr "Casos abiertos" - -#~ msgid "Remind responsible" -#~ msgstr "Recordar responsable" - -#~ msgid "Set section to" -#~ msgstr "Establecer sección a" - -#, python-format -#~ msgid "You must put a Partner eMail to use this action!" -#~ msgstr "¡Debe indicar un Email de empresa para usar esta acción!" - -#~ msgid "Minimum Priority" -#~ msgstr "Prioridad mínima" - -#~ msgid "Case History" -#~ msgstr "Historial del caso" - -#, python-format -#~ msgid "draft" -#~ msgstr "borrador" - -#~ msgid "Created Menus" -#~ msgstr "Menús creados" - -#~ msgid "" -#~ "Check this if you want that all documents attached to the case be attached " -#~ "to the reminder email sent." -#~ msgstr "" -#~ "Marque esta opción si desea que todos los documentos adjuntados a este caso " -#~ "sean adjuntados en el correo electrónico enviado como recordatorio." - -#, python-format -#~ msgid "cancel" -#~ msgstr "cancelado" - -#~ msgid "Parent Section" -#~ msgstr "Sección padre" - -#~ msgid "Parent Menu" -#~ msgstr "Menú padre" - -#~ msgid "%(case_id)s = Case ID" -#~ msgstr "%(case_id)s = ID del caso" - -#~ msgid "Don't Create" -#~ msgstr "No crear" - -#~ msgid "Base Menu Name" -#~ msgstr "Nombre menú base" - -#~ msgid "Child Sections" -#~ msgstr "Secciones hijas" - -#~ msgid "All Unassigned " -#~ msgstr "Todos los no asignados " - -#~ msgid "All Unclosed " -#~ msgstr "Todos los no cerrados " - -#~ msgid "%(case_user_email)s = Responsible email" -#~ msgstr "%(case_user_email)s = Email del responsable" - -#~ msgid "General" -#~ msgstr "General" - -#~ msgid "Send Reminder" -#~ msgstr "Enviar recordatorio" - -#~ msgid "Complete this if you use the mail gateway." -#~ msgstr "Complete esto si utiliza una pasarela de correo." - -#~ msgid "Business Opportunities" -#~ msgstr "Oportunidades de negocio" - -#~ msgid "Tree View" -#~ msgstr "Vista de árbol" - -#~ msgid "Conditions on Case Partner" -#~ msgstr "Condiciones sobre caso empresa" - -#~ msgid "Section Code" -#~ msgstr "Código de sección" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "General Description" -#~ msgstr "Descripción general" - -#~ msgid "Create Menus For Cases" -#~ msgstr "Crear menús para una sección de casos" - -#~ msgid "Mail to partner" -#~ msgstr "Enviar correo a empresa" - -#~ msgid "Partner Email" -#~ msgstr "Email empresa" - -#~ msgid "All Pending " -#~ msgstr "Todos los pendientes " - -#~ msgid "Set priority to" -#~ msgstr "Establecer prioridad a" - -#, python-format -#~ msgid "open" -#~ msgstr "abierto" - -#~ msgid "All Canceled " -#~ msgstr "Todos los cancelados " - -#~ msgid "Mail body" -#~ msgstr "Texto correo" - -#~ msgid "" -#~ "Check this if you want the rule to send a reminder by email to the user." -#~ msgstr "" -#~ "Marque esta opción si desea que la regla envíe un recordatorio por correo " -#~ "electrónico al usuario." - -#~ msgid "Segmentations" -#~ msgstr "Segmentaciones" - -#~ msgid "" -#~ "The email address put in the 'Reply-To' of all emails sent by Open ERP about " -#~ "cases in this section" -#~ msgstr "" -#~ "La dirección de correo electrónico que se pondrá en 'Responder A' en todos " -#~ "los correos electrónicos enviados por OpenERP para los casos de esta sección." - -#~ msgid "Case Rule" -#~ msgstr "Regla del caso" - -#, python-format -#~ msgid "Case" -#~ msgstr "Caso" - -#~ msgid "Conditions on Priority Range" -#~ msgstr "Condiciones sobre intervalo de prioridades" - -#~ msgid "All " -#~ msgstr "Todos " - -#~ msgid "E-Mail Actions" -#~ msgstr "Acciones de Email" - -#~ msgid "List" -#~ msgstr "Lista" - -#~ msgid "User Responsible" -#~ msgstr "Usuario responsable" - -#~ msgid "All Histories" -#~ msgstr "Todos los historiales" - -#~ msgid "My Canceled " -#~ msgstr "Mis cancelados " - -#~ msgid "Latest E-Mail" -#~ msgstr "Último email" - -#~ msgid "Case logs" -#~ msgstr "Registros del caso" - -#~ msgid "" -#~ "Check if the category is limited to partners that match the segmentation " -#~ "criterions. If checked, remove the category from partners that doesn't match " -#~ "segmentation criterions" -#~ msgstr "" -#~ "Indica si esta categoría está limitada a empresas que cumplan los criterios " -#~ "de segmentación. Si está marcada, se eliminan de la categoría las empresas " -#~ "que no cumplan los criterios de segmentación." - -#~ msgid "Logs History" -#~ msgstr "Historial del registro" - -#~ msgid "Form View" -#~ msgstr "Vista formulario" - -#~ msgid "Conditions on Timing" -#~ msgstr "Condiciones sobre temporización" - -#~ msgid "Case Description" -#~ msgstr "Descripción del caso" - -#~ msgid "Mail to watchers (Cc)" -#~ msgstr "Enviar correo a observadores (CC)" - -#~ msgid "Actions" -#~ msgstr "Acciones" - -#~ msgid "Cases by section" -#~ msgstr "Casos por sección" - -#~ msgid "Conditions on States" -#~ msgstr "Condiciones sobre los estados" - -#~ msgid "Trigger Date" -#~ msgstr "Fecha del disparo" - -#~ msgid "" -#~ "A period is the average number of days between two cycle of sale or purchase " -#~ "for this segmentation. It's mainly used to detect if a partner has not " -#~ "purchased or buy for a too long time, so we suppose that his state of mind " -#~ "has decreased because he probably bought goods to another supplier. Use this " -#~ "functionality for recurring businesses." -#~ msgstr "" -#~ "Un período es el número promedio de días entre dos ciclos de venta o compra " -#~ "para esta segmentación. Se utiliza principalmente para detectar si una " -#~ "empresa no ha comprado o compra durante un tiempo demasiado largo, así que " -#~ "suponemos que su grado de satisfacción se ha reducido porque probablemente " -#~ "ha comprado productos a otro proveedor. Utilice esta funcionalidad para los " -#~ "negocios recurrentes." - -#, python-format -#~ msgid "" -#~ "You must define a responsible user for this case in order to use this action!" -#~ msgstr "" -#~ "¡Debe definir un usuario responsable para este caso para poder utilizar esta " -#~ "acción!" - -#, python-format -#~ msgid "" -#~ "Can not send mail with empty body,you should have description in the body" -#~ msgstr "" -#~ "No puede enviar mensajes con un texto vacío, debería incluir una descripción " -#~ "en el mensaje" - -#, python-format -#~ msgid "" -#~ "No E-Mail ID Found for the Responsible Partner or missing reply address in " -#~ "section!" -#~ msgstr "" -#~ "¡No se ha encontrado Email en la empresa responsable o falta dirección de " -#~ "respuesta en la sección!" - -#~ msgid "Deadline Date is automatically computed from Start Date + Duration" -#~ msgstr "" -#~ "La fecha límite se calcula automáticamente a partir de Fecha de inicio + " -#~ "Duración" - -#, python-format -#~ msgid "" -#~ "No E-Mail ID Found for your Company address or missing reply address in " -#~ "section!" -#~ msgstr "" -#~ "¡No se ha encontrado Email en la dirección de su compañía o falta dirección " -#~ "de respuesta en la sección!" - -#~ msgid "this wizard will create all sub-menus, within the selected menu." -#~ msgstr "este asistente creará todos los sub-menús, en el menú seleccionado." - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo no válido en la definición de acción." - -#~ msgid "" -#~ "You may want to create a new parent menu to put all the created menus in." -#~ msgstr "" -#~ "Es posible que desee crear un nuevo menú padre para poner todos los menús " -#~ "creados en él." - -#~ msgid "Button Pressed" -#~ msgstr "Botón oprimido" - -#~ msgid "Mail to these emails" -#~ msgstr "Correo a estos correos electronicos" - -#~ msgid "Special Keywords to Be Used in The Body" -#~ msgstr "Palabras claves especiales para ser usadas en el cuerpo del mensaje." - -#~ msgid "My Histories" -#~ msgstr "Mis historias" - -#~ msgid "Last Action Date" -#~ msgstr "Fechas de ultima acción" - -#~ msgid "Delay type" -#~ msgstr "Tipo de retraso" - -#~ msgid "%(case_description)s = Case description" -#~ msgstr "%(case_description)s = Descripción del caso" - -#~ msgid "Planned revenue" -#~ msgstr "Ingresos previstos" - -#~ msgid "Planned Costs" -#~ msgstr "Costos previstos" - -#~ msgid "Planned costs" -#~ msgstr "Costos previstos" - -#~ msgid "Telesales" -#~ msgstr "Ventas a distancia" - -#~ msgid "Invalid arguments" -#~ msgstr "Argumentos inválidos" - -#~ msgid "Send Partner & Historize" -#~ msgstr "Enviar a empresa y añadir al historial" - -#~ msgid "Mail Campaign 1" -#~ msgstr "Campaña mail 1" +msgstr "" + +#. module: crm +#: model:mail.message.subtype,name:crm.mt_salesteam_lead_stage +msgid "Opportunity Stage Changed" +msgstr "" + +#. module: crm +#: model:ir.actions.act_window,help:crm.crm_lead_stage_act +msgid "" +"

\n" +" Click to set a new stage in your lead/opportunity pipeline.\n" +"

\n" +" Stages will allow salespersons to easily track how a " +"specific\n" +" lead or opportunity is positioned in the sales cycle.\n" +"

\n" +" " +msgstr "" diff --git a/addons/crm/i18n/es_PY.po b/addons/crm/i18n/es_PY.po index e1774747172..9929cb573e4 100644 --- a/addons/crm/i18n/es_PY.po +++ b/addons/crm/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/et.po b/addons/crm/i18n/et.po index 715338ed304..7b7109eb178 100644 --- a/addons/crm/i18n/et.po +++ b/addons/crm/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/fi.po b/addons/crm/i18n/fi.po index 3635d04667b..9a075275ccd 100644 --- a/addons/crm/i18n/fi.po +++ b/addons/crm/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po index a75cbb6e689..59f2f63e26f 100644 --- a/addons/crm/i18n/fr.po +++ b/addons/crm/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/gl.po b/addons/crm/i18n/gl.po index 4d0cbe65771..3b1445811d0 100644 --- a/addons/crm/i18n/gl.po +++ b/addons/crm/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/gu.po b/addons/crm/i18n/gu.po index 8c32f3c086d..ce78dfb0c96 100644 --- a/addons/crm/i18n/gu.po +++ b/addons/crm/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/hr.po b/addons/crm/i18n/hr.po index 81d46dd994e..b9296e11155 100644 --- a/addons/crm/i18n/hr.po +++ b/addons/crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/hu.po b/addons/crm/i18n/hu.po index 2140aee9234..358b4aeb234 100644 --- a/addons/crm/i18n/hu.po +++ b/addons/crm/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 @@ -1819,7 +1819,7 @@ msgstr "Lehetőségek szakaszok szerint" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 msgid "Prospect is converting to business partner" -msgstr "A leendő partner átalakítá alatt üzleti partnerré" +msgstr "A leendő partner átalakítása üzleti partnerré" #. module: crm #: view:crm.case.channel:0 @@ -3222,7 +3222,7 @@ msgstr "Kampány neve" #. module: crm #: view:crm.segmentation:0 msgid "Profiling" -msgstr "" +msgstr "Profilozás" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall_report @@ -3301,3 +3301,49 @@ msgstr "" #~ msgid "Send Mail" #~ msgstr "Levél küldése" + +#~ msgid "Users" +#~ msgstr "Felhasználók" + +#~ msgid "Leads that are assigned to one of the sale teams I manage, or to me" +#~ msgstr "" +#~ "Érdeklődések, melyek az én irányításom alatt lévő csoportnak, vagy nekem " +#~ "lettek iktatva" + +#~ msgid "Lead Description" +#~ msgstr "Érdeklődés leírása" + +#~ msgid "New Leads" +#~ msgstr "Új érdeklődések" + +#~ msgid "Opportunity ${object.name | h})" +#~ msgstr "Lehetőség ${object.name | h})" + +#~ msgid "Opportunities Assigned to Me or My Team(s)" +#~ msgstr "Lehetőség, mely nekem vagy a csoportomnak lett iktatva" + +#~ msgid "Leads Assigned to Me or My Team(s)" +#~ msgstr "Érdeklődés, mely részemre vagy a csoportomnak lett iktatva" + +#~ msgid "Unassigned Leads" +#~ msgstr "Nem iktatott rdeklődések" + +#~ msgid "Unassigned Opportunities" +#~ msgstr "Nem iktatott lehetőségek" + +#~ msgid "" +#~ "Opportunities that are assigned to either me or one of the sale teams I " +#~ "manage" +#~ msgstr "" +#~ "Lejhetőségek, melyek vagy részemre vagy az egyik általam vezetett csoporthoz " +#~ "lett iktatva" + +#~ msgid "Exp.Closing" +#~ msgstr "Elv. határidő" + +#~ msgid "Create date" +#~ msgstr "Dátumot létrehoz" + +#, python-format +#~ msgid "%s a call for the %s." +#~ msgstr "%s egy hívás erre a %s." diff --git a/addons/crm/i18n/id.po b/addons/crm/i18n/id.po index fa749e81039..5a1f7a4a7eb 100644 --- a/addons/crm/i18n/id.po +++ b/addons/crm/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/it.po b/addons/crm/i18n/it.po index 9a98f9a46de..85158cc647f 100644 --- a/addons/crm/i18n/it.po +++ b/addons/crm/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ja.po b/addons/crm/i18n/ja.po index 48a55e8a251..00e31641001 100644 --- a/addons/crm/i18n/ja.po +++ b/addons/crm/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ko.po b/addons/crm/i18n/ko.po index a6ac9b362d9..c49f4e9c514 100644 --- a/addons/crm/i18n/ko.po +++ b/addons/crm/i18n/ko.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:36+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-28 05:34+0000\n" +"Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-08 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 msgid "# Leads" -msgstr "" +msgstr "# 리드" #. module: crm #: help:sale.config.settings,fetchmail_lead:0 @@ -38,7 +38,7 @@ msgstr "" #: selection:crm.lead.report,type:0 #, python-format msgid "Lead" -msgstr "" +msgstr "리드" #. module: crm #: view:crm.lead:0 @@ -101,7 +101,7 @@ msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_lead_report msgid "CRM Lead Analysis" -msgstr "" +msgstr "CRM 리드 분석" #. module: crm #: view:crm.lead.report:0 @@ -262,7 +262,7 @@ msgstr "" #: model:ir.actions.act_window,name:crm.action_report_crm_lead #: model:ir.ui.menu,name:crm.menu_report_crm_leads_tree msgid "Leads Analysis" -msgstr "" +msgstr "리드 분석" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_resource_type_act @@ -415,7 +415,7 @@ msgstr "" #. module: crm #: field:crm.case.section,user_id:0 msgid "Team Leader" -msgstr "" +msgstr "팀 리더" #. module: crm #: code:addons/crm/crm_lead.py:1032 @@ -443,7 +443,7 @@ msgstr "카테고리" #. module: crm #: view:crm.lead.report:0 msgid "#Opportunities" -msgstr "" +msgstr "기회#" #. module: crm #: code:addons/crm/crm_lead.py:624 @@ -492,7 +492,7 @@ msgstr "" #. module: crm #: view:sale.config.settings:0 msgid "Configure" -msgstr "" +msgstr "구성" #. module: crm #: view:crm.lead:0 @@ -502,47 +502,47 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Mailings" -msgstr "" +msgstr "메일 발송" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "단계가 변경됨" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "June" -msgstr "" +msgstr "6월" #. module: crm #: selection:crm.segmentation,state:0 msgid "Not Running" -msgstr "진행 중이 아님" +msgstr "실행 중이 아님" #. module: crm #: field:crm.lead.report,planned_revenue:0 msgid "Planned Revenue" -msgstr "계획된 수입" +msgstr "예상 수익" #. module: crm #: code:addons/crm/crm_lead.py:970 #, python-format msgid "Customer Email" -msgstr "" +msgstr "고객 이메일" #. module: crm #: field:crm.lead,planned_revenue:0 msgid "Expected Revenue" -msgstr "" +msgstr "예상 수익" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "October" -msgstr "" +msgstr "10월" #. module: crm #: view:crm.segmentation:0 @@ -564,22 +564,22 @@ msgstr "" #: field:crm.lead,message_summary:0 #: field:crm.phonecall,message_summary:0 msgid "Summary" -msgstr "" +msgstr "요약" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge" -msgstr "" +msgstr "병합" #. module: crm #: view:crm.case.categ:0 msgid "Case Category" -msgstr "케이스 카테고리" +msgstr "사례 분류" #. module: crm #: field:crm.lead,partner_address_name:0 msgid "Partner Contact Name" -msgstr "" +msgstr "협력업체 연락처 이름" #. module: crm #: model:ir.actions.server,subject:crm.action_email_reminder_lead @@ -604,24 +604,24 @@ msgstr "프로파일링 옵션" #. module: crm #: view:crm.phonecall.report:0 msgid "#Phone calls" -msgstr "" +msgstr "통화 횟수" #. module: crm #: sql_constraint:crm.case.section:0 msgid "The code of the sales team must be unique !" -msgstr "" +msgstr "영업팀의 코드는 유일해야 합니다 !" #. module: crm #: help:crm.lead,email_from:0 msgid "Email address of the contact" -msgstr "" +msgstr "연락처의 이메일 주소" #. module: crm #: selection:crm.case.stage,state:0 #: view:crm.lead:0 #: selection:crm.lead,state:0 msgid "In Progress" -msgstr "" +msgstr "진행 중" #. module: crm #: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action @@ -646,13 +646,13 @@ msgstr "" #. module: crm #: field:crm.lead.report,creation_month:0 msgid "Creation Month" -msgstr "" +msgstr "생성월" #. module: crm #: field:crm.case.section,resource_calendar_id:0 #: model:ir.ui.menu,name:crm.menu_action_resource_calendar_form msgid "Working Time" -msgstr "" +msgstr "근무시간" #. module: crm #: view:crm.segmentation.line:0 @@ -663,12 +663,12 @@ msgstr "파트너 세그먼테이션 라인" #: model:ir.actions.act_window,name:crm.action_report_crm_phonecall #: model:ir.ui.menu,name:crm.menu_report_crm_phonecalls_tree msgid "Phone Calls Analysis" -msgstr "" +msgstr "통화 분석" #. module: crm #: view:crm.lead:0 msgid "Leads Form" -msgstr "" +msgstr "리드 양식" #. module: crm #: view:crm.segmentation:0 @@ -679,7 +679,7 @@ msgstr "파트너 세그먼테이션" #. module: crm #: field:crm.lead,company_currency:0 msgid "Currency" -msgstr "" +msgstr "통화" #. module: crm #: field:crm.lead.report,probable_revenue:0 @@ -689,17 +689,17 @@ msgstr "" #. module: crm #: help:crm.lead.report,creation_month:0 msgid "Creation month" -msgstr "" +msgstr "생성월" #. module: crm #: help:crm.segmentation,name:0 msgid "The name of the segmentation." -msgstr "세그먼테이션 이름" +msgstr "분할의 이름" #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +msgstr "미국의 리드" #. module: crm #: sql_constraint:crm.lead:0 @@ -709,12 +709,12 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Leads Generation" -msgstr "" +msgstr "리드 생성" #. module: crm #: view:board.board:0 msgid "Statistics Dashboard" -msgstr "" +msgstr "통계 대시보드" #. module: crm #: code:addons/crm/crm_lead.py:861 @@ -728,22 +728,22 @@ msgstr "" #: field:res.partner,opportunity_count:0 #, python-format msgid "Opportunity" -msgstr "" +msgstr "기회" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead7 msgid "Television" -msgstr "" +msgstr "텔레비전" #. module: crm #: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert msgid "Convert to opportunities" -msgstr "" +msgstr "기회로 전환" #. module: crm #: model:ir.model,name:crm.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: crm #: view:crm.segmentation:0 @@ -753,12 +753,12 @@ msgstr "프로세스 중지" #. module: crm #: field:crm.case.section,alias_id:0 msgid "Alias" -msgstr "" +msgstr "별명" #. module: crm #: view:crm.phonecall:0 msgid "Search Phonecalls" -msgstr "" +msgstr "통화 검색" #. module: crm #: view:crm.lead.report:0 @@ -774,7 +774,7 @@ msgstr "값" #. module: crm #: field:calendar.attendee,categ_id:0 msgid "Event Type" -msgstr "" +msgstr "행사 유형" #. module: crm #: field:crm.segmentation,exclusif:0 @@ -790,7 +790,7 @@ msgstr "" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Convert to Opportunities" -msgstr "" +msgstr "기회로 전환" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -799,18 +799,18 @@ msgstr "" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "or" -msgstr "" +msgstr "또는" #. module: crm #: field:crm.lead.report,create_date:0 #: field:crm.phonecall.report,create_date:0 msgid "Create Date" -msgstr "" +msgstr "날짜 생성" #. module: crm #: field:crm.lead,ref2:0 msgid "Reference 2" -msgstr "레퍼런스 2" +msgstr "참조 2" #. module: crm #: help:crm.case.stage,section_ids:0 @@ -823,17 +823,17 @@ msgstr "" #: view:crm.case.stage:0 #: field:crm.case.stage,requirements:0 msgid "Requirements" -msgstr "" +msgstr "필요조건" #. module: crm #: field:crm.lead,zip:0 msgid "Zip" -msgstr "" +msgstr "우편번호" #. module: crm #: view:crm.phonecall:0 msgid "Unassigned Phonecalls" -msgstr "" +msgstr "할당되지 않은 통화" #. module: crm #: view:crm.lead:0 @@ -846,37 +846,37 @@ msgstr "" #: model:process.node,name:crm.process_node_opportunities0 #: view:res.partner:0 msgid "Opportunities" -msgstr "" +msgstr "기회" #. module: crm #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "파트너 카테고리" +msgstr "협력업체 분류" #. module: crm #: field:crm.lead,probability:0 msgid "Success Rate (%)" -msgstr "" +msgstr "성공률 (%)" #. module: crm #: field:crm.segmentation,sales_purchase_active:0 msgid "Use The Sales Purchase Rules" -msgstr "판매 구매 규칙 사용" +msgstr "판매 구매 규칙을 사용" #. module: crm #: model:crm.case.categ,name:crm.categ_phone2 msgid "Outbound" -msgstr "" +msgstr "송신" #. module: crm #: view:crm.lead:0 msgid "Leads that are assigned to me" -msgstr "" +msgstr "내게 할당된 리드" #. module: crm #: view:crm.lead:0 msgid "Mark Won" -msgstr "" +msgstr "수주 성공으로 표시" #. module: crm #: field:crm.case.stage,probability:0 @@ -886,24 +886,24 @@ msgstr "가능성 (%)" #. module: crm #: view:crm.lead:0 msgid "Mark Lost" -msgstr "" +msgstr "수주 실패로 표시" #. module: crm #: model:ir.filters,name:crm.filter_draft_lead msgid "Draft Leads" -msgstr "" +msgstr "리드 초안" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "March" -msgstr "" +msgstr "3월" #. module: crm #: view:crm.lead:0 msgid "Send Email" -msgstr "" +msgstr "이메일 보내기" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 @@ -916,7 +916,7 @@ msgstr "경고 !" #: help:crm.lead,message_unread:0 #: help:crm.phonecall,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "체크할 경우, 새로운 메시지를 주목할 필요가 있습니다." #. module: crm #: field:crm.lead,day_open:0 @@ -926,13 +926,13 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "ZIP" -msgstr "" +msgstr "우편번호" #. module: crm #: field:crm.lead,mobile:0 #: field:crm.phonecall,partner_mobile:0 msgid "Mobile" -msgstr "" +msgstr "휴대전화" #. module: crm #: field:crm.lead,ref:0 @@ -950,7 +950,7 @@ msgstr "" #: view:res.partner:0 #: field:res.partner,meeting_ids:0 msgid "Meetings" -msgstr "" +msgstr "미팅" #. module: crm #: field:crm.lead,date_action_next:0 @@ -975,22 +975,22 @@ msgstr "초안" #. module: crm #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "파트너 세그먼테이션" +msgstr "협력업체 분할" #. module: crm #: view:crm.lead.report:0 msgid "Show only opportunity" -msgstr "" +msgstr "기회만 보기" #. module: crm #: field:crm.lead,name:0 msgid "Subject" -msgstr "" +msgstr "제목" #. module: crm #: view:crm.lead:0 msgid "Show Sales Team" -msgstr "" +msgstr "영업팀 보기" #. module: crm #: help:sale.config.settings,module_crm_claim:0 @@ -1003,17 +1003,17 @@ msgstr "" #: model:crm.case.stage,name:crm.stage_lead6 #: view:crm.lead:0 msgid "Won" -msgstr "" +msgstr "수주 성공" #. module: crm #: field:crm.lead.report,delay_expected:0 msgid "Overpassed Deadline" -msgstr "" +msgstr "과거 만기일" #. module: crm #: model:crm.case.section,name:crm.section_sales_department msgid "Sales Department" -msgstr "" +msgstr "영업부" #. module: crm #: field:crm.case.stage,type:0 @@ -1021,12 +1021,12 @@ msgstr "" #: field:crm.lead.report,type:0 #: view:crm.opportunity2phonecall:0 msgid "Type" -msgstr "" +msgstr "유형" #. module: crm #: view:crm.segmentation:0 msgid "Compute Segmentation" -msgstr "세그먼테이션 계산" +msgstr "분할 계산" #. module: crm #: selection:crm.lead,priority:0 @@ -1034,7 +1034,7 @@ msgstr "세그먼테이션 계산" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Lowest" -msgstr "최저" +msgstr "가장 낮음" #. module: crm #: field:crm.lead,create_date:0 @@ -1042,28 +1042,28 @@ msgstr "최저" #: field:crm.phonecall,create_date:0 #: field:crm.phonecall.report,creation_date:0 msgid "Creation Date" -msgstr "생성 날짜:" +msgstr "생성일" #. module: crm #: code:addons/crm/crm_lead.py:698 #, python-format msgid "Lead converted into an Opportunity" -msgstr "" +msgstr "기회로 전환된리드" #. module: crm #: selection:crm.segmentation.line,expr_name:0 msgid "Purchase Amount" -msgstr "구매 금액" +msgstr "구매금액" #. module: crm #: view:crm.phonecall.report:0 msgid "Year of call" -msgstr "" +msgstr "통화년도" #. module: crm #: view:crm.lead:0 msgid "Open Leads" -msgstr "" +msgstr "리드 시작하기" #. module: crm #: view:crm.case.stage:0 @@ -1072,27 +1072,27 @@ msgstr "" #: view:crm.lead.report:0 #: field:crm.lead.report,stage_id:0 msgid "Stage" -msgstr "" +msgstr "단계" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone Calls that are assigned to me" -msgstr "" +msgstr "내게 할당된 통화" #. module: crm #: field:crm.lead,user_login:0 msgid "User Login" -msgstr "" +msgstr "사용자 로그인" #. module: crm #: view:crm.lead:0 msgid "No salesperson" -msgstr "" +msgstr "영업사원 없음" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in pending state" -msgstr "" +msgstr "보류 상태의 통화" #. module: crm #: view:crm.case.section:0 @@ -1102,7 +1102,7 @@ msgstr "" #: model:ir.actions.act_window,name:crm.crm_lead_stage_act #: model:ir.ui.menu,name:crm.menu_crm_lead_stage_act msgid "Stages" -msgstr "" +msgstr "단계" #. module: crm #: help:sale.config.settings,module_crm_helpdesk:0 @@ -1114,29 +1114,29 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Delete" -msgstr "" +msgstr "삭제" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_create msgid "Opportunity created" -msgstr "" +msgstr "기회가 생성됨" #. module: crm #: view:crm.lead:0 msgid "í" -msgstr "" +msgstr "í" #. module: crm #: view:crm.phonecall:0 msgid "Description..." -msgstr "" +msgstr "설명..." #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "September" -msgstr "" +msgstr "9월" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11 @@ -1157,7 +1157,7 @@ msgstr "" #. module: crm #: field:crm.segmentation,partner_id:0 msgid "Max Partner ID processed" -msgstr "처리할 최대 파트너 ID" +msgstr "처리된 최대 협력업체 ID" #. module: crm #: help:crm.case.stage,on_change:0 @@ -1174,28 +1174,28 @@ msgstr "" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act msgid "Payment Modes" -msgstr "" +msgstr "지불 모드" #. module: crm #: field:crm.lead.report,opening_date:0 #: field:crm.phonecall.report,opening_date:0 msgid "Opening Date" -msgstr "" +msgstr "개시일" #. module: crm #: help:crm.phonecall,duration:0 msgid "Duration in Minutes" -msgstr "" +msgstr "기간 (분)" #. module: crm #: field:crm.case.channel,name:0 msgid "Channel Name" -msgstr "" +msgstr "채널 이름" #. module: crm #: help:crm.lead.report,deadline_day:0 msgid "Expected closing day" -msgstr "" +msgstr "예상 마감일" #. module: crm #: help:crm.case.section,active:0 @@ -1222,7 +1222,7 @@ msgstr "" #: model:mail.message.subtype,name:crm.mt_lead_create #: model:mail.message.subtype,name:crm.mt_salesteam_lead msgid "Lead Created" -msgstr "" +msgstr "리드가 생성됨" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1230,8 +1230,8 @@ msgid "" "Check if you want to use this tab as part of the segmentation rule. If not " "checked, the criteria beneath will be ignored" msgstr "" -"이 탭을 세그먼테이션 규칙의 일부로 이용하려면 체크하십시오.\r\n" -"체크되지 않으면, 기저의 범주가 무시됩니다." +"이 탭을 분할 규칙의 일부로 이용하려면 체크하십시오.\r\n" +"체크되지 않으면, 아래의 범주가 무시됩니다." #. module: crm #: field:crm.segmentation,state:0 @@ -1241,24 +1241,24 @@ msgstr "실행 상태" #. module: crm #: view:crm.opportunity2phonecall:0 msgid "Log call" -msgstr "" +msgstr "통화 기록" #. module: crm #: field:crm.lead,day_close:0 msgid "Days to Close" -msgstr "" +msgstr "마감 잔여일" #. module: crm #: field:crm.case.section,complete_name:0 msgid "unknown" -msgstr "" +msgstr "알 수 없음" #. module: crm #: field:crm.case.section,message_is_follower:0 #: field:crm.lead,message_is_follower:0 #: field:crm.phonecall,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "은(는) 팔로어임" #. module: crm #: field:crm.opportunity2phonecall,date:0 @@ -1271,23 +1271,23 @@ msgstr "날짜" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_4 msgid "Online Support" -msgstr "" +msgstr "온라인 지원" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "확장 필터..." #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in closed state" -msgstr "" +msgstr "마감 상태의 통화" #. module: crm #: view:crm.phonecall.report:0 msgid "Search" -msgstr "" +msgstr "검색" #. module: crm #: help:crm.lead,state:0 @@ -1301,13 +1301,13 @@ msgstr "" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_1 msgid "Sales Marketing Department" -msgstr "" +msgstr "영업홍보부" #. module: crm #: code:addons/crm/crm_lead.py:569 #, python-format msgid "Merged lead" -msgstr "" +msgstr "병합된 리드" #. module: crm #: help:crm.lead,section_id:0 @@ -1325,43 +1325,43 @@ msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Description" -msgstr "세그먼테이션 설명" +msgstr "분할 설명" #. module: crm #: code:addons/crm/crm_lead.py:565 #, python-format msgid "Merged opportunities" -msgstr "" +msgstr "병합된 기회" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor7 msgid "Consulting" -msgstr "" +msgstr "상담" #. module: crm #: field:crm.case.section,code:0 msgid "Code" -msgstr "" +msgstr "코드" #. module: crm #: view:sale.config.settings:0 msgid "Features" -msgstr "" +msgstr "특징" #. module: crm #: field:crm.case.section,child_ids:0 msgid "Child Teams" -msgstr "" +msgstr "하위 팀" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in draft and open state" -msgstr "" +msgstr "초안 및 개시 상태의 통화" #. module: crm #: field:crm.lead2opportunity.partner.mass,user_ids:0 msgid "Salesmen" -msgstr "" +msgstr "영업사원" #. module: crm #: view:crm.lead:0 @@ -1386,7 +1386,7 @@ msgstr "" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in pending state" -msgstr "" +msgstr "보류 상태인 리드/기회" #. module: crm #: view:crm.phonecall:0 @@ -1414,7 +1414,7 @@ msgstr "" #: field:crm.phonecall,opportunity_id:0 #: model:ir.model,name:crm.model_crm_lead msgid "Lead/Opportunity" -msgstr "" +msgstr "리드/기회" #. module: crm #: model:ir.actions.act_window,name:crm.action_merge_opportunities @@ -1494,7 +1494,7 @@ msgstr "이름" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities that are assigned to me" -msgstr "" +msgstr "나에게 할당된 리드/기회" #. module: crm #: view:crm.lead.report:0 @@ -1545,7 +1545,7 @@ msgstr "" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in done state" -msgstr "" +msgstr "종료 상태의 리드/기회" #. module: crm #: field:crm.lead.report,delay_close:0 @@ -1568,7 +1568,7 @@ msgstr "" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge Leads/Opportunities" -msgstr "" +msgstr "리드/기회 병합" #. module: crm #: field:crm.case.section,parent_id:0 @@ -1613,7 +1613,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Describe the lead..." -msgstr "" +msgstr "리드를 설명하십시오..." #. module: crm #: code:addons/crm/crm_phonecall.py:290 @@ -1743,7 +1743,7 @@ msgstr "우선순위" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner msgid "Lead To Opportunity Partner" -msgstr "" +msgstr "리드에서 기회로 전환된 협력업체" #. module: crm #: help:crm.lead,partner_id:0 @@ -1760,7 +1760,7 @@ msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner_mass msgid "Mass Lead To Opportunity Partner" -msgstr "" +msgstr "리드에서 기회로 전환된 협력업체 - 대량" #. module: crm #: view:sale.config.settings:0 @@ -1826,7 +1826,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Lead / Customer" -msgstr "" +msgstr "리드 / 고객" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_2 @@ -1836,7 +1836,7 @@ msgstr "" #. module: crm #: view:crm.lead.report:0 msgid "Show only lead" -msgstr "" +msgstr "리드만 보이기" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act @@ -1884,13 +1884,13 @@ msgstr "" #: model:ir.ui.menu,name:crm.menu_crm_leads #: model:process.node,name:crm.process_node_leads0 msgid "Leads" -msgstr "" +msgstr "리드" #. module: crm #: code:addons/crm/crm_lead.py:563 #, python-format msgid "Merged leads" -msgstr "" +msgstr "병합된 리드" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 @@ -2137,7 +2137,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Search Leads" -msgstr "" +msgstr "리드 검색" #. module: crm #: view:crm.lead.report:0 @@ -2246,7 +2246,7 @@ msgstr "" #. module: crm #: field:crm.merge.opportunity,opportunity_ids:0 msgid "Leads/Opportunities" -msgstr "" +msgstr "리드/기회" #. module: crm #: field:crm.lead,fax:0 @@ -2271,7 +2271,7 @@ msgstr "진행 중" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity msgid "Lead converted into an opportunity" -msgstr "" +msgstr "기회로 전환된 리드" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won @@ -2379,7 +2379,7 @@ msgstr "" #. module: crm #: view:crm.merge.opportunity:0 msgid "Select Leads/Opportunities" -msgstr "" +msgstr "리드/기회 선택" #. module: crm #: selection:crm.phonecall,state:0 @@ -2444,7 +2444,7 @@ msgstr "" #. module: crm #: field:sale.config.settings,fetchmail_lead:0 msgid "Create leads from incoming mails" -msgstr "" +msgstr "수신 메일로부터 리드 생성" #. module: crm #: view:crm.lead:0 @@ -2486,7 +2486,7 @@ msgstr "" #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 msgid "Creating business opportunities from Leads" -msgstr "" +msgstr "리드로부터 사업 기회를 생성하는 중" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead3 @@ -2957,7 +2957,7 @@ msgstr "" #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 #, python-format msgid "Closed/Cancelled leads cannot be converted into opportunities." -msgstr "" +msgstr "종료/취소된 리드는 기회로 전환될 수 없습니다." #. module: crm #: view:crm.lead:0 diff --git a/addons/crm/i18n/lo.po b/addons/crm/i18n/lo.po index 94f568f1068..bf636716f25 100644 --- a/addons/crm/i18n/lo.po +++ b/addons/crm/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/lt.po b/addons/crm/i18n/lt.po index 4be25bb4a2c..8ceebd1c42a 100644 --- a/addons/crm/i18n/lt.po +++ b/addons/crm/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/lv.po b/addons/crm/i18n/lv.po index c438dde5b4a..4363da946ea 100644 --- a/addons/crm/i18n/lv.po +++ b/addons/crm/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/mk.po b/addons/crm/i18n/mk.po index e8a79d4d039..6d3c2b7569e 100644 --- a/addons/crm/i18n/mk.po +++ b/addons/crm/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: crm diff --git a/addons/crm/i18n/mn.po b/addons/crm/i18n/mn.po index 3f1c18fffac..0a0966340b4 100644 --- a/addons/crm/i18n/mn.po +++ b/addons/crm/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:24+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nb.po b/addons/crm/i18n/nb.po index 8dc66235020..b6a81c4ca32 100644 --- a/addons/crm/i18n/nb.po +++ b/addons/crm/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nl.po b/addons/crm/i18n/nl.po index 47054805291..e8f85746ab9 100644 --- a/addons/crm/i18n/nl.po +++ b/addons/crm/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-24 05:11+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/nl_BE.po b/addons/crm/i18n/nl_BE.po index 1261ca09aaf..8b7728f28ef 100644 --- a/addons/crm/i18n/nl_BE.po +++ b/addons/crm/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/pl.po b/addons/crm/i18n/pl.po index 06378cac0c5..4dbdfbdfcfb 100644 --- a/addons/crm/i18n/pl.po +++ b/addons/crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/pt.po b/addons/crm/i18n/pt.po index 63036762b48..c57c34e542a 100644 --- a/addons/crm/i18n/pt.po +++ b/addons/crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po index ae7abff50b7..5494fad5056 100644 --- a/addons/crm/i18n/pt_BR.po +++ b/addons/crm/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ro.po b/addons/crm/i18n/ro.po index 7397d3e636b..f49de743cc3 100644 --- a/addons/crm/i18n/ro.po +++ b/addons/crm/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/ru.po b/addons/crm/i18n/ru.po index a1dbe5eb5db..87be4f0d41f 100644 --- a/addons/crm/i18n/ru.po +++ b/addons/crm/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sk.po b/addons/crm/i18n/sk.po index 25f56a5183d..f0324ab4524 100644 --- a/addons/crm/i18n/sk.po +++ b/addons/crm/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sl.po b/addons/crm/i18n/sl.po index 0b4400a4c6c..6be73c24376 100644 --- a/addons/crm/i18n/sl.po +++ b/addons/crm/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sq.po b/addons/crm/i18n/sq.po index 1ebc8ee71e0..d38f3889963 100644 --- a/addons/crm/i18n/sq.po +++ b/addons/crm/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:34+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sr.po b/addons/crm/i18n/sr.po index ebd0869f6fb..9cab9cc783e 100644 --- a/addons/crm/i18n/sr.po +++ b/addons/crm/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sr@latin.po b/addons/crm/i18n/sr@latin.po index 195c47746c0..5b3e9ce28fd 100644 --- a/addons/crm/i18n/sr@latin.po +++ b/addons/crm/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/sv.po b/addons/crm/i18n/sv.po index c7b6ab9ddf8..9f715c581fe 100644 --- a/addons/crm/i18n/sv.po +++ b/addons/crm/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/th.po b/addons/crm/i18n/th.po index feedb31b5fb..6b63a4e00dc 100644 --- a/addons/crm/i18n/th.po +++ b/addons/crm/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/tlh.po b/addons/crm/i18n/tlh.po index 15be882a1e9..2e79bfeeb54 100644 --- a/addons/crm/i18n/tlh.po +++ b/addons/crm/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/tr.po b/addons/crm/i18n/tr.po index 9ae87aae538..dd090b34a7b 100644 --- a/addons/crm/i18n/tr.po +++ b/addons/crm/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: crm diff --git a/addons/crm/i18n/uk.po b/addons/crm/i18n/uk.po index 29f40f3c73f..8345ae9ff18 100644 --- a/addons/crm/i18n/uk.po +++ b/addons/crm/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/vi.po b/addons/crm/i18n/vi.po index cf3b21c7605..e567b61f805 100644 --- a/addons/crm/i18n/vi.po +++ b/addons/crm/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/zh_CN.po b/addons/crm/i18n/zh_CN.po index 4cebb796a44..a563a169787 100644 --- a/addons/crm/i18n/zh_CN.po +++ b/addons/crm/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm/i18n/zh_TW.po b/addons/crm/i18n/zh_TW.po index dc03004777a..e51268038ca 100644 --- a/addons/crm/i18n/zh_TW.po +++ b/addons/crm/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 diff --git a/addons/crm_claim/i18n/ar.po b/addons/crm_claim/i18n/ar.po index 0b186c40c4b..7e428c3912a 100644 --- a/addons/crm_claim/i18n/ar.po +++ b/addons/crm_claim/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/bg.po b/addons/crm_claim/i18n/bg.po index e806b904992..1c284b22c72 100644 --- a/addons/crm_claim/i18n/bg.po +++ b/addons/crm_claim/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ca.po b/addons/crm_claim/i18n/ca.po index e7581da7c6e..24416f076bc 100644 --- a/addons/crm_claim/i18n/ca.po +++ b/addons/crm_claim/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/da.po b/addons/crm_claim/i18n/da.po index c5970eba2d8..217deb7fa53 100644 --- a/addons/crm_claim/i18n/da.po +++ b/addons/crm_claim/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/de.po b/addons/crm_claim/i18n/de.po index 2b423e8e1d4..fa3f018a10c 100644 --- a/addons/crm_claim/i18n/de.po +++ b/addons/crm_claim/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/el.po b/addons/crm_claim/i18n/el.po index 252e82526ea..dc3a3f1d766 100644 --- a/addons/crm_claim/i18n/el.po +++ b/addons/crm_claim/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es.po b/addons/crm_claim/i18n/es.po index 45c2702e60b..7a7ec6034bf 100644 --- a/addons/crm_claim/i18n/es.po +++ b/addons/crm_claim/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_CR.po b/addons/crm_claim/i18n/es_CR.po index a56e2c355af..0886bcf4b62 100644 --- a/addons/crm_claim/i18n/es_CR.po +++ b/addons/crm_claim/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_EC.po b/addons/crm_claim/i18n/es_EC.po index aba4c6dae18..222f0550759 100644 --- a/addons/crm_claim/i18n/es_EC.po +++ b/addons/crm_claim/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/es_PY.po b/addons/crm_claim/i18n/es_PY.po index 54555434c17..c6e15dfa7ed 100644 --- a/addons/crm_claim/i18n/es_PY.po +++ b/addons/crm_claim/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/fi.po b/addons/crm_claim/i18n/fi.po index e68c0eb3627..69386ca2ff1 100644 --- a/addons/crm_claim/i18n/fi.po +++ b/addons/crm_claim/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/fr.po b/addons/crm_claim/i18n/fr.po index 220303f368d..c3e57fbb80b 100644 --- a/addons/crm_claim/i18n/fr.po +++ b/addons/crm_claim/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/gl.po b/addons/crm_claim/i18n/gl.po index 594020b4474..6b3be076a9e 100644 --- a/addons/crm_claim/i18n/gl.po +++ b/addons/crm_claim/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/gu.po b/addons/crm_claim/i18n/gu.po index 2b1be098af7..44111c27768 100644 --- a/addons/crm_claim/i18n/gu.po +++ b/addons/crm_claim/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/hr.po b/addons/crm_claim/i18n/hr.po index 8aca7619403..c6b23436efc 100644 --- a/addons/crm_claim/i18n/hr.po +++ b/addons/crm_claim/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/hu.po b/addons/crm_claim/i18n/hu.po index 4358c35b6f4..03af5f84d69 100644 --- a/addons/crm_claim/i18n/hu.po +++ b/addons/crm_claim/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/it.po b/addons/crm_claim/i18n/it.po index bc1dbcf358c..99ce71049d4 100644 --- a/addons/crm_claim/i18n/it.po +++ b/addons/crm_claim/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ja.po b/addons/crm_claim/i18n/ja.po index 28acc2dd81d..0cc5bb18c8d 100644 --- a/addons/crm_claim/i18n/ja.po +++ b/addons/crm_claim/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/lt.po b/addons/crm_claim/i18n/lt.po index acc6005da2b..4e3362979b8 100644 --- a/addons/crm_claim/i18n/lt.po +++ b/addons/crm_claim/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/mk.po b/addons/crm_claim/i18n/mk.po index 883b76f3092..dbc42ac3e77 100644 --- a/addons/crm_claim/i18n/mk.po +++ b/addons/crm_claim/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/mn.po b/addons/crm_claim/i18n/mn.po index bf55a72f7e4..526a53d0bcd 100644 --- a/addons/crm_claim/i18n/mn.po +++ b/addons/crm_claim/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/nb.po b/addons/crm_claim/i18n/nb.po index 385fec03373..0916535bfba 100644 --- a/addons/crm_claim/i18n/nb.po +++ b/addons/crm_claim/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/nl.po b/addons/crm_claim/i18n/nl.po index 457a57a656d..edaeacc4cc5 100644 --- a/addons/crm_claim/i18n/nl.po +++ b/addons/crm_claim/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/pl.po b/addons/crm_claim/i18n/pl.po index efcc82f250b..ac32bbf7110 100644 --- a/addons/crm_claim/i18n/pl.po +++ b/addons/crm_claim/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/pt.po b/addons/crm_claim/i18n/pt.po index 41efdbb100b..939b8b7ace9 100644 --- a/addons/crm_claim/i18n/pt.po +++ b/addons/crm_claim/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/pt_BR.po b/addons/crm_claim/i18n/pt_BR.po index fa0edd97dbb..7a930f2410e 100644 --- a/addons/crm_claim/i18n/pt_BR.po +++ b/addons/crm_claim/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ro.po b/addons/crm_claim/i18n/ro.po index d92abdfecd2..df9d95d1bec 100644 --- a/addons/crm_claim/i18n/ro.po +++ b/addons/crm_claim/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ru.po b/addons/crm_claim/i18n/ru.po index 4d1fd6488eb..65a25bd625b 100644 --- a/addons/crm_claim/i18n/ru.po +++ b/addons/crm_claim/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sl.po b/addons/crm_claim/i18n/sl.po index b2132296a46..7f79500243f 100644 --- a/addons/crm_claim/i18n/sl.po +++ b/addons/crm_claim/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sq.po b/addons/crm_claim/i18n/sq.po index 31304eb655b..596104373f7 100644 --- a/addons/crm_claim/i18n/sq.po +++ b/addons/crm_claim/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sr.po b/addons/crm_claim/i18n/sr.po index d85eeaa2f9b..0804f100ed9 100644 --- a/addons/crm_claim/i18n/sr.po +++ b/addons/crm_claim/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sr@latin.po b/addons/crm_claim/i18n/sr@latin.po index 4f7f20f8e0b..603c559a13d 100644 --- a/addons/crm_claim/i18n/sr@latin.po +++ b/addons/crm_claim/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/sv.po b/addons/crm_claim/i18n/sv.po index 5f68fc886e5..73385e00b77 100644 --- a/addons/crm_claim/i18n/sv.po +++ b/addons/crm_claim/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/tr.po b/addons/crm_claim/i18n/tr.po index 72cd97dae46..beb9777c223 100644 --- a/addons/crm_claim/i18n/tr.po +++ b/addons/crm_claim/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/zh_CN.po b/addons/crm_claim/i18n/zh_CN.po index 625562556a0..dbc8f159e90 100644 --- a/addons/crm_claim/i18n/zh_CN.po +++ b/addons/crm_claim/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/zh_TW.po b/addons/crm_claim/i18n/zh_TW.po index 204a9c58f24..f94f219da85 100644 --- a/addons/crm_claim/i18n/zh_TW.po +++ b/addons/crm_claim/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_helpdesk/i18n/ar.po b/addons/crm_helpdesk/i18n/ar.po index e3edc6103f8..6cc34df6cd4 100644 --- a/addons/crm_helpdesk/i18n/ar.po +++ b/addons/crm_helpdesk/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/bg.po b/addons/crm_helpdesk/i18n/bg.po index 6de778309f1..5c7a94a29c5 100644 --- a/addons/crm_helpdesk/i18n/bg.po +++ b/addons/crm_helpdesk/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ca.po b/addons/crm_helpdesk/i18n/ca.po index 42546c682fb..5eca12897c9 100644 --- a/addons/crm_helpdesk/i18n/ca.po +++ b/addons/crm_helpdesk/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/da.po b/addons/crm_helpdesk/i18n/da.po index e48fd3a7a6b..a414bf4df02 100644 --- a/addons/crm_helpdesk/i18n/da.po +++ b/addons/crm_helpdesk/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/de.po b/addons/crm_helpdesk/i18n/de.po index 3e8780c6e69..e52fd636c20 100644 --- a/addons/crm_helpdesk/i18n/de.po +++ b/addons/crm_helpdesk/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/el.po b/addons/crm_helpdesk/i18n/el.po index bbbc5fd283a..d1e85237cec 100644 --- a/addons/crm_helpdesk/i18n/el.po +++ b/addons/crm_helpdesk/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es.po b/addons/crm_helpdesk/i18n/es.po index 31930f56ad2..29cf376259f 100644 --- a/addons/crm_helpdesk/i18n/es.po +++ b/addons/crm_helpdesk/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es_CR.po b/addons/crm_helpdesk/i18n/es_CR.po index b029e4ba037..ae2805c49c4 100644 --- a/addons/crm_helpdesk/i18n/es_CR.po +++ b/addons/crm_helpdesk/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/es_PY.po b/addons/crm_helpdesk/i18n/es_PY.po index 55442b7070f..b940f334a64 100644 --- a/addons/crm_helpdesk/i18n/es_PY.po +++ b/addons/crm_helpdesk/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/fi.po b/addons/crm_helpdesk/i18n/fi.po index 4f128543930..432b93dd1d6 100644 --- a/addons/crm_helpdesk/i18n/fi.po +++ b/addons/crm_helpdesk/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/fr.po b/addons/crm_helpdesk/i18n/fr.po index 92eb03d2454..9c1328c8c2d 100644 --- a/addons/crm_helpdesk/i18n/fr.po +++ b/addons/crm_helpdesk/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/gl.po b/addons/crm_helpdesk/i18n/gl.po index dbfb5575809..022335238e4 100644 --- a/addons/crm_helpdesk/i18n/gl.po +++ b/addons/crm_helpdesk/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/gu.po b/addons/crm_helpdesk/i18n/gu.po index 93843c472f4..403d4a859d8 100644 --- a/addons/crm_helpdesk/i18n/gu.po +++ b/addons/crm_helpdesk/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/hr.po b/addons/crm_helpdesk/i18n/hr.po index 838664dd329..8950988b335 100644 --- a/addons/crm_helpdesk/i18n/hr.po +++ b/addons/crm_helpdesk/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/hu.po b/addons/crm_helpdesk/i18n/hu.po index bf49826ec9e..7bfe62499ce 100644 --- a/addons/crm_helpdesk/i18n/hu.po +++ b/addons/crm_helpdesk/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/it.po b/addons/crm_helpdesk/i18n/it.po index e87e3cae407..a4cde9b8783 100644 --- a/addons/crm_helpdesk/i18n/it.po +++ b/addons/crm_helpdesk/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ja.po b/addons/crm_helpdesk/i18n/ja.po index f6d5e32929a..196b1d5fc46 100644 --- a/addons/crm_helpdesk/i18n/ja.po +++ b/addons/crm_helpdesk/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/lt.po b/addons/crm_helpdesk/i18n/lt.po index 56ee172e140..23b7bf371c2 100644 --- a/addons/crm_helpdesk/i18n/lt.po +++ b/addons/crm_helpdesk/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/lv.po b/addons/crm_helpdesk/i18n/lv.po index 6e25127f940..496b65b9af0 100644 --- a/addons/crm_helpdesk/i18n/lv.po +++ b/addons/crm_helpdesk/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/mk.po b/addons/crm_helpdesk/i18n/mk.po index 482b3a7e3cd..b5d5d70cb25 100644 --- a/addons/crm_helpdesk/i18n/mk.po +++ b/addons/crm_helpdesk/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/mn.po b/addons/crm_helpdesk/i18n/mn.po index df29a62c24a..850e8e5fa7c 100644 --- a/addons/crm_helpdesk/i18n/mn.po +++ b/addons/crm_helpdesk/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/nb.po b/addons/crm_helpdesk/i18n/nb.po index ce015b6f2d1..4ab05ecfa1c 100644 --- a/addons/crm_helpdesk/i18n/nb.po +++ b/addons/crm_helpdesk/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/nl.po b/addons/crm_helpdesk/i18n/nl.po index eb68d43bf9f..7ab9dfe1c27 100644 --- a/addons/crm_helpdesk/i18n/nl.po +++ b/addons/crm_helpdesk/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pl.po b/addons/crm_helpdesk/i18n/pl.po index c74dd387dc1..00c9f24d41b 100644 --- a/addons/crm_helpdesk/i18n/pl.po +++ b/addons/crm_helpdesk/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pt.po b/addons/crm_helpdesk/i18n/pt.po index 76fe43bbc34..3f0a160f9fb 100644 --- a/addons/crm_helpdesk/i18n/pt.po +++ b/addons/crm_helpdesk/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/pt_BR.po b/addons/crm_helpdesk/i18n/pt_BR.po index 98145184bcc..943cdda53c4 100644 --- a/addons/crm_helpdesk/i18n/pt_BR.po +++ b/addons/crm_helpdesk/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ro.po b/addons/crm_helpdesk/i18n/ro.po index 0f3f300d814..9d0a440bbc2 100644 --- a/addons/crm_helpdesk/i18n/ro.po +++ b/addons/crm_helpdesk/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ru.po b/addons/crm_helpdesk/i18n/ru.po index 4506a451f0e..96d012f5bfa 100644 --- a/addons/crm_helpdesk/i18n/ru.po +++ b/addons/crm_helpdesk/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sl.po b/addons/crm_helpdesk/i18n/sl.po index 78a5ee37369..d1439b54ce8 100644 --- a/addons/crm_helpdesk/i18n/sl.po +++ b/addons/crm_helpdesk/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sq.po b/addons/crm_helpdesk/i18n/sq.po index af9f55907e7..dc22f5ee792 100644 --- a/addons/crm_helpdesk/i18n/sq.po +++ b/addons/crm_helpdesk/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sr.po b/addons/crm_helpdesk/i18n/sr.po index 53f6fe65b96..2ccb5aa996e 100644 --- a/addons/crm_helpdesk/i18n/sr.po +++ b/addons/crm_helpdesk/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sr@latin.po b/addons/crm_helpdesk/i18n/sr@latin.po index 1a6bef669ed..7e8804fb084 100644 --- a/addons/crm_helpdesk/i18n/sr@latin.po +++ b/addons/crm_helpdesk/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/sv.po b/addons/crm_helpdesk/i18n/sv.po index 86a3de59d28..9d433067a85 100644 --- a/addons/crm_helpdesk/i18n/sv.po +++ b/addons/crm_helpdesk/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/tr.po b/addons/crm_helpdesk/i18n/tr.po index 9f955175db9..28d7e151adb 100644 --- a/addons/crm_helpdesk/i18n/tr.po +++ b/addons/crm_helpdesk/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/zh_CN.po b/addons/crm_helpdesk/i18n/zh_CN.po index 8869c0ab793..d8eb2b0768f 100644 --- a/addons/crm_helpdesk/i18n/zh_CN.po +++ b/addons/crm_helpdesk/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/zh_TW.po b/addons/crm_helpdesk/i18n/zh_TW.po index c1a8021a3a7..4f08bf1df55 100644 --- a/addons/crm_helpdesk/i18n/zh_TW.po +++ b/addons/crm_helpdesk/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ar.po b/addons/crm_partner_assign/i18n/ar.po index 5df80005ffc..aa9398c7c25 100644 --- a/addons/crm_partner_assign/i18n/ar.po +++ b/addons/crm_partner_assign/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/bg.po b/addons/crm_partner_assign/i18n/bg.po index 2255c17864e..0804a49d2ad 100644 --- a/addons/crm_partner_assign/i18n/bg.po +++ b/addons/crm_partner_assign/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ca.po b/addons/crm_partner_assign/i18n/ca.po index e102afb0bed..2d86b7907ce 100644 --- a/addons/crm_partner_assign/i18n/ca.po +++ b/addons/crm_partner_assign/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/da.po b/addons/crm_partner_assign/i18n/da.po index 4a85eb10332..e3177e231d1 100644 --- a/addons/crm_partner_assign/i18n/da.po +++ b/addons/crm_partner_assign/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/de.po b/addons/crm_partner_assign/i18n/de.po index 3dbe3f37243..5f6c6bfe67d 100644 --- a/addons/crm_partner_assign/i18n/de.po +++ b/addons/crm_partner_assign/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/el.po b/addons/crm_partner_assign/i18n/el.po index 4d4500dc029..cd15b354f4a 100644 --- a/addons/crm_partner_assign/i18n/el.po +++ b/addons/crm_partner_assign/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/es.po b/addons/crm_partner_assign/i18n/es.po index 713f2946e81..cbab80bacf0 100644 --- a/addons/crm_partner_assign/i18n/es.po +++ b/addons/crm_partner_assign/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/es_CR.po b/addons/crm_partner_assign/i18n/es_CR.po index d3c68ebdbde..b4075ee865b 100644 --- a/addons/crm_partner_assign/i18n/es_CR.po +++ b/addons/crm_partner_assign/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/es_PY.po b/addons/crm_partner_assign/i18n/es_PY.po index c012ed18865..53bfb382cfa 100644 --- a/addons/crm_partner_assign/i18n/es_PY.po +++ b/addons/crm_partner_assign/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/fi.po b/addons/crm_partner_assign/i18n/fi.po index 75e07456589..55bea342743 100644 --- a/addons/crm_partner_assign/i18n/fi.po +++ b/addons/crm_partner_assign/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/fr.po b/addons/crm_partner_assign/i18n/fr.po index d3d243071ad..6a43545ab62 100644 --- a/addons/crm_partner_assign/i18n/fr.po +++ b/addons/crm_partner_assign/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/gl.po b/addons/crm_partner_assign/i18n/gl.po index c87c259cec2..3bc57a76416 100644 --- a/addons/crm_partner_assign/i18n/gl.po +++ b/addons/crm_partner_assign/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/hr.po b/addons/crm_partner_assign/i18n/hr.po index 788f59cb5c9..0b23e0744bf 100644 --- a/addons/crm_partner_assign/i18n/hr.po +++ b/addons/crm_partner_assign/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/hu.po b/addons/crm_partner_assign/i18n/hu.po index 34ba86ba8b6..b171ec4125c 100644 --- a/addons/crm_partner_assign/i18n/hu.po +++ b/addons/crm_partner_assign/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/it.po b/addons/crm_partner_assign/i18n/it.po index 1709ed48fba..0bf7a82a535 100644 --- a/addons/crm_partner_assign/i18n/it.po +++ b/addons/crm_partner_assign/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ja.po b/addons/crm_partner_assign/i18n/ja.po index f1e87065ee9..d5b68fdd6eb 100644 --- a/addons/crm_partner_assign/i18n/ja.po +++ b/addons/crm_partner_assign/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/lt.po b/addons/crm_partner_assign/i18n/lt.po index 9dcb96351bd..6957a27d12c 100644 --- a/addons/crm_partner_assign/i18n/lt.po +++ b/addons/crm_partner_assign/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/lv.po b/addons/crm_partner_assign/i18n/lv.po index 84926e4e39f..7c873b129cb 100644 --- a/addons/crm_partner_assign/i18n/lv.po +++ b/addons/crm_partner_assign/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/mk.po b/addons/crm_partner_assign/i18n/mk.po index 231d43ab062..c05a1a3c11a 100644 --- a/addons/crm_partner_assign/i18n/mk.po +++ b/addons/crm_partner_assign/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -60,7 +60,7 @@ msgstr "Автоматски санирани HTML содржини" #. module: crm_partner_assign #: view:crm.lead:0 msgid "Forward" -msgstr "" +msgstr "Напред" #. module: crm_partner_assign #: view:res.partner:0 @@ -909,7 +909,7 @@ msgstr "" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 msgid "High" -msgstr "" +msgstr "Висок" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,partner_ids:0 diff --git a/addons/crm_partner_assign/i18n/mn.po b/addons/crm_partner_assign/i18n/mn.po index 676f87ff0d9..5939b19df5d 100644 --- a/addons/crm_partner_assign/i18n/mn.po +++ b/addons/crm_partner_assign/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/nb.po b/addons/crm_partner_assign/i18n/nb.po index c35bdda6d69..4c92d1a5184 100644 --- a/addons/crm_partner_assign/i18n/nb.po +++ b/addons/crm_partner_assign/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/nl.po b/addons/crm_partner_assign/i18n/nl.po index 5f2ec226358..5026a444d21 100644 --- a/addons/crm_partner_assign/i18n/nl.po +++ b/addons/crm_partner_assign/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pl.po b/addons/crm_partner_assign/i18n/pl.po index ac8506af31c..18cd6422a2b 100644 --- a/addons/crm_partner_assign/i18n/pl.po +++ b/addons/crm_partner_assign/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pt.po b/addons/crm_partner_assign/i18n/pt.po index 6dc17a66238..af3ec822718 100644 --- a/addons/crm_partner_assign/i18n/pt.po +++ b/addons/crm_partner_assign/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/pt_BR.po b/addons/crm_partner_assign/i18n/pt_BR.po index 57005b904aa..e3d7b09abb4 100644 --- a/addons/crm_partner_assign/i18n/pt_BR.po +++ b/addons/crm_partner_assign/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ro.po b/addons/crm_partner_assign/i18n/ro.po index 93a97fe2dcc..b054fd9f93c 100644 --- a/addons/crm_partner_assign/i18n/ro.po +++ b/addons/crm_partner_assign/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ru.po b/addons/crm_partner_assign/i18n/ru.po index abe4e89da5d..2502add6aee 100644 --- a/addons/crm_partner_assign/i18n/ru.po +++ b/addons/crm_partner_assign/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sl.po b/addons/crm_partner_assign/i18n/sl.po index 17f618a0c7a..b4151acd158 100644 --- a/addons/crm_partner_assign/i18n/sl.po +++ b/addons/crm_partner_assign/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sq.po b/addons/crm_partner_assign/i18n/sq.po index ab52508b45a..edc4482ccea 100644 --- a/addons/crm_partner_assign/i18n/sq.po +++ b/addons/crm_partner_assign/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:39+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sr@latin.po b/addons/crm_partner_assign/i18n/sr@latin.po index 14619e4f126..6c1fa5da8a8 100644 --- a/addons/crm_partner_assign/i18n/sr@latin.po +++ b/addons/crm_partner_assign/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/sv.po b/addons/crm_partner_assign/i18n/sv.po index d5e2f824714..0e77ee34361 100644 --- a/addons/crm_partner_assign/i18n/sv.po +++ b/addons/crm_partner_assign/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/tr.po b/addons/crm_partner_assign/i18n/tr.po index 50849061455..620e1b8dd5e 100644 --- a/addons/crm_partner_assign/i18n/tr.po +++ b/addons/crm_partner_assign/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/zh_CN.po b/addons/crm_partner_assign/i18n/zh_CN.po index a974d1e6462..7ccdf9557df 100644 --- a/addons/crm_partner_assign/i18n/zh_CN.po +++ b/addons/crm_partner_assign/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/zh_TW.po b/addons/crm_partner_assign/i18n/zh_TW.po index 8126e5dc0ff..c3ed162d89e 100644 --- a/addons/crm_partner_assign/i18n/zh_TW.po +++ b/addons/crm_partner_assign/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:36+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_profiling/i18n/ar.po b/addons/crm_profiling/i18n/ar.po index a8000ca537a..a7fda8e0f4d 100644 --- a/addons/crm_profiling/i18n/ar.po +++ b/addons/crm_profiling/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bg.po b/addons/crm_profiling/i18n/bg.po index d2a4cd1ade3..eec489118c7 100644 --- a/addons/crm_profiling/i18n/bg.po +++ b/addons/crm_profiling/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/bs.po b/addons/crm_profiling/i18n/bs.po index 06a89538dc6..1de0ee5bdef 100644 --- a/addons/crm_profiling/i18n/bs.po +++ b/addons/crm_profiling/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ca.po b/addons/crm_profiling/i18n/ca.po index 8065959a686..e76d8d2fba4 100644 --- a/addons/crm_profiling/i18n/ca.po +++ b/addons/crm_profiling/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/cs.po b/addons/crm_profiling/i18n/cs.po index 3e2d0b0bcf9..86958f90645 100644 --- a/addons/crm_profiling/i18n/cs.po +++ b/addons/crm_profiling/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/da.po b/addons/crm_profiling/i18n/da.po index 1ae7a4dbb9a..099c3f80d99 100644 --- a/addons/crm_profiling/i18n/da.po +++ b/addons/crm_profiling/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/de.po b/addons/crm_profiling/i18n/de.po index 27526f7ff29..45755be09da 100644 --- a/addons/crm_profiling/i18n/de.po +++ b/addons/crm_profiling/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/el.po b/addons/crm_profiling/i18n/el.po index cbd4cfc427f..3a1c44176ad 100644 --- a/addons/crm_profiling/i18n/el.po +++ b/addons/crm_profiling/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/en_GB.po b/addons/crm_profiling/i18n/en_GB.po index 55ad48e5de9..6e0b3c84611 100644 --- a/addons/crm_profiling/i18n/en_GB.po +++ b/addons/crm_profiling/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es.po b/addons/crm_profiling/i18n/es.po index e4385905243..46f5744bdf9 100644 --- a/addons/crm_profiling/i18n/es.po +++ b/addons/crm_profiling/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_AR.po b/addons/crm_profiling/i18n/es_AR.po index 6cc17b991f4..38eef07baa0 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_CR.po b/addons/crm_profiling/i18n/es_CR.po index c6ccb95a05d..37a4c707812 100644 --- a/addons/crm_profiling/i18n/es_CR.po +++ b/addons/crm_profiling/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_EC.po b/addons/crm_profiling/i18n/es_EC.po index 2516d1f6e96..c0085a667b0 100644 --- a/addons/crm_profiling/i18n/es_EC.po +++ b/addons/crm_profiling/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/es_PY.po b/addons/crm_profiling/i18n/es_PY.po index 7ed1c8ed5a6..4df60230783 100644 --- a/addons/crm_profiling/i18n/es_PY.po +++ b/addons/crm_profiling/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/et.po b/addons/crm_profiling/i18n/et.po index c559e1c6531..84b828a7655 100644 --- a/addons/crm_profiling/i18n/et.po +++ b/addons/crm_profiling/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/fi.po b/addons/crm_profiling/i18n/fi.po index 30b038649b9..a2fcf656173 100644 --- a/addons/crm_profiling/i18n/fi.po +++ b/addons/crm_profiling/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/fr.po b/addons/crm_profiling/i18n/fr.po index 9836ccbfa01..1611d26c9ad 100644 --- a/addons/crm_profiling/i18n/fr.po +++ b/addons/crm_profiling/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gl.po b/addons/crm_profiling/i18n/gl.po index f9a928da2f4..00a853649c0 100644 --- a/addons/crm_profiling/i18n/gl.po +++ b/addons/crm_profiling/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/gu.po b/addons/crm_profiling/i18n/gu.po index 4facc791c3f..5ac8559ade0 100644 --- a/addons/crm_profiling/i18n/gu.po +++ b/addons/crm_profiling/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/hr.po b/addons/crm_profiling/i18n/hr.po index 5b52e1f507e..521dfb37c0d 100644 --- a/addons/crm_profiling/i18n/hr.po +++ b/addons/crm_profiling/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/hu.po b/addons/crm_profiling/i18n/hu.po index 3605999b84a..e136e8d6779 100644 --- a/addons/crm_profiling/i18n/hu.po +++ b/addons/crm_profiling/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/id.po b/addons/crm_profiling/i18n/id.po index bdfb4f94f4f..470b3d2d29a 100644 --- a/addons/crm_profiling/i18n/id.po +++ b/addons/crm_profiling/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/it.po b/addons/crm_profiling/i18n/it.po index fc97e0b4414..8c964d48f90 100644 --- a/addons/crm_profiling/i18n/it.po +++ b/addons/crm_profiling/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ja.po b/addons/crm_profiling/i18n/ja.po index 31c7737d9cd..005fa2669da 100644 --- a/addons/crm_profiling/i18n/ja.po +++ b/addons/crm_profiling/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ko.po b/addons/crm_profiling/i18n/ko.po index ba67ed5ea47..6b355688777 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lt.po b/addons/crm_profiling/i18n/lt.po index d73a0047ca0..55038f63027 100644 --- a/addons/crm_profiling/i18n/lt.po +++ b/addons/crm_profiling/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/lv.po b/addons/crm_profiling/i18n/lv.po index 71a7cea5474..7be11d235b2 100644 --- a/addons/crm_profiling/i18n/lv.po +++ b/addons/crm_profiling/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/mk.po b/addons/crm_profiling/i18n/mk.po index 72bfca99de8..51ef5c996cf 100644 --- a/addons/crm_profiling/i18n/mk.po +++ b/addons/crm_profiling/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/mn.po b/addons/crm_profiling/i18n/mn.po index ca2098abb56..4221e6161dd 100644 --- a/addons/crm_profiling/i18n/mn.po +++ b/addons/crm_profiling/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nb.po b/addons/crm_profiling/i18n/nb.po index 5bd3a5fe4b4..170c3d13153 100644 --- a/addons/crm_profiling/i18n/nb.po +++ b/addons/crm_profiling/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl.po b/addons/crm_profiling/i18n/nl.po index 858c758a502..609d354beac 100644 --- a/addons/crm_profiling/i18n/nl.po +++ b/addons/crm_profiling/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/nl_BE.po b/addons/crm_profiling/i18n/nl_BE.po index 138a9b90858..b73d0af45e1 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pl.po b/addons/crm_profiling/i18n/pl.po index dba06a0d4ff..a7edf072ff8 100644 --- a/addons/crm_profiling/i18n/pl.po +++ b/addons/crm_profiling/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt.po b/addons/crm_profiling/i18n/pt.po index 90c1514547e..72ed04049c1 100644 --- a/addons/crm_profiling/i18n/pt.po +++ b/addons/crm_profiling/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/pt_BR.po b/addons/crm_profiling/i18n/pt_BR.po index 66e64e5282d..7586ce38079 100644 --- a/addons/crm_profiling/i18n/pt_BR.po +++ b/addons/crm_profiling/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ro.po b/addons/crm_profiling/i18n/ro.po index 120ad73a857..915e48a7236 100644 --- a/addons/crm_profiling/i18n/ro.po +++ b/addons/crm_profiling/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/ru.po b/addons/crm_profiling/i18n/ru.po index f0ceee73960..721ffd6dd60 100644 --- a/addons/crm_profiling/i18n/ru.po +++ b/addons/crm_profiling/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sk.po b/addons/crm_profiling/i18n/sk.po index 96b5759895e..1eb9d4dd50a 100644 --- a/addons/crm_profiling/i18n/sk.po +++ b/addons/crm_profiling/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sl.po b/addons/crm_profiling/i18n/sl.po index df1c51a1644..419d929e3c2 100644 --- a/addons/crm_profiling/i18n/sl.po +++ b/addons/crm_profiling/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sq.po b/addons/crm_profiling/i18n/sq.po index 795ae855f36..f05bbb49a01 100644 --- a/addons/crm_profiling/i18n/sq.po +++ b/addons/crm_profiling/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr.po b/addons/crm_profiling/i18n/sr.po index f216b7d1aa5..159a29847e6 100644 --- a/addons/crm_profiling/i18n/sr.po +++ b/addons/crm_profiling/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sr@latin.po b/addons/crm_profiling/i18n/sr@latin.po index 28a5dfe808f..49a053f46eb 100644 --- a/addons/crm_profiling/i18n/sr@latin.po +++ b/addons/crm_profiling/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/sv.po b/addons/crm_profiling/i18n/sv.po index 265229f5bfa..a1c7b8d4bf5 100644 --- a/addons/crm_profiling/i18n/sv.po +++ b/addons/crm_profiling/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tlh.po b/addons/crm_profiling/i18n/tlh.po index 56a41ae405c..ac820cc645b 100644 --- a/addons/crm_profiling/i18n/tlh.po +++ b/addons/crm_profiling/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/tr.po b/addons/crm_profiling/i18n/tr.po index 31d98323cda..36bac31feb2 100644 --- a/addons/crm_profiling/i18n/tr.po +++ b/addons/crm_profiling/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/uk.po b/addons/crm_profiling/i18n/uk.po index c8f2b2c4cc1..dae7d73da30 100644 --- a/addons/crm_profiling/i18n/uk.po +++ b/addons/crm_profiling/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/vi.po b/addons/crm_profiling/i18n/vi.po index 0112b582d99..0b2a8da7bd1 100644 --- a/addons/crm_profiling/i18n/vi.po +++ b/addons/crm_profiling/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_CN.po b/addons/crm_profiling/i18n/zh_CN.po index 4079fb15299..ac234a387dc 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_profiling/i18n/zh_TW.po b/addons/crm_profiling/i18n/zh_TW.po index 65ce3e7fb2d..27a4ad6ff64 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 diff --git a/addons/crm_todo/i18n/ar.po b/addons/crm_todo/i18n/ar.po index cf748c862f6..723bc403f95 100644 --- a/addons/crm_todo/i18n/ar.po +++ b/addons/crm_todo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/de.po b/addons/crm_todo/i18n/de.po index 9b9606d232e..b39da5a287a 100644 --- a/addons/crm_todo/i18n/de.po +++ b/addons/crm_todo/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/en_GB.po b/addons/crm_todo/i18n/en_GB.po index 104d866144a..8f88df3a2e5 100644 --- a/addons/crm_todo/i18n/en_GB.po +++ b/addons/crm_todo/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es.po b/addons/crm_todo/i18n/es.po index b387e66fca3..795ce043b58 100644 --- a/addons/crm_todo/i18n/es.po +++ b/addons/crm_todo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/es_CR.po b/addons/crm_todo/i18n/es_CR.po index 872e0b863f1..d50143aa107 100644 --- a/addons/crm_todo/i18n/es_CR.po +++ b/addons/crm_todo/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fi.po b/addons/crm_todo/i18n/fi.po index 1d5fb5d495f..c3308010b5e 100644 --- a/addons/crm_todo/i18n/fi.po +++ b/addons/crm_todo/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/fr.po b/addons/crm_todo/i18n/fr.po index c5a0fd02efb..2a0d87a925b 100644 --- a/addons/crm_todo/i18n/fr.po +++ b/addons/crm_todo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/gu.po b/addons/crm_todo/i18n/gu.po index fe77c4b96c5..111a9205401 100644 --- a/addons/crm_todo/i18n/gu.po +++ b/addons/crm_todo/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/hr.po b/addons/crm_todo/i18n/hr.po index 186aa143572..261ffbb4727 100644 --- a/addons/crm_todo/i18n/hr.po +++ b/addons/crm_todo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/hu.po b/addons/crm_todo/i18n/hu.po index e235446caf8..985c49de069 100644 --- a/addons/crm_todo/i18n/hu.po +++ b/addons/crm_todo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/it.po b/addons/crm_todo/i18n/it.po index 4dd992841d9..8b54039edb7 100644 --- a/addons/crm_todo/i18n/it.po +++ b/addons/crm_todo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ja.po b/addons/crm_todo/i18n/ja.po index 81c5d3b943d..bb512f4da72 100644 --- a/addons/crm_todo/i18n/ja.po +++ b/addons/crm_todo/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/lt.po b/addons/crm_todo/i18n/lt.po index 600cca9d5db..ce5921959cd 100644 --- a/addons/crm_todo/i18n/lt.po +++ b/addons/crm_todo/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/mk.po b/addons/crm_todo/i18n/mk.po index 51bb21f3772..39dc8669712 100644 --- a/addons/crm_todo/i18n/mk.po +++ b/addons/crm_todo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/mn.po b/addons/crm_todo/i18n/mn.po index 6928983f4e9..7018cbac3a0 100644 --- a/addons/crm_todo/i18n/mn.po +++ b/addons/crm_todo/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nb.po b/addons/crm_todo/i18n/nb.po index 4ca0fb5db6b..cdf6308b330 100644 --- a/addons/crm_todo/i18n/nb.po +++ b/addons/crm_todo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/nl.po b/addons/crm_todo/i18n/nl.po index c9b0eecb1b1..6f279593a91 100644 --- a/addons/crm_todo/i18n/nl.po +++ b/addons/crm_todo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pl.po b/addons/crm_todo/i18n/pl.po index f4eb3b2f936..13eb9fca775 100644 --- a/addons/crm_todo/i18n/pl.po +++ b/addons/crm_todo/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt.po b/addons/crm_todo/i18n/pt.po index acb92f08e5e..1ad076847fc 100644 --- a/addons/crm_todo/i18n/pt.po +++ b/addons/crm_todo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/pt_BR.po b/addons/crm_todo/i18n/pt_BR.po index ceb5c97e6e5..30b9df7fce2 100644 --- a/addons/crm_todo/i18n/pt_BR.po +++ b/addons/crm_todo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ro.po b/addons/crm_todo/i18n/ro.po index d4546f3863d..113d12fc301 100644 --- a/addons/crm_todo/i18n/ro.po +++ b/addons/crm_todo/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ru.po b/addons/crm_todo/i18n/ru.po index 5da09e71103..54930532c6d 100644 --- a/addons/crm_todo/i18n/ru.po +++ b/addons/crm_todo/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sl.po b/addons/crm_todo/i18n/sl.po index 1a0c7316414..6eb1aa70c22 100644 --- a/addons/crm_todo/i18n/sl.po +++ b/addons/crm_todo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sr@latin.po b/addons/crm_todo/i18n/sr@latin.po index 01f1e8413d1..273cd0d5e4a 100644 --- a/addons/crm_todo/i18n/sr@latin.po +++ b/addons/crm_todo/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/sv.po b/addons/crm_todo/i18n/sv.po index 434fe95c235..af963694e37 100644 --- a/addons/crm_todo/i18n/sv.po +++ b/addons/crm_todo/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/tr.po b/addons/crm_todo/i18n/tr.po index b563764838b..0d0ebd03b30 100644 --- a/addons/crm_todo/i18n/tr.po +++ b/addons/crm_todo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_CN.po b/addons/crm_todo/i18n/zh_CN.po index 13c07e77813..75624acb4bb 100644 --- a/addons/crm_todo/i18n/zh_CN.po +++ b/addons/crm_todo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/zh_TW.po b/addons/crm_todo/i18n/zh_TW.po index 2bc3a543abb..8dbdad70ffc 100644 --- a/addons/crm_todo/i18n/zh_TW.po +++ b/addons/crm_todo/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/decimal_precision/i18n/ar.po b/addons/decimal_precision/i18n/ar.po index b5b55d38803..772337bd481 100644 --- a/addons/decimal_precision/i18n/ar.po +++ b/addons/decimal_precision/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/bg.po b/addons/decimal_precision/i18n/bg.po index ee179718ec7..fdc4a5a5695 100644 --- a/addons/decimal_precision/i18n/bg.po +++ b/addons/decimal_precision/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ca.po b/addons/decimal_precision/i18n/ca.po index 3281a659d92..d017d10a583 100644 --- a/addons/decimal_precision/i18n/ca.po +++ b/addons/decimal_precision/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/cs.po b/addons/decimal_precision/i18n/cs.po index 46cc5d71946..ab25f0a244e 100644 --- a/addons/decimal_precision/i18n/cs.po +++ b/addons/decimal_precision/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/da.po b/addons/decimal_precision/i18n/da.po index f46fb3c1fa5..554fdd9cb4b 100644 --- a/addons/decimal_precision/i18n/da.po +++ b/addons/decimal_precision/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/de.po b/addons/decimal_precision/i18n/de.po index cf40dbb9bb1..36ce9e9fadb 100644 --- a/addons/decimal_precision/i18n/de.po +++ b/addons/decimal_precision/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/el.po b/addons/decimal_precision/i18n/el.po index ff7d42cdc5c..a82d06e7c6c 100644 --- a/addons/decimal_precision/i18n/el.po +++ b/addons/decimal_precision/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/en_GB.po b/addons/decimal_precision/i18n/en_GB.po index e38cc6309cc..501a6d60cde 100644 --- a/addons/decimal_precision/i18n/en_GB.po +++ b/addons/decimal_precision/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es.po b/addons/decimal_precision/i18n/es.po index 680a7a7a720..63e864757bd 100644 --- a/addons/decimal_precision/i18n/es.po +++ b/addons/decimal_precision/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_CR.po b/addons/decimal_precision/i18n/es_CR.po index 25e46a9f020..efb238a4fef 100644 --- a/addons/decimal_precision/i18n/es_CR.po +++ b/addons/decimal_precision/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_EC.po b/addons/decimal_precision/i18n/es_EC.po index 3c70e588905..a9535e7956d 100644 --- a/addons/decimal_precision/i18n/es_EC.po +++ b/addons/decimal_precision/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_MX.po b/addons/decimal_precision/i18n/es_MX.po index 387e1de9889..3d2d91fa784 100644 --- a/addons/decimal_precision/i18n/es_MX.po +++ b/addons/decimal_precision/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/es_PY.po b/addons/decimal_precision/i18n/es_PY.po index b9bb1a1bd30..7677a991563 100644 --- a/addons/decimal_precision/i18n/es_PY.po +++ b/addons/decimal_precision/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fi.po b/addons/decimal_precision/i18n/fi.po index 551f3779b8c..d98996c1b0c 100644 --- a/addons/decimal_precision/i18n/fi.po +++ b/addons/decimal_precision/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/fr.po b/addons/decimal_precision/i18n/fr.po index 0d3e3f2925a..6535cda55c7 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gl.po b/addons/decimal_precision/i18n/gl.po index 79271ec9cad..8b46914371a 100644 --- a/addons/decimal_precision/i18n/gl.po +++ b/addons/decimal_precision/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/gu.po b/addons/decimal_precision/i18n/gu.po index e4e062a54cc..44956334e98 100644 --- a/addons/decimal_precision/i18n/gu.po +++ b/addons/decimal_precision/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hr.po b/addons/decimal_precision/i18n/hr.po index 887a9b70eb6..f525c3b0ea1 100644 --- a/addons/decimal_precision/i18n/hr.po +++ b/addons/decimal_precision/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/hu.po b/addons/decimal_precision/i18n/hu.po index 2ebfcdfca6b..3eb1e3efc71 100644 --- a/addons/decimal_precision/i18n/hu.po +++ b/addons/decimal_precision/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/id.po b/addons/decimal_precision/i18n/id.po index 3c6ac675810..1d0e34dee10 100644 --- a/addons/decimal_precision/i18n/id.po +++ b/addons/decimal_precision/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/it.po b/addons/decimal_precision/i18n/it.po index f2dfe338e92..bf30e66958e 100644 --- a/addons/decimal_precision/i18n/it.po +++ b/addons/decimal_precision/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ja.po b/addons/decimal_precision/i18n/ja.po index b15486ef415..6d432761407 100644 --- a/addons/decimal_precision/i18n/ja.po +++ b/addons/decimal_precision/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lt.po b/addons/decimal_precision/i18n/lt.po index 90c3436e752..578c87299ef 100644 --- a/addons/decimal_precision/i18n/lt.po +++ b/addons/decimal_precision/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/lv.po b/addons/decimal_precision/i18n/lv.po index ba98649b613..4d87e074714 100644 --- a/addons/decimal_precision/i18n/lv.po +++ b/addons/decimal_precision/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/mk.po b/addons/decimal_precision/i18n/mk.po index 8cbab8a7082..c357b7312ac 100644 --- a/addons/decimal_precision/i18n/mk.po +++ b/addons/decimal_precision/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/mn.po b/addons/decimal_precision/i18n/mn.po index 7391ea345fc..a1b6aaf2aa0 100644 --- a/addons/decimal_precision/i18n/mn.po +++ b/addons/decimal_precision/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nb.po b/addons/decimal_precision/i18n/nb.po index da756eeae82..05cf2af1d3b 100644 --- a/addons/decimal_precision/i18n/nb.po +++ b/addons/decimal_precision/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl.po b/addons/decimal_precision/i18n/nl.po index baf5b2fd93c..1adbacc200b 100644 --- a/addons/decimal_precision/i18n/nl.po +++ b/addons/decimal_precision/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/nl_BE.po b/addons/decimal_precision/i18n/nl_BE.po index 2b59ed0c987..f338061c672 100644 --- a/addons/decimal_precision/i18n/nl_BE.po +++ b/addons/decimal_precision/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pl.po b/addons/decimal_precision/i18n/pl.po index d15293aeaa9..20d7c74d708 100644 --- a/addons/decimal_precision/i18n/pl.po +++ b/addons/decimal_precision/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pt.po b/addons/decimal_precision/i18n/pt.po index 5cb310f6105..f01cdcbad1b 100644 --- a/addons/decimal_precision/i18n/pt.po +++ b/addons/decimal_precision/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/pt_BR.po b/addons/decimal_precision/i18n/pt_BR.po index 9ae0d4dffc4..c020802a90a 100644 --- a/addons/decimal_precision/i18n/pt_BR.po +++ b/addons/decimal_precision/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ro.po b/addons/decimal_precision/i18n/ro.po index 3cfe4c41f27..2e21066f83f 100644 --- a/addons/decimal_precision/i18n/ro.po +++ b/addons/decimal_precision/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ru.po b/addons/decimal_precision/i18n/ru.po index 41a3e061009..9664c505935 100644 --- a/addons/decimal_precision/i18n/ru.po +++ b/addons/decimal_precision/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sk.po b/addons/decimal_precision/i18n/sk.po index 36ca8940796..676197e19bd 100644 --- a/addons/decimal_precision/i18n/sk.po +++ b/addons/decimal_precision/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sl.po b/addons/decimal_precision/i18n/sl.po index 07f371e99e2..2120735d053 100644 --- a/addons/decimal_precision/i18n/sl.po +++ b/addons/decimal_precision/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr.po b/addons/decimal_precision/i18n/sr.po index a2c1a9b79cc..9931f73e56b 100644 --- a/addons/decimal_precision/i18n/sr.po +++ b/addons/decimal_precision/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sr@latin.po b/addons/decimal_precision/i18n/sr@latin.po index 0e2dc190b81..23de933d6ff 100644 --- a/addons/decimal_precision/i18n/sr@latin.po +++ b/addons/decimal_precision/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/sv.po b/addons/decimal_precision/i18n/sv.po index 1d1d7dd33a3..2e9466b7785 100644 --- a/addons/decimal_precision/i18n/sv.po +++ b/addons/decimal_precision/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/tr.po b/addons/decimal_precision/i18n/tr.po index 27d4218c2ec..9b7b4eda6c7 100644 --- a/addons/decimal_precision/i18n/tr.po +++ b/addons/decimal_precision/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/vi.po b/addons/decimal_precision/i18n/vi.po index ee7a006f392..deb57e1e930 100644 --- a/addons/decimal_precision/i18n/vi.po +++ b/addons/decimal_precision/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_CN.po b/addons/decimal_precision/i18n/zh_CN.po index b7cc46cfe98..d9e42a33eda 100644 --- a/addons/decimal_precision/i18n/zh_CN.po +++ b/addons/decimal_precision/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/zh_TW.po b/addons/decimal_precision/i18n/zh_TW.po index 95e9f69eb52..b0eba51a97e 100644 --- a/addons/decimal_precision/i18n/zh_TW.po +++ b/addons/decimal_precision/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/delivery/i18n/ar.po b/addons/delivery/i18n/ar.po index 83782615875..5e3ab8b35a7 100644 --- a/addons/delivery/i18n/ar.po +++ b/addons/delivery/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bg.po b/addons/delivery/i18n/bg.po index 0bd3cc52562..5faf3dbbfef 100644 --- a/addons/delivery/i18n/bg.po +++ b/addons/delivery/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bs.po b/addons/delivery/i18n/bs.po index 7be215e8b90..fa1e6c65b47 100644 --- a/addons/delivery/i18n/bs.po +++ b/addons/delivery/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ca.po b/addons/delivery/i18n/ca.po index 607b74bf60f..79f94ee92ec 100644 --- a/addons/delivery/i18n/ca.po +++ b/addons/delivery/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/cs.po b/addons/delivery/i18n/cs.po index 18e5e2385c5..be6db10879d 100644 --- a/addons/delivery/i18n/cs.po +++ b/addons/delivery/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/da.po b/addons/delivery/i18n/da.po index 0f5d37542bc..b8aafbe8828 100644 --- a/addons/delivery/i18n/da.po +++ b/addons/delivery/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/de.po b/addons/delivery/i18n/de.po index 46ef38ef144..bcc927ccbc0 100644 --- a/addons/delivery/i18n/de.po +++ b/addons/delivery/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/el.po b/addons/delivery/i18n/el.po index 18e81f396ac..9314dd3960c 100644 --- a/addons/delivery/i18n/el.po +++ b/addons/delivery/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es.po b/addons/delivery/i18n/es.po index 598a9cb3b44..34bb0bd410b 100644 --- a/addons/delivery/i18n/es.po +++ b/addons/delivery/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index b2fdd31e788..8f73861f135 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_CR.po b/addons/delivery/i18n/es_CR.po index 74b5588e57b..61dace7f00b 100644 --- a/addons/delivery/i18n/es_CR.po +++ b/addons/delivery/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_EC.po b/addons/delivery/i18n/es_EC.po index 12b2964236b..e25113fee27 100644 --- a/addons/delivery/i18n/es_EC.po +++ b/addons/delivery/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_MX.po b/addons/delivery/i18n/es_MX.po index 2daec51bb5d..ac8a2b0a759 100644 --- a/addons/delivery/i18n/es_MX.po +++ b/addons/delivery/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_PY.po b/addons/delivery/i18n/es_PY.po index 96b5bf54292..048aab2723d 100644 --- a/addons/delivery/i18n/es_PY.po +++ b/addons/delivery/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/et.po b/addons/delivery/i18n/et.po index 6a2dc07c25f..65e090054a3 100644 --- a/addons/delivery/i18n/et.po +++ b/addons/delivery/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fi.po b/addons/delivery/i18n/fi.po index 25f58e90c26..e0bda515228 100644 --- a/addons/delivery/i18n/fi.po +++ b/addons/delivery/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fr.po b/addons/delivery/i18n/fr.po index e4153390eec..3226002b88e 100644 --- a/addons/delivery/i18n/fr.po +++ b/addons/delivery/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/gl.po b/addons/delivery/i18n/gl.po index 73e07cdf2cd..5530e2f78d3 100644 --- a/addons/delivery/i18n/gl.po +++ b/addons/delivery/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hi.po b/addons/delivery/i18n/hi.po index 4341a4e8c19..5387968a082 100644 --- a/addons/delivery/i18n/hi.po +++ b/addons/delivery/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hr.po b/addons/delivery/i18n/hr.po index 1ea1e199688..3354bfd6b31 100644 --- a/addons/delivery/i18n/hr.po +++ b/addons/delivery/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hu.po b/addons/delivery/i18n/hu.po index 5abf1fc9eac..ca19e5bcf16 100644 --- a/addons/delivery/i18n/hu.po +++ b/addons/delivery/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/id.po b/addons/delivery/i18n/id.po index b27d488cf55..54d041d6cc3 100644 --- a/addons/delivery/i18n/id.po +++ b/addons/delivery/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/it.po b/addons/delivery/i18n/it.po index e7b5fdad172..8cb7d92ebca 100644 --- a/addons/delivery/i18n/it.po +++ b/addons/delivery/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ja.po b/addons/delivery/i18n/ja.po index c7e9a00b2b0..6628b60dcdb 100644 --- a/addons/delivery/i18n/ja.po +++ b/addons/delivery/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ko.po b/addons/delivery/i18n/ko.po index d73d57c8bde..03ed0182f71 100644 --- a/addons/delivery/i18n/ko.po +++ b/addons/delivery/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lt.po b/addons/delivery/i18n/lt.po index 4414b9f4b7a..92995bbbad1 100644 --- a/addons/delivery/i18n/lt.po +++ b/addons/delivery/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lv.po b/addons/delivery/i18n/lv.po index fb7e730f534..11d3bb4142b 100644 --- a/addons/delivery/i18n/lv.po +++ b/addons/delivery/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/mk.po b/addons/delivery/i18n/mk.po index 98af3df02e3..e2379ef4242 100644 --- a/addons/delivery/i18n/mk.po +++ b/addons/delivery/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/mn.po b/addons/delivery/i18n/mn.po index d09a6286cf7..be0b4993d72 100644 --- a/addons/delivery/i18n/mn.po +++ b/addons/delivery/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nb.po b/addons/delivery/i18n/nb.po index bf47b5a1433..18dab041a2a 100644 --- a/addons/delivery/i18n/nb.po +++ b/addons/delivery/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl.po b/addons/delivery/i18n/nl.po index 28cf1c825cb..d2f1aa13685 100644 --- a/addons/delivery/i18n/nl.po +++ b/addons/delivery/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index de2ed0b79b9..bbeb9199f6a 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pl.po b/addons/delivery/i18n/pl.po index c0518e8085b..ab464d34500 100644 --- a/addons/delivery/i18n/pl.po +++ b/addons/delivery/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt.po b/addons/delivery/i18n/pt.po index 037ac70d7df..2a6e55a5142 100644 --- a/addons/delivery/i18n/pt.po +++ b/addons/delivery/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index 73f1e05f473..07cc708e6ad 100644 --- a/addons/delivery/i18n/pt_BR.po +++ b/addons/delivery/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ro.po b/addons/delivery/i18n/ro.po index 0b98418bb15..927a9882193 100644 --- a/addons/delivery/i18n/ro.po +++ b/addons/delivery/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ru.po b/addons/delivery/i18n/ru.po index 6b1d578ac87..44cd72a59f8 100644 --- a/addons/delivery/i18n/ru.po +++ b/addons/delivery/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sl.po b/addons/delivery/i18n/sl.po index 6b0213a90e1..bf38c26ca5a 100644 --- a/addons/delivery/i18n/sl.po +++ b/addons/delivery/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sq.po b/addons/delivery/i18n/sq.po index f1c74886e4e..26064208bdd 100644 --- a/addons/delivery/i18n/sq.po +++ b/addons/delivery/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr.po b/addons/delivery/i18n/sr.po index 512bc3d95a9..37a746f3c8b 100644 --- a/addons/delivery/i18n/sr.po +++ b/addons/delivery/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr@latin.po b/addons/delivery/i18n/sr@latin.po index 7c8fcf564b3..d6977223934 100644 --- a/addons/delivery/i18n/sr@latin.po +++ b/addons/delivery/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sv.po b/addons/delivery/i18n/sv.po index ff8d22b63c1..0aba9717c1e 100644 --- a/addons/delivery/i18n/sv.po +++ b/addons/delivery/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/th.po b/addons/delivery/i18n/th.po index 8c70ac227ee..534d4387bb9 100644 --- a/addons/delivery/i18n/th.po +++ b/addons/delivery/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tlh.po b/addons/delivery/i18n/tlh.po index 649e1d18127..5760c7cf424 100644 --- a/addons/delivery/i18n/tlh.po +++ b/addons/delivery/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tr.po b/addons/delivery/i18n/tr.po index bcb72f3ae43..3c40b0a4f21 100644 --- a/addons/delivery/i18n/tr.po +++ b/addons/delivery/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/uk.po b/addons/delivery/i18n/uk.po index c9f201c6994..a2cb40e2f7b 100644 --- a/addons/delivery/i18n/uk.po +++ b/addons/delivery/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/vi.po b/addons/delivery/i18n/vi.po index 2f66abe3c2a..c3f90d6d4e8 100644 --- a/addons/delivery/i18n/vi.po +++ b/addons/delivery/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index b54cbb30bab..5dfefafabb6 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index 4a205d8c869..b915b1fdc5a 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/document/i18n/ar.po b/addons/document/i18n/ar.po index d0284436e5b..0e0c725f57e 100644 --- a/addons/document/i18n/ar.po +++ b/addons/document/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bg.po b/addons/document/i18n/bg.po index 7f96aad633d..9a517ebf9e5 100644 --- a/addons/document/i18n/bg.po +++ b/addons/document/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bs.po b/addons/document/i18n/bs.po index 5ccf306bd75..d1e3f3f8308 100644 --- a/addons/document/i18n/bs.po +++ b/addons/document/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ca.po b/addons/document/i18n/ca.po index dbd75e0246e..04022c5d3f4 100644 --- a/addons/document/i18n/ca.po +++ b/addons/document/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/cs.po b/addons/document/i18n/cs.po index c7e6056ae65..cce5bdf1c67 100644 --- a/addons/document/i18n/cs.po +++ b/addons/document/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/da.po b/addons/document/i18n/da.po index c4d8983b017..269419ab660 100644 --- a/addons/document/i18n/da.po +++ b/addons/document/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/de.po b/addons/document/i18n/de.po index e9b6c97bd31..9fe095c75bc 100644 --- a/addons/document/i18n/de.po +++ b/addons/document/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/el.po b/addons/document/i18n/el.po index 426c742dd00..50705e99613 100644 --- a/addons/document/i18n/el.po +++ b/addons/document/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es.po b/addons/document/i18n/es.po index 6d8c96cbf73..f24cdcaec7f 100644 --- a/addons/document/i18n/es.po +++ b/addons/document/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_AR.po b/addons/document/i18n/es_AR.po index 1da76b2acd9..82bf5bb8a3d 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_CR.po b/addons/document/i18n/es_CR.po index 32c49766629..16bdfb151b7 100644 --- a/addons/document/i18n/es_CR.po +++ b/addons/document/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_EC.po b/addons/document/i18n/es_EC.po index 8810b44f700..b7fd8e7b139 100644 --- a/addons/document/i18n/es_EC.po +++ b/addons/document/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es_PY.po b/addons/document/i18n/es_PY.po index b3340e4d3fe..62394d828e8 100644 --- a/addons/document/i18n/es_PY.po +++ b/addons/document/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/et.po b/addons/document/i18n/et.po index b6628bf4328..a9e69f983e8 100644 --- a/addons/document/i18n/et.po +++ b/addons/document/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fi.po b/addons/document/i18n/fi.po index 69911e628a3..94d13281a45 100644 --- a/addons/document/i18n/fi.po +++ b/addons/document/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fr.po b/addons/document/i18n/fr.po index f0f7c709227..280497b58ac 100644 --- a/addons/document/i18n/fr.po +++ b/addons/document/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gl.po b/addons/document/i18n/gl.po index 7ca5c587d2f..811c8063a09 100644 --- a/addons/document/i18n/gl.po +++ b/addons/document/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gu.po b/addons/document/i18n/gu.po index 5a152ab0387..afabf143aef 100644 --- a/addons/document/i18n/gu.po +++ b/addons/document/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hi.po b/addons/document/i18n/hi.po index f1304373d53..b59530050c5 100644 --- a/addons/document/i18n/hi.po +++ b/addons/document/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hr.po b/addons/document/i18n/hr.po index aa9ab302c44..19245990b6f 100644 --- a/addons/document/i18n/hr.po +++ b/addons/document/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hu.po b/addons/document/i18n/hu.po index 8d8e09001f2..f923c4f8d90 100644 --- a/addons/document/i18n/hu.po +++ b/addons/document/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/id.po b/addons/document/i18n/id.po index 3c7732947bf..d9fa245285f 100644 --- a/addons/document/i18n/id.po +++ b/addons/document/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/it.po b/addons/document/i18n/it.po index e45bf479e99..d9e102e58b4 100644 --- a/addons/document/i18n/it.po +++ b/addons/document/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ja.po b/addons/document/i18n/ja.po index b8c757a582d..a44c3d0bb82 100644 --- a/addons/document/i18n/ja.po +++ b/addons/document/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ko.po b/addons/document/i18n/ko.po index 56eb935a142..86f0d480a36 100644 --- a/addons/document/i18n/ko.po +++ b/addons/document/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lt.po b/addons/document/i18n/lt.po index f1b1d054df7..9dbfbc6935d 100644 --- a/addons/document/i18n/lt.po +++ b/addons/document/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lv.po b/addons/document/i18n/lv.po index ca1b1fc98c2..205cb1b6ab5 100644 --- a/addons/document/i18n/lv.po +++ b/addons/document/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/mk.po b/addons/document/i18n/mk.po index e2229f88c49..dfef6527399 100644 --- a/addons/document/i18n/mk.po +++ b/addons/document/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/mn.po b/addons/document/i18n/mn.po index d744159f07c..37ddd187ee0 100644 --- a/addons/document/i18n/mn.po +++ b/addons/document/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nb.po b/addons/document/i18n/nb.po index 930ba69ec24..620c8845018 100644 --- a/addons/document/i18n/nb.po +++ b/addons/document/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl.po b/addons/document/i18n/nl.po index 6c2bae038f0..9f5ab5ab26f 100644 --- a/addons/document/i18n/nl.po +++ b/addons/document/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index 3b50014033c..f64a16571f5 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pl.po b/addons/document/i18n/pl.po index 39c5db0e30f..1040b1354e1 100644 --- a/addons/document/i18n/pl.po +++ b/addons/document/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt.po b/addons/document/i18n/pt.po index 4f4549e3c35..10c3af994b6 100644 --- a/addons/document/i18n/pt.po +++ b/addons/document/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index 976463c28f5..f04bad6cf32 100644 --- a/addons/document/i18n/pt_BR.po +++ b/addons/document/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ro.po b/addons/document/i18n/ro.po index d3ef6c7bded..176447757da 100644 --- a/addons/document/i18n/ro.po +++ b/addons/document/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ru.po b/addons/document/i18n/ru.po index e8127e64deb..0b2f1dc98ab 100644 --- a/addons/document/i18n/ru.po +++ b/addons/document/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sk.po b/addons/document/i18n/sk.po index 625906a549f..0b86c28807a 100644 --- a/addons/document/i18n/sk.po +++ b/addons/document/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sl.po b/addons/document/i18n/sl.po index 622af9a8b63..9ff6e2f1bd4 100644 --- a/addons/document/i18n/sl.po +++ b/addons/document/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sq.po b/addons/document/i18n/sq.po index c16b7a33f5e..fc99bddaaed 100644 --- a/addons/document/i18n/sq.po +++ b/addons/document/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr.po b/addons/document/i18n/sr.po index 9d85d49fb9f..84ecdbefc53 100644 --- a/addons/document/i18n/sr.po +++ b/addons/document/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:40+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr@latin.po b/addons/document/i18n/sr@latin.po index 60a6fcaac1f..9e995399d73 100644 --- a/addons/document/i18n/sr@latin.po +++ b/addons/document/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sv.po b/addons/document/i18n/sv.po index 5def04164b6..da56cddf047 100644 --- a/addons/document/i18n/sv.po +++ b/addons/document/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tlh.po b/addons/document/i18n/tlh.po index 843de96c42b..3302ffaa99d 100644 --- a/addons/document/i18n/tlh.po +++ b/addons/document/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tr.po b/addons/document/i18n/tr.po index 7f303ea3795..8a10fa60096 100644 --- a/addons/document/i18n/tr.po +++ b/addons/document/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/uk.po b/addons/document/i18n/uk.po index a1df99a23c9..7672fc964da 100644 --- a/addons/document/i18n/uk.po +++ b/addons/document/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/vi.po b/addons/document/i18n/vi.po index 24a357d2330..c3ae4d8bc1f 100644 --- a/addons/document/i18n/vi.po +++ b/addons/document/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_CN.po b/addons/document/i18n/zh_CN.po index 32e539f7173..74c1d199177 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_HK.po b/addons/document/i18n/zh_HK.po index 8362ea46cca..1cbf236b401 100644 --- a/addons/document/i18n/zh_HK.po +++ b/addons/document/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/zh_TW.po b/addons/document/i18n/zh_TW.po index 285a6df4ec9..0e6f876f0fd 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document_ftp/i18n/ar.po b/addons/document_ftp/i18n/ar.po index 792549f64dc..1f2e93d47b8 100644 --- a/addons/document_ftp/i18n/ar.po +++ b/addons/document_ftp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/bg.po b/addons/document_ftp/i18n/bg.po index bae2d43b252..aeb06442b0e 100644 --- a/addons/document_ftp/i18n/bg.po +++ b/addons/document_ftp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ca.po b/addons/document_ftp/i18n/ca.po index c96a6c45db5..00202b714e8 100644 --- a/addons/document_ftp/i18n/ca.po +++ b/addons/document_ftp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/cs.po b/addons/document_ftp/i18n/cs.po index 951c95b0af7..08582a07e7e 100644 --- a/addons/document_ftp/i18n/cs.po +++ b/addons/document_ftp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/da.po b/addons/document_ftp/i18n/da.po index 7236ca0c5b5..697cfd023c0 100644 --- a/addons/document_ftp/i18n/da.po +++ b/addons/document_ftp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/de.po b/addons/document_ftp/i18n/de.po index e9e55821dfa..b70cd914aab 100644 --- a/addons/document_ftp/i18n/de.po +++ b/addons/document_ftp/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/el.po b/addons/document_ftp/i18n/el.po index 7cf0c631efa..d01ed254d3b 100644 --- a/addons/document_ftp/i18n/el.po +++ b/addons/document_ftp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/en_GB.po b/addons/document_ftp/i18n/en_GB.po index 1355cfea693..5b850e8023a 100644 --- a/addons/document_ftp/i18n/en_GB.po +++ b/addons/document_ftp/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es.po b/addons/document_ftp/i18n/es.po index 354fbd33a4b..2a869c777f2 100644 --- a/addons/document_ftp/i18n/es.po +++ b/addons/document_ftp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_CR.po b/addons/document_ftp/i18n/es_CR.po index 38ba109f1a3..b01c147984c 100644 --- a/addons/document_ftp/i18n/es_CR.po +++ b/addons/document_ftp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_EC.po b/addons/document_ftp/i18n/es_EC.po index 9e964f2d44c..66970fc78e9 100644 --- a/addons/document_ftp/i18n/es_EC.po +++ b/addons/document_ftp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/es_PY.po b/addons/document_ftp/i18n/es_PY.po index c6804f6fe63..8df4b204824 100644 --- a/addons/document_ftp/i18n/es_PY.po +++ b/addons/document_ftp/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/et.po b/addons/document_ftp/i18n/et.po index 80b7db36545..3c2a5d67e01 100644 --- a/addons/document_ftp/i18n/et.po +++ b/addons/document_ftp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/fi.po b/addons/document_ftp/i18n/fi.po index 06effc8c320..efd8295f95b 100644 --- a/addons/document_ftp/i18n/fi.po +++ b/addons/document_ftp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/fr.po b/addons/document_ftp/i18n/fr.po index 062d24699ac..9261495dfbf 100644 --- a/addons/document_ftp/i18n/fr.po +++ b/addons/document_ftp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/gl.po b/addons/document_ftp/i18n/gl.po index 00e2d9a44db..bb2a4cce971 100644 --- a/addons/document_ftp/i18n/gl.po +++ b/addons/document_ftp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/hr.po b/addons/document_ftp/i18n/hr.po index c495e9d621b..d6abfcd2133 100644 --- a/addons/document_ftp/i18n/hr.po +++ b/addons/document_ftp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/hu.po b/addons/document_ftp/i18n/hu.po index e1fd6ff4165..87117e655e9 100644 --- a/addons/document_ftp/i18n/hu.po +++ b/addons/document_ftp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/it.po b/addons/document_ftp/i18n/it.po index f844765483d..d8289d99dc9 100644 --- a/addons/document_ftp/i18n/it.po +++ b/addons/document_ftp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ja.po b/addons/document_ftp/i18n/ja.po index 72c00518b8c..f770dc6586c 100644 --- a/addons/document_ftp/i18n/ja.po +++ b/addons/document_ftp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/mk.po b/addons/document_ftp/i18n/mk.po index fdcd9ea69f1..d6f29adcfad 100644 --- a/addons/document_ftp/i18n/mk.po +++ b/addons/document_ftp/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/mn.po b/addons/document_ftp/i18n/mn.po index 542a0be2ac3..97e595ba7eb 100644 --- a/addons/document_ftp/i18n/mn.po +++ b/addons/document_ftp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/nb.po b/addons/document_ftp/i18n/nb.po index ef0c0f45655..b16ddb6f9ab 100644 --- a/addons/document_ftp/i18n/nb.po +++ b/addons/document_ftp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/nl.po b/addons/document_ftp/i18n/nl.po index bc0b7122373..f82ba970f81 100644 --- a/addons/document_ftp/i18n/nl.po +++ b/addons/document_ftp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pl.po b/addons/document_ftp/i18n/pl.po index 00cd98c9016..4ef2b595886 100644 --- a/addons/document_ftp/i18n/pl.po +++ b/addons/document_ftp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pt.po b/addons/document_ftp/i18n/pt.po index 419226ccef3..ac66bde00b7 100644 --- a/addons/document_ftp/i18n/pt.po +++ b/addons/document_ftp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/pt_BR.po b/addons/document_ftp/i18n/pt_BR.po index c338d3e244d..4109f6ba184 100644 --- a/addons/document_ftp/i18n/pt_BR.po +++ b/addons/document_ftp/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ro.po b/addons/document_ftp/i18n/ro.po index 2bbe09c8d1c..da4d23eb9f3 100644 --- a/addons/document_ftp/i18n/ro.po +++ b/addons/document_ftp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/ru.po b/addons/document_ftp/i18n/ru.po index b8f88feb6fe..b0daa97fe74 100644 --- a/addons/document_ftp/i18n/ru.po +++ b/addons/document_ftp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sk.po b/addons/document_ftp/i18n/sk.po index 6e823eac381..7586e74be0c 100644 --- a/addons/document_ftp/i18n/sk.po +++ b/addons/document_ftp/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sl.po b/addons/document_ftp/i18n/sl.po index b7dd2c15d80..b8ebd31cf9e 100644 --- a/addons/document_ftp/i18n/sl.po +++ b/addons/document_ftp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sr.po b/addons/document_ftp/i18n/sr.po index 677308c46a6..30a735898ef 100644 --- a/addons/document_ftp/i18n/sr.po +++ b/addons/document_ftp/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sr@latin.po b/addons/document_ftp/i18n/sr@latin.po index 936a754e65b..fc54a04e403 100644 --- a/addons/document_ftp/i18n/sr@latin.po +++ b/addons/document_ftp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/sv.po b/addons/document_ftp/i18n/sv.po index ef8af4f3a6e..e7f682aab41 100644 --- a/addons/document_ftp/i18n/sv.po +++ b/addons/document_ftp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/tr.po b/addons/document_ftp/i18n/tr.po index f52d7468cfa..0edeed3ab0e 100644 --- a/addons/document_ftp/i18n/tr.po +++ b/addons/document_ftp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/vi.po b/addons/document_ftp/i18n/vi.po index 3e0de38d03a..bbc856cc02a 100644 --- a/addons/document_ftp/i18n/vi.po +++ b/addons/document_ftp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/zh_CN.po b/addons/document_ftp/i18n/zh_CN.po index 2589218a37e..3b176c5be44 100644 --- a/addons/document_ftp/i18n/zh_CN.po +++ b/addons/document_ftp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_ftp/i18n/zh_TW.po b/addons/document_ftp/i18n/zh_TW.po index fa688ff344b..942d88da990 100644 --- a/addons/document_ftp/i18n/zh_TW.po +++ b/addons/document_ftp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_ftp #: view:document.ftp.configuration:0 diff --git a/addons/document_page/i18n/ar.po b/addons/document_page/i18n/ar.po index 255f235abd8..f09052ed070 100644 --- a/addons/document_page/i18n/ar.po +++ b/addons/document_page/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/bg.po b/addons/document_page/i18n/bg.po index bedf90a52cf..46732a56d9f 100644 --- a/addons/document_page/i18n/bg.po +++ b/addons/document_page/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/bs.po b/addons/document_page/i18n/bs.po index dacf38c07b4..8168af369c1 100644 --- a/addons/document_page/i18n/bs.po +++ b/addons/document_page/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ca.po b/addons/document_page/i18n/ca.po index 630cd0abaed..1e87d0b4fdc 100644 --- a/addons/document_page/i18n/ca.po +++ b/addons/document_page/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/cs.po b/addons/document_page/i18n/cs.po index ca8ed5f6cea..539c4c8ded5 100644 --- a/addons/document_page/i18n/cs.po +++ b/addons/document_page/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/da.po b/addons/document_page/i18n/da.po index cbf3e6002af..df3a293f535 100644 --- a/addons/document_page/i18n/da.po +++ b/addons/document_page/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/de.po b/addons/document_page/i18n/de.po index 06a6547cf29..c62bf3debe8 100644 --- a/addons/document_page/i18n/de.po +++ b/addons/document_page/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/el.po b/addons/document_page/i18n/el.po index ff7aa2a326b..4f3e9358df8 100644 --- a/addons/document_page/i18n/el.po +++ b/addons/document_page/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/es.po b/addons/document_page/i18n/es.po index 583ee231cc0..cb8aa1a3418 100644 --- a/addons/document_page/i18n/es.po +++ b/addons/document_page/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/et.po b/addons/document_page/i18n/et.po index 8b1e1f6038e..a36e8ec0420 100644 --- a/addons/document_page/i18n/et.po +++ b/addons/document_page/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/fi.po b/addons/document_page/i18n/fi.po index 8a213bc2c5f..dcfae6ce5e9 100644 --- a/addons/document_page/i18n/fi.po +++ b/addons/document_page/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/fr.po b/addons/document_page/i18n/fr.po index e50178380ed..82562d56cf6 100644 --- a/addons/document_page/i18n/fr.po +++ b/addons/document_page/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/gl.po b/addons/document_page/i18n/gl.po index 7ae142675a5..c8125b5588e 100644 --- a/addons/document_page/i18n/gl.po +++ b/addons/document_page/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/hr.po b/addons/document_page/i18n/hr.po index 2461dff7a05..074895a7e30 100644 --- a/addons/document_page/i18n/hr.po +++ b/addons/document_page/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/hu.po b/addons/document_page/i18n/hu.po index 4732afb0ad9..11b436f3026 100644 --- a/addons/document_page/i18n/hu.po +++ b/addons/document_page/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/id.po b/addons/document_page/i18n/id.po index 8b385e5014d..86cd85034e9 100644 --- a/addons/document_page/i18n/id.po +++ b/addons/document_page/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/it.po b/addons/document_page/i18n/it.po index d4c8908fbee..911f3f8fa94 100644 --- a/addons/document_page/i18n/it.po +++ b/addons/document_page/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ja.po b/addons/document_page/i18n/ja.po index 062f13d5262..da5a83fd9d7 100644 --- a/addons/document_page/i18n/ja.po +++ b/addons/document_page/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ko.po b/addons/document_page/i18n/ko.po index 92f10138b52..0a7e44843c5 100644 --- a/addons/document_page/i18n/ko.po +++ b/addons/document_page/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/lt.po b/addons/document_page/i18n/lt.po index cc12919bdc6..255e5e12250 100644 --- a/addons/document_page/i18n/lt.po +++ b/addons/document_page/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/lv.po b/addons/document_page/i18n/lv.po index 01b752ea841..9094c128749 100644 --- a/addons/document_page/i18n/lv.po +++ b/addons/document_page/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/mk.po b/addons/document_page/i18n/mk.po index ba2666a2147..ab308e90a37 100644 --- a/addons/document_page/i18n/mk.po +++ b/addons/document_page/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/mn.po b/addons/document_page/i18n/mn.po index 0ef9c8d2672..6063fb02a45 100644 --- a/addons/document_page/i18n/mn.po +++ b/addons/document_page/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/nb.po b/addons/document_page/i18n/nb.po index 81077307001..f73470ae019 100644 --- a/addons/document_page/i18n/nb.po +++ b/addons/document_page/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/nl.po b/addons/document_page/i18n/nl.po index 75858106e65..308b55f5d38 100644 --- a/addons/document_page/i18n/nl.po +++ b/addons/document_page/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pl.po b/addons/document_page/i18n/pl.po index 8c5ab8f3b60..513b1e2af3d 100644 --- a/addons/document_page/i18n/pl.po +++ b/addons/document_page/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pt.po b/addons/document_page/i18n/pt.po index cd3a3ad2e76..3695faf5bf8 100644 --- a/addons/document_page/i18n/pt.po +++ b/addons/document_page/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/pt_BR.po b/addons/document_page/i18n/pt_BR.po index 0c38bf56599..d31075b60e1 100644 --- a/addons/document_page/i18n/pt_BR.po +++ b/addons/document_page/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ro.po b/addons/document_page/i18n/ro.po index eff10e3f14a..c2d28d8071a 100644 --- a/addons/document_page/i18n/ro.po +++ b/addons/document_page/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/ru.po b/addons/document_page/i18n/ru.po index d664f3c08b9..027a6878100 100644 --- a/addons/document_page/i18n/ru.po +++ b/addons/document_page/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sk.po b/addons/document_page/i18n/sk.po index 402e5723e49..e89cc270bf8 100644 --- a/addons/document_page/i18n/sk.po +++ b/addons/document_page/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sl.po b/addons/document_page/i18n/sl.po index 3742d5474c7..b16cb719e28 100644 --- a/addons/document_page/i18n/sl.po +++ b/addons/document_page/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sq.po b/addons/document_page/i18n/sq.po index 306b311e903..3ff9280a39c 100644 --- a/addons/document_page/i18n/sq.po +++ b/addons/document_page/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sr.po b/addons/document_page/i18n/sr.po index 40fc17b74d6..8283e68d166 100644 --- a/addons/document_page/i18n/sr.po +++ b/addons/document_page/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sr@latin.po b/addons/document_page/i18n/sr@latin.po index 2e5b1b6b9c1..3b290df9658 100644 --- a/addons/document_page/i18n/sr@latin.po +++ b/addons/document_page/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/sv.po b/addons/document_page/i18n/sv.po index f193b8ce2cb..e07f128a659 100644 --- a/addons/document_page/i18n/sv.po +++ b/addons/document_page/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/tlh.po b/addons/document_page/i18n/tlh.po index 5712472fa86..d66199f89d6 100644 --- a/addons/document_page/i18n/tlh.po +++ b/addons/document_page/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/tr.po b/addons/document_page/i18n/tr.po index 5eb606bf9ba..a7b11244021 100644 --- a/addons/document_page/i18n/tr.po +++ b/addons/document_page/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/uk.po b/addons/document_page/i18n/uk.po index 79bb671ce31..d583104be39 100644 --- a/addons/document_page/i18n/uk.po +++ b/addons/document_page/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/vi.po b/addons/document_page/i18n/vi.po index 47f01f92877..42fcc83140e 100644 --- a/addons/document_page/i18n/vi.po +++ b/addons/document_page/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/zh_CN.po b/addons/document_page/i18n/zh_CN.po index 50b5c0f261c..5f191f327af 100644 --- a/addons/document_page/i18n/zh_CN.po +++ b/addons/document_page/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_page/i18n/zh_TW.po b/addons/document_page/i18n/zh_TW.po index 1281a76da4d..9c4e6987ac0 100644 --- a/addons/document_page/i18n/zh_TW.po +++ b/addons/document_page/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_page #: view:document.page:0 diff --git a/addons/document_webdav/i18n/ar.po b/addons/document_webdav/i18n/ar.po index 3fd4dd01733..b0a734ec612 100644 --- a/addons/document_webdav/i18n/ar.po +++ b/addons/document_webdav/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/bg.po b/addons/document_webdav/i18n/bg.po index 2e6434f65a6..66b470b7424 100644 --- a/addons/document_webdav/i18n/bg.po +++ b/addons/document_webdav/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ca.po b/addons/document_webdav/i18n/ca.po index d58b6ff6e50..aca3d6fb574 100644 --- a/addons/document_webdav/i18n/ca.po +++ b/addons/document_webdav/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/cs.po b/addons/document_webdav/i18n/cs.po index 73606d4175e..bdca605ed89 100644 --- a/addons/document_webdav/i18n/cs.po +++ b/addons/document_webdav/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/da.po b/addons/document_webdav/i18n/da.po index 1b577d13464..9a605df063a 100644 --- a/addons/document_webdav/i18n/da.po +++ b/addons/document_webdav/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/de.po b/addons/document_webdav/i18n/de.po index ea48ec871ce..54da39bc7ea 100644 --- a/addons/document_webdav/i18n/de.po +++ b/addons/document_webdav/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/el.po b/addons/document_webdav/i18n/el.po index 0dd7890dd47..03893cafaca 100644 --- a/addons/document_webdav/i18n/el.po +++ b/addons/document_webdav/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/en_GB.po b/addons/document_webdav/i18n/en_GB.po index e1a002d8dc2..426e187ddd7 100644 --- a/addons/document_webdav/i18n/en_GB.po +++ b/addons/document_webdav/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es.po b/addons/document_webdav/i18n/es.po index 0861f1dc448..64575ca5f8a 100644 --- a/addons/document_webdav/i18n/es.po +++ b/addons/document_webdav/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_CR.po b/addons/document_webdav/i18n/es_CR.po index d4fa60afb50..19ff14b7e32 100644 --- a/addons/document_webdav/i18n/es_CR.po +++ b/addons/document_webdav/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_EC.po b/addons/document_webdav/i18n/es_EC.po index 57fc65623a1..9e63821831a 100644 --- a/addons/document_webdav/i18n/es_EC.po +++ b/addons/document_webdav/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/es_PY.po b/addons/document_webdav/i18n/es_PY.po index cc0c762a055..5693b0aba16 100644 --- a/addons/document_webdav/i18n/es_PY.po +++ b/addons/document_webdav/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/et.po b/addons/document_webdav/i18n/et.po index 82ce4932ea2..3066df9f052 100644 --- a/addons/document_webdav/i18n/et.po +++ b/addons/document_webdav/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/eu.po b/addons/document_webdav/i18n/eu.po index 414528265a6..412066aa257 100644 --- a/addons/document_webdav/i18n/eu.po +++ b/addons/document_webdav/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fi.po b/addons/document_webdav/i18n/fi.po index 16597f5e805..4778d94325c 100644 --- a/addons/document_webdav/i18n/fi.po +++ b/addons/document_webdav/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/fr.po b/addons/document_webdav/i18n/fr.po index 1aa78f368ee..9fee561c6fa 100644 --- a/addons/document_webdav/i18n/fr.po +++ b/addons/document_webdav/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gl.po b/addons/document_webdav/i18n/gl.po index 35f382f4c34..c18e7acdaff 100644 --- a/addons/document_webdav/i18n/gl.po +++ b/addons/document_webdav/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/gu.po b/addons/document_webdav/i18n/gu.po index c1e5fa643c2..096b97b3b4c 100644 --- a/addons/document_webdav/i18n/gu.po +++ b/addons/document_webdav/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hr.po b/addons/document_webdav/i18n/hr.po index f99dca94891..f9cc93f291a 100644 --- a/addons/document_webdav/i18n/hr.po +++ b/addons/document_webdav/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/hu.po b/addons/document_webdav/i18n/hu.po index e1efa180526..ca77fe897b8 100644 --- a/addons/document_webdav/i18n/hu.po +++ b/addons/document_webdav/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/id.po b/addons/document_webdav/i18n/id.po index 24c2e53b6bf..b7d749afa7e 100644 --- a/addons/document_webdav/i18n/id.po +++ b/addons/document_webdav/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/it.po b/addons/document_webdav/i18n/it.po index b1202c22e67..33bc3ac5c2a 100644 --- a/addons/document_webdav/i18n/it.po +++ b/addons/document_webdav/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ja.po b/addons/document_webdav/i18n/ja.po index 1e0ce5bd2b0..061b0e4e50c 100644 --- a/addons/document_webdav/i18n/ja.po +++ b/addons/document_webdav/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/mk.po b/addons/document_webdav/i18n/mk.po index 53faec53c3a..caeba14179f 100644 --- a/addons/document_webdav/i18n/mk.po +++ b/addons/document_webdav/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/mn.po b/addons/document_webdav/i18n/mn.po index 1badea4f61b..a2a931807d4 100644 --- a/addons/document_webdav/i18n/mn.po +++ b/addons/document_webdav/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/nb.po b/addons/document_webdav/i18n/nb.po index d8dcfacbd38..5fa400eae69 100644 --- a/addons/document_webdav/i18n/nb.po +++ b/addons/document_webdav/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/nl.po b/addons/document_webdav/i18n/nl.po index 16f2609ca03..80e2e336d2d 100644 --- a/addons/document_webdav/i18n/nl.po +++ b/addons/document_webdav/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pl.po b/addons/document_webdav/i18n/pl.po index b37eeb0a894..15b253fdcef 100644 --- a/addons/document_webdav/i18n/pl.po +++ b/addons/document_webdav/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt.po b/addons/document_webdav/i18n/pt.po index 9b17a92e637..044c6878533 100644 --- a/addons/document_webdav/i18n/pt.po +++ b/addons/document_webdav/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/pt_BR.po b/addons/document_webdav/i18n/pt_BR.po index b10f981490f..0ae10794fdf 100644 --- a/addons/document_webdav/i18n/pt_BR.po +++ b/addons/document_webdav/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ro.po b/addons/document_webdav/i18n/ro.po index 55810b378bd..cd9469a17d1 100644 --- a/addons/document_webdav/i18n/ro.po +++ b/addons/document_webdav/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/ru.po b/addons/document_webdav/i18n/ru.po index 0cb88baea3b..c59dfa2fb13 100644 --- a/addons/document_webdav/i18n/ru.po +++ b/addons/document_webdav/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sl.po b/addons/document_webdav/i18n/sl.po index 80e2b8ea1a1..46b424b3004 100644 --- a/addons/document_webdav/i18n/sl.po +++ b/addons/document_webdav/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr.po b/addons/document_webdav/i18n/sr.po index 0e8f33766de..dcd0713b1b6 100644 --- a/addons/document_webdav/i18n/sr.po +++ b/addons/document_webdav/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sr@latin.po b/addons/document_webdav/i18n/sr@latin.po index bfa97e63bc9..98a3bdac5ec 100644 --- a/addons/document_webdav/i18n/sr@latin.po +++ b/addons/document_webdav/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/sv.po b/addons/document_webdav/i18n/sv.po index 086bc9efe54..bca7749e156 100644 --- a/addons/document_webdav/i18n/sv.po +++ b/addons/document_webdav/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/tr.po b/addons/document_webdav/i18n/tr.po index 34a1a07f5ac..5fe093cef61 100644 --- a/addons/document_webdav/i18n/tr.po +++ b/addons/document_webdav/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_CN.po b/addons/document_webdav/i18n/zh_CN.po index 6294547e5cd..7667d5de247 100644 --- a/addons/document_webdav/i18n/zh_CN.po +++ b/addons/document_webdav/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/document_webdav/i18n/zh_TW.po b/addons/document_webdav/i18n/zh_TW.po index 42c3ffb526b..57f789e8bc3 100644 --- a/addons/document_webdav/i18n/zh_TW.po +++ b/addons/document_webdav/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 diff --git a/addons/edi/i18n/ar.po b/addons/edi/i18n/ar.po index dad3507bb9e..3f529a48d4f 100644 --- a/addons/edi/i18n/ar.po +++ b/addons/edi/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/de.po b/addons/edi/i18n/de.po index d323f722709..a765cb890e3 100644 --- a/addons/edi/i18n/de.po +++ b/addons/edi/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es.po b/addons/edi/i18n/es.po index 733ac8822d8..326787d97ed 100644 --- a/addons/edi/i18n/es.po +++ b/addons/edi/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es_CR.po b/addons/edi/i18n/es_CR.po index 43cb1a7ff4e..d59047a05b6 100644 --- a/addons/edi/i18n/es_CR.po +++ b/addons/edi/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fi.po b/addons/edi/i18n/fi.po index 6979b3e8061..3b5705968e0 100644 --- a/addons/edi/i18n/fi.po +++ b/addons/edi/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fr.po b/addons/edi/i18n/fr.po index 3a4e6ab77ee..7b2ec6f9039 100644 --- a/addons/edi/i18n/fr.po +++ b/addons/edi/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hr.po b/addons/edi/i18n/hr.po index d7d35f25457..2640fb4337d 100644 --- a/addons/edi/i18n/hr.po +++ b/addons/edi/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hu.po b/addons/edi/i18n/hu.po index 65fa69f1d18..c40ed8e0acf 100644 --- a/addons/edi/i18n/hu.po +++ b/addons/edi/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/it.po b/addons/edi/i18n/it.po index ba983225cca..7bca9cc73f6 100644 --- a/addons/edi/i18n/it.po +++ b/addons/edi/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ja.po b/addons/edi/i18n/ja.po index 7503219111f..9a237755328 100644 --- a/addons/edi/i18n/ja.po +++ b/addons/edi/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/mk.po b/addons/edi/i18n/mk.po index 3ce432abfd7..b9436b26bdd 100644 --- a/addons/edi/i18n/mk.po +++ b/addons/edi/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: edi diff --git a/addons/edi/i18n/ml.po b/addons/edi/i18n/ml.po index b1a7591ab11..cf68a377a3e 100644 --- a/addons/edi/i18n/ml.po +++ b/addons/edi/i18n/ml.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/mn.po b/addons/edi/i18n/mn.po index 3d61297625a..6a3ef64672f 100644 --- a/addons/edi/i18n/mn.po +++ b/addons/edi/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nb.po b/addons/edi/i18n/nb.po index 31876d9790b..7f7302af707 100644 --- a/addons/edi/i18n/nb.po +++ b/addons/edi/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl.po b/addons/edi/i18n/nl.po index f09a564f917..8a0b6b12949 100644 --- a/addons/edi/i18n/nl.po +++ b/addons/edi/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl_BE.po b/addons/edi/i18n/nl_BE.po index ba42bd47020..cf2529df8bf 100644 --- a/addons/edi/i18n/nl_BE.po +++ b/addons/edi/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pl.po b/addons/edi/i18n/pl.po index 062a5593e11..3f67e3adbca 100644 --- a/addons/edi/i18n/pl.po +++ b/addons/edi/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt.po b/addons/edi/i18n/pt.po index 5c03a39dd8e..95404476826 100644 --- a/addons/edi/i18n/pt.po +++ b/addons/edi/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt_BR.po b/addons/edi/i18n/pt_BR.po index ab60cb331f1..a3a46b22ca1 100644 --- a/addons/edi/i18n/pt_BR.po +++ b/addons/edi/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ro.po b/addons/edi/i18n/ro.po index 9f13d88f095..d03eec1735b 100644 --- a/addons/edi/i18n/ro.po +++ b/addons/edi/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ru.po b/addons/edi/i18n/ru.po index 726345715f7..1b17c85558c 100644 --- a/addons/edi/i18n/ru.po +++ b/addons/edi/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/sl.po b/addons/edi/i18n/sl.po index 2e0ec1f16dc..83863a470e3 100644 --- a/addons/edi/i18n/sl.po +++ b/addons/edi/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/sv.po b/addons/edi/i18n/sv.po index ebd50b1eca2..dd2415c76d2 100644 --- a/addons/edi/i18n/sv.po +++ b/addons/edi/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/tr.po b/addons/edi/i18n/tr.po index b777247c178..2dcd885c9c9 100644 --- a/addons/edi/i18n/tr.po +++ b/addons/edi/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_CN.po b/addons/edi/i18n/zh_CN.po index 4a3da09eb16..650cdc77422 100644 --- a/addons/edi/i18n/zh_CN.po +++ b/addons/edi/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_TW.po b/addons/edi/i18n/zh_TW.po index 9ce2971a1df..fedc2ce9939 100644 --- a/addons/edi/i18n/zh_TW.po +++ b/addons/edi/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: edi #. openerp-web diff --git a/addons/email_template/i18n/ar.po b/addons/email_template/i18n/ar.po index 665efa3ffac..48cbbe0494a 100644 --- a/addons/email_template/i18n/ar.po +++ b/addons/email_template/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/bg.po b/addons/email_template/i18n/bg.po index 431408ab42f..fa003027ab1 100644 --- a/addons/email_template/i18n/bg.po +++ b/addons/email_template/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ca.po b/addons/email_template/i18n/ca.po index 3a1760eede7..1861a2b599f 100644 --- a/addons/email_template/i18n/ca.po +++ b/addons/email_template/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/cs.po b/addons/email_template/i18n/cs.po index 2c2b4d5a66f..3618d837ed9 100644 --- a/addons/email_template/i18n/cs.po +++ b/addons/email_template/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/da.po b/addons/email_template/i18n/da.po index 372411226a8..ead0c92d888 100644 --- a/addons/email_template/i18n/da.po +++ b/addons/email_template/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/de.po b/addons/email_template/i18n/de.po index fd6dab92d12..fbdf84c3985 100644 --- a/addons/email_template/i18n/de.po +++ b/addons/email_template/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es.po b/addons/email_template/i18n/es.po index 1de0aa39a99..9a4d9a9a02a 100644 --- a/addons/email_template/i18n/es.po +++ b/addons/email_template/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_CL.po b/addons/email_template/i18n/es_CL.po index c712319f4a8..e9109263954 100644 --- a/addons/email_template/i18n/es_CL.po +++ b/addons/email_template/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_CR.po b/addons/email_template/i18n/es_CR.po index e3b0662d010..dc0422abf70 100644 --- a/addons/email_template/i18n/es_CR.po +++ b/addons/email_template/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/es_EC.po b/addons/email_template/i18n/es_EC.po index 5b030853531..6d757e400ed 100644 --- a/addons/email_template/i18n/es_EC.po +++ b/addons/email_template/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/et.po b/addons/email_template/i18n/et.po index 6fe72e364b4..08a50f964f4 100644 --- a/addons/email_template/i18n/et.po +++ b/addons/email_template/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fa_AF.po b/addons/email_template/i18n/fa_AF.po index f325ae82a9f..dccc036ee87 100644 --- a/addons/email_template/i18n/fa_AF.po +++ b/addons/email_template/i18n/fa_AF.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fi.po b/addons/email_template/i18n/fi.po index 830acde49cd..6ff347d147b 100644 --- a/addons/email_template/i18n/fi.po +++ b/addons/email_template/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/fr.po b/addons/email_template/i18n/fr.po index 37ee649b7ce..c4489f8097f 100644 --- a/addons/email_template/i18n/fr.po +++ b/addons/email_template/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/hr.po b/addons/email_template/i18n/hr.po index 61054b50d90..f7b3b2623a7 100644 --- a/addons/email_template/i18n/hr.po +++ b/addons/email_template/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/hu.po b/addons/email_template/i18n/hu.po index 584fada116e..a14966bd56d 100644 --- a/addons/email_template/i18n/hu.po +++ b/addons/email_template/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/it.po b/addons/email_template/i18n/it.po index 2ebadcf83e5..b73688a4933 100644 --- a/addons/email_template/i18n/it.po +++ b/addons/email_template/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ja.po b/addons/email_template/i18n/ja.po index 52c41cd1137..26bb497dce0 100644 --- a/addons/email_template/i18n/ja.po +++ b/addons/email_template/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/mk.po b/addons/email_template/i18n/mk.po index 71ad32e0522..81e2f74e9a9 100644 --- a/addons/email_template/i18n/mk.po +++ b/addons/email_template/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: email_template diff --git a/addons/email_template/i18n/mn.po b/addons/email_template/i18n/mn.po index b9a2bd92573..e618ad6b72a 100644 --- a/addons/email_template/i18n/mn.po +++ b/addons/email_template/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:24+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nb.po b/addons/email_template/i18n/nb.po index eb156b0db63..ea36b4b505f 100644 --- a/addons/email_template/i18n/nb.po +++ b/addons/email_template/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/nl.po b/addons/email_template/i18n/nl.po index 62f8a84717c..c905597766c 100644 --- a/addons/email_template/i18n/nl.po +++ b/addons/email_template/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:24+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pl.po b/addons/email_template/i18n/pl.po index c846439a31d..f264abf6471 100644 --- a/addons/email_template/i18n/pl.po +++ b/addons/email_template/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pt.po b/addons/email_template/i18n/pt.po index 27cc5768322..eeca140e7d5 100644 --- a/addons/email_template/i18n/pt.po +++ b/addons/email_template/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/pt_BR.po b/addons/email_template/i18n/pt_BR.po index af790c5ef71..87620f1b3d0 100644 --- a/addons/email_template/i18n/pt_BR.po +++ b/addons/email_template/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ro.po b/addons/email_template/i18n/ro.po index fb72e3a2164..dec55ec1a87 100644 --- a/addons/email_template/i18n/ro.po +++ b/addons/email_template/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/ru.po b/addons/email_template/i18n/ru.po index 494071e093f..464592bb2d7 100644 --- a/addons/email_template/i18n/ru.po +++ b/addons/email_template/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sl.po b/addons/email_template/i18n/sl.po index 43ac00ec975..77071a34038 100644 --- a/addons/email_template/i18n/sl.po +++ b/addons/email_template/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sr.po b/addons/email_template/i18n/sr.po index b940200399b..918d8e6e157 100644 --- a/addons/email_template/i18n/sr.po +++ b/addons/email_template/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sr@latin.po b/addons/email_template/i18n/sr@latin.po index 2dc22b8f72f..a89e6f55268 100644 --- a/addons/email_template/i18n/sr@latin.po +++ b/addons/email_template/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/sv.po b/addons/email_template/i18n/sv.po index c6aac9a8226..5a6ed2ae6fa 100644 --- a/addons/email_template/i18n/sv.po +++ b/addons/email_template/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/tr.po b/addons/email_template/i18n/tr.po index 24612449b17..e801ef2ef41 100644 --- a/addons/email_template/i18n/tr.po +++ b/addons/email_template/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/zh_CN.po b/addons/email_template/i18n/zh_CN.po index 5f30a1dec51..3b35a355f5a 100644 --- a/addons/email_template/i18n/zh_CN.po +++ b/addons/email_template/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/email_template/i18n/zh_TW.po b/addons/email_template/i18n/zh_TW.po index a3e96e3d607..3e85d0bf9a0 100644 --- a/addons/email_template/i18n/zh_TW.po +++ b/addons/email_template/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: email_template #: field:email.template,email_from:0 diff --git a/addons/event/i18n/ar.po b/addons/event/i18n/ar.po index 03d7eb2e8b0..aedce440243 100644 --- a/addons/event/i18n/ar.po +++ b/addons/event/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/bg.po b/addons/event/i18n/bg.po index 0893b13c3e3..2d643bb23af 100644 --- a/addons/event/i18n/bg.po +++ b/addons/event/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/bs.po b/addons/event/i18n/bs.po index dac7fa38187..a81010dd8f4 100644 --- a/addons/event/i18n/bs.po +++ b/addons/event/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ca.po b/addons/event/i18n/ca.po index c0bf7e48db1..83e52714f11 100644 --- a/addons/event/i18n/ca.po +++ b/addons/event/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/cs.po b/addons/event/i18n/cs.po index e6fac44a41c..8b4b24e7c85 100644 --- a/addons/event/i18n/cs.po +++ b/addons/event/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/da.po b/addons/event/i18n/da.po index 986267f94a3..976b4db2cc9 100644 --- a/addons/event/i18n/da.po +++ b/addons/event/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/de.po b/addons/event/i18n/de.po index 1398f386dbd..a6d280d5ec1 100644 --- a/addons/event/i18n/de.po +++ b/addons/event/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/el.po b/addons/event/i18n/el.po index 5c99f562e96..5c4f6aebc29 100644 --- a/addons/event/i18n/el.po +++ b/addons/event/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es.po b/addons/event/i18n/es.po index a2b1934ef50..6f3d3fdfbed 100644 --- a/addons/event/i18n/es.po +++ b/addons/event/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_AR.po b/addons/event/i18n/es_AR.po index 18068ab8dc6..bf7074fa9e7 100644 --- a/addons/event/i18n/es_AR.po +++ b/addons/event/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_CR.po b/addons/event/i18n/es_CR.po index b7036e0fba2..cd76d5f3236 100644 --- a/addons/event/i18n/es_CR.po +++ b/addons/event/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_EC.po b/addons/event/i18n/es_EC.po index 86cb766de4a..21fb5705120 100644 --- a/addons/event/i18n/es_EC.po +++ b/addons/event/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/et.po b/addons/event/i18n/et.po index 95a9ea2fe5d..d8ff4fec42c 100644 --- a/addons/event/i18n/et.po +++ b/addons/event/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/fi.po b/addons/event/i18n/fi.po index 8664081c3c6..1d687f91987 100644 --- a/addons/event/i18n/fi.po +++ b/addons/event/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/fr.po b/addons/event/i18n/fr.po index ebb5d707a4d..f2374c97de2 100644 --- a/addons/event/i18n/fr.po +++ b/addons/event/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/gu.po b/addons/event/i18n/gu.po index 218f86c333f..2cd8fe8335b 100644 --- a/addons/event/i18n/gu.po +++ b/addons/event/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hi.po b/addons/event/i18n/hi.po index 6ae2791133c..ba3b552b525 100644 --- a/addons/event/i18n/hi.po +++ b/addons/event/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hr.po b/addons/event/i18n/hr.po index 9ae3a02de37..951f718ef59 100644 --- a/addons/event/i18n/hr.po +++ b/addons/event/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hu.po b/addons/event/i18n/hu.po index a74bdb18b54..477a43bb4ad 100644 --- a/addons/event/i18n/hu.po +++ b/addons/event/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/id.po b/addons/event/i18n/id.po index b100a6e7be1..f0503d181c7 100644 --- a/addons/event/i18n/id.po +++ b/addons/event/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/it.po b/addons/event/i18n/it.po index cbb76502d70..7ffd2e3187d 100644 --- a/addons/event/i18n/it.po +++ b/addons/event/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ja.po b/addons/event/i18n/ja.po index b0290ebb10a..fd7e5fea44d 100644 --- a/addons/event/i18n/ja.po +++ b/addons/event/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ko.po b/addons/event/i18n/ko.po index 2670ebf687a..21f453469a2 100644 --- a/addons/event/i18n/ko.po +++ b/addons/event/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/lt.po b/addons/event/i18n/lt.po index 62ec6faa530..2e8220e4792 100644 --- a/addons/event/i18n/lt.po +++ b/addons/event/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/mk.po b/addons/event/i18n/mk.po index ba20274f195..b97ec380c98 100644 --- a/addons/event/i18n/mk.po +++ b/addons/event/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/mn.po b/addons/event/i18n/mn.po index 032556240c0..3ef7bf9c8d4 100644 --- a/addons/event/i18n/mn.po +++ b/addons/event/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nb.po b/addons/event/i18n/nb.po index ec889f93579..9f7079eb374 100644 --- a/addons/event/i18n/nb.po +++ b/addons/event/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nl.po b/addons/event/i18n/nl.po index 20b623be16a..37e4e6fbbea 100644 --- a/addons/event/i18n/nl.po +++ b/addons/event/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nl_BE.po b/addons/event/i18n/nl_BE.po index 3d95871b3e4..63325eb8f89 100644 --- a/addons/event/i18n/nl_BE.po +++ b/addons/event/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pl.po b/addons/event/i18n/pl.po index d279f79d032..0858369770c 100644 --- a/addons/event/i18n/pl.po +++ b/addons/event/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:24+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pt.po b/addons/event/i18n/pt.po index 00bfbcf1eb5..469fcfdc364 100644 --- a/addons/event/i18n/pt.po +++ b/addons/event/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pt_BR.po b/addons/event/i18n/pt_BR.po index 4d66c6ea0b6..61bf8a94f52 100644 --- a/addons/event/i18n/pt_BR.po +++ b/addons/event/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ro.po b/addons/event/i18n/ro.po index e9f86ee1af8..64ebed61910 100644 --- a/addons/event/i18n/ro.po +++ b/addons/event/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ru.po b/addons/event/i18n/ru.po index 514cc92bd7a..df7e7004da9 100644 --- a/addons/event/i18n/ru.po +++ b/addons/event/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sk.po b/addons/event/i18n/sk.po index c32801b7640..04ae1872c6a 100644 --- a/addons/event/i18n/sk.po +++ b/addons/event/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sl.po b/addons/event/i18n/sl.po index 9cd39712434..af8e04bf318 100644 --- a/addons/event/i18n/sl.po +++ b/addons/event/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sq.po b/addons/event/i18n/sq.po index 4cd0f97d82e..bb139ce4642 100644 --- a/addons/event/i18n/sq.po +++ b/addons/event/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:41+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sr.po b/addons/event/i18n/sr.po index 7bb5104a5c1..f3301f1b7d9 100644 --- a/addons/event/i18n/sr.po +++ b/addons/event/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sr@latin.po b/addons/event/i18n/sr@latin.po index 61a69ad7c2a..0726ee656d6 100644 --- a/addons/event/i18n/sr@latin.po +++ b/addons/event/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sv.po b/addons/event/i18n/sv.po index 2bd9c2c3686..56c56208b8e 100644 --- a/addons/event/i18n/sv.po +++ b/addons/event/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/tlh.po b/addons/event/i18n/tlh.po index bbe91a271ef..b52e1b92fc8 100644 --- a/addons/event/i18n/tlh.po +++ b/addons/event/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/tr.po b/addons/event/i18n/tr.po index 4f11c5fb708..b0ceff63462 100644 --- a/addons/event/i18n/tr.po +++ b/addons/event/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/uk.po b/addons/event/i18n/uk.po index c3f61fbf299..a610955ebfa 100644 --- a/addons/event/i18n/uk.po +++ b/addons/event/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/vi.po b/addons/event/i18n/vi.po index 57464baa444..ed342e6eac8 100644 --- a/addons/event/i18n/vi.po +++ b/addons/event/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/zh_CN.po b/addons/event/i18n/zh_CN.po index 7dd70bf7aa3..e689376cf42 100644 --- a/addons/event/i18n/zh_CN.po +++ b/addons/event/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/zh_TW.po b/addons/event/i18n/zh_TW.po index 6f2b091d8e0..acc3e56d0db 100644 --- a/addons/event/i18n/zh_TW.po +++ b/addons/event/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event #: view:event.event:0 diff --git a/addons/event_moodle/i18n/de.po b/addons/event_moodle/i18n/de.po index 1a806f025eb..0f2171b55cb 100644 --- a/addons/event_moodle/i18n/de.po +++ b/addons/event_moodle/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/es.po b/addons/event_moodle/i18n/es.po index e963426c623..9de15e4e476 100644 --- a/addons/event_moodle/i18n/es.po +++ b/addons/event_moodle/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/fr.po b/addons/event_moodle/i18n/fr.po index 81430d03972..592b5a729a9 100644 --- a/addons/event_moodle/i18n/fr.po +++ b/addons/event_moodle/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/hr.po b/addons/event_moodle/i18n/hr.po index 5000f986c92..a219df79f34 100644 --- a/addons/event_moodle/i18n/hr.po +++ b/addons/event_moodle/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/hu.po b/addons/event_moodle/i18n/hu.po index 53e79aea981..ebafc7dbb3b 100644 --- a/addons/event_moodle/i18n/hu.po +++ b/addons/event_moodle/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/mk.po b/addons/event_moodle/i18n/mk.po index 59451e5463b..effb7e8305a 100644 --- a/addons/event_moodle/i18n/mk.po +++ b/addons/event_moodle/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/mn.po b/addons/event_moodle/i18n/mn.po index a1ce6c6d714..3c9f567a6b4 100644 --- a/addons/event_moodle/i18n/mn.po +++ b/addons/event_moodle/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/nl.po b/addons/event_moodle/i18n/nl.po index a983804b560..cf42f379bba 100644 --- a/addons/event_moodle/i18n/nl.po +++ b/addons/event_moodle/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:38+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/pt.po b/addons/event_moodle/i18n/pt.po index f5457f703b6..3cfa9bf246f 100644 --- a/addons/event_moodle/i18n/pt.po +++ b/addons/event_moodle/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/pt_BR.po b/addons/event_moodle/i18n/pt_BR.po index 99007930dce..1a0a38942d2 100644 --- a/addons/event_moodle/i18n/pt_BR.po +++ b/addons/event_moodle/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/ro.po b/addons/event_moodle/i18n/ro.po index c4d44fe4133..33b84f37943 100644 --- a/addons/event_moodle/i18n/ro.po +++ b/addons/event_moodle/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/sl.po b/addons/event_moodle/i18n/sl.po index 6fe9e190179..ea7cd49cdc1 100644 --- a/addons/event_moodle/i18n/sl.po +++ b/addons/event_moodle/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/tr.po b/addons/event_moodle/i18n/tr.po index 60c6d50e093..6653de0c670 100644 --- a/addons/event_moodle/i18n/tr.po +++ b/addons/event_moodle/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/zh_CN.po b/addons/event_moodle/i18n/zh_CN.po index 82f17b20f0b..ba746874624 100644 --- a/addons/event_moodle/i18n/zh_CN.po +++ b/addons/event_moodle/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_sale/i18n/ar.po b/addons/event_sale/i18n/ar.po index 7bb05d15e89..616709b856f 100644 --- a/addons/event_sale/i18n/ar.po +++ b/addons/event_sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/de.po b/addons/event_sale/i18n/de.po index 30070fe197e..5ea2c56a738 100644 --- a/addons/event_sale/i18n/de.po +++ b/addons/event_sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/es.po b/addons/event_sale/i18n/es.po index d85f859b24f..d0556fd8a60 100644 --- a/addons/event_sale/i18n/es.po +++ b/addons/event_sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/fr.po b/addons/event_sale/i18n/fr.po index 8947ae59183..b2d757e5ce6 100644 --- a/addons/event_sale/i18n/fr.po +++ b/addons/event_sale/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/hr.po b/addons/event_sale/i18n/hr.po index a4e4ec45d39..4c13c7d9a18 100644 --- a/addons/event_sale/i18n/hr.po +++ b/addons/event_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/hu.po b/addons/event_sale/i18n/hu.po index dae42b16be4..ed1b13b7e2f 100644 --- a/addons/event_sale/i18n/hu.po +++ b/addons/event_sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/it.po b/addons/event_sale/i18n/it.po index 217d285069c..da4f03d94cf 100644 --- a/addons/event_sale/i18n/it.po +++ b/addons/event_sale/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/mk.po b/addons/event_sale/i18n/mk.po index adf2bc8ba47..412824eb5ef 100644 --- a/addons/event_sale/i18n/mk.po +++ b/addons/event_sale/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/mn.po b/addons/event_sale/i18n/mn.po index 0f7db9e52c8..c22a5563601 100644 --- a/addons/event_sale/i18n/mn.po +++ b/addons/event_sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/nl.po b/addons/event_sale/i18n/nl.po index 62c83b89008..87208c49a84 100644 --- a/addons/event_sale/i18n/nl.po +++ b/addons/event_sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pl.po b/addons/event_sale/i18n/pl.po index 84925a63c7b..501c607de41 100644 --- a/addons/event_sale/i18n/pl.po +++ b/addons/event_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pt.po b/addons/event_sale/i18n/pt.po index 48c937182a2..353ff9eb390 100644 --- a/addons/event_sale/i18n/pt.po +++ b/addons/event_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/pt_BR.po b/addons/event_sale/i18n/pt_BR.po index 51d1015675b..bfc94231e60 100644 --- a/addons/event_sale/i18n/pt_BR.po +++ b/addons/event_sale/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/ro.po b/addons/event_sale/i18n/ro.po index 7f231c0fd68..c59b0ea6458 100644 --- a/addons/event_sale/i18n/ro.po +++ b/addons/event_sale/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/sl.po b/addons/event_sale/i18n/sl.po index 17309095d5e..8736c365217 100644 --- a/addons/event_sale/i18n/sl.po +++ b/addons/event_sale/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/tr.po b/addons/event_sale/i18n/tr.po index 8524632109a..e4b8b6ddb4b 100644 --- a/addons/event_sale/i18n/tr.po +++ b/addons/event_sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/zh_CN.po b/addons/event_sale/i18n/zh_CN.po index bf16452517a..7fc342e7a5b 100644 --- a/addons/event_sale/i18n/zh_CN.po +++ b/addons/event_sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/fetchmail/i18n/ar.po b/addons/fetchmail/i18n/ar.po index adc3839944a..c93d89d60e6 100644 --- a/addons/fetchmail/i18n/ar.po +++ b/addons/fetchmail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/bg.po b/addons/fetchmail/i18n/bg.po index b6cc375bf59..80baa20a8a6 100644 --- a/addons/fetchmail/i18n/bg.po +++ b/addons/fetchmail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ca.po b/addons/fetchmail/i18n/ca.po index f5f3f9866f8..1f6d10fcc9e 100644 --- a/addons/fetchmail/i18n/ca.po +++ b/addons/fetchmail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/cs.po b/addons/fetchmail/i18n/cs.po new file mode 100644 index 00000000000..6a5206ee358 --- /dev/null +++ b/addons/fetchmail/i18n/cs.po @@ -0,0 +1,335 @@ +# English (United Kingdom) translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. +# +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-03-27 14:29+0000\n" +"Last-Translator: Radomil Urbánek \n" +"Language-Team: English (United Kingdom) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: fetchmail +#: selection:fetchmail.server,state:0 +msgid "Confirmed" +msgstr "Potvrzeno" + +#. module: fetchmail +#: field:fetchmail.server,server:0 +msgid "Server Name" +msgstr "Název serveru" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "POP" +msgstr "POP" + +#. module: fetchmail +#: help:fetchmail.server,priority:0 +msgid "Defines the order of processing, lower values mean higher priority" +msgstr "Určuje pořadí provádění, nižší hodnota znamená vyšší prioritu" + +#. module: fetchmail +#: help:fetchmail.server,is_ssl:0 +msgid "" +"Connections are encrypted with SSL/TLS through a dedicated port (default: " +"IMAPS=993, POP3S=995)" +msgstr "" +"Přenos je zabezpečen certifikáty SSL/TSL a probíhá přes vyhrazené porty " +"(standardně: IMAPS=993, POP3S=995)" + +#. module: fetchmail +#: field:fetchmail.server,attach:0 +msgid "Keep Attachments" +msgstr "Ponechat přílohy" + +#. module: fetchmail +#: field:fetchmail.server,is_ssl:0 +msgid "SSL/TLS" +msgstr "SSL/TLS" + +#. module: fetchmail +#: help:fetchmail.server,original:0 +msgid "" +"Whether a full original copy of each email should be kept for referenceand " +"attached to each processed message. This will usually double the size of " +"your message database." +msgstr "" +"Mají-li být zahrnuty také originály každého e-mailu u zpracovávaných zpráv. " +"To obvykle zdvojnásí velikost databáze zpráv." + +#. module: fetchmail +#: view:base.config.settings:0 +msgid "Configure the incoming email gateway" +msgstr "Nastavení příchozí poštovní brány" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Fetch Now" +msgstr "Zkontrolovat" + +#. module: fetchmail +#: model:ir.actions.act_window,name:fetchmail.action_email_server_tree +#: model:ir.ui.menu,name:fetchmail.menu_action_fetchmail_server_tree +msgid "Incoming Mail Servers" +msgstr "Servery příchozí pošty" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Server type IMAP." +msgstr "IMAP server." + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "POP/IMAP Servers" +msgstr "POP/IMAP servery" + +#. module: fetchmail +#: selection:fetchmail.server,type:0 +msgid "Local Server" +msgstr "Místní server" + +#. module: fetchmail +#: field:fetchmail.server,state:0 +msgid "Status" +msgstr "Stav" + +#. module: fetchmail +#: model:ir.model,name:fetchmail.model_fetchmail_server +msgid "POP/IMAP Server" +msgstr "POP/IMAP server" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Reset Confirmation" +msgstr "Obnovit potvrzení" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "SSL" +msgstr "SSL" + +#. module: fetchmail +#: model:ir.model,name:fetchmail.model_fetchmail_config_settings +msgid "fetchmail.config.settings" +msgstr "fetchmail.config.settings" + +#. module: fetchmail +#: field:fetchmail.server,date:0 +msgid "Last Fetch Date" +msgstr "Poslední kontrola pošty" + +#. module: fetchmail +#: help:fetchmail.server,action_id:0 +msgid "" +"Optional custom server action to trigger for each incoming mail, on the " +"record that was created or updated by this mail" +msgstr "" +"Volitelné vlastní akce serveru pro příchozí e-mail – na záznamu, který byl " +"vytvořen nebo aktualizován tímto e-mailem." + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "# of emails" +msgstr "# e-mailů" + +#. module: fetchmail +#: field:fetchmail.server,original:0 +msgid "Keep Original" +msgstr "Ponechat originál" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Advanced Options" +msgstr "Rozšířené volby" + +#. module: fetchmail +#: view:fetchmail.server:0 +#: field:fetchmail.server,configuration:0 +msgid "Configuration" +msgstr "Nastavení" + +#. module: fetchmail +#: field:fetchmail.server,script:0 +msgid "Script" +msgstr "Skript" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Incoming Mail Server" +msgstr "Server příchozí pošty" + +#. module: fetchmail +#: code:addons/fetchmail/fetchmail.py:164 +#, python-format +msgid "Connection test failed!" +msgstr "Tes připojení byl neúspěšný!" + +#. module: fetchmail +#: field:fetchmail.server,user:0 +msgid "Username" +msgstr "Uživatelské jméno" + +#. module: fetchmail +#: help:fetchmail.server,server:0 +msgid "Hostname or IP of the mail server" +msgstr "Název nebo IP adresa e-mail serveru" + +#. module: fetchmail +#: field:fetchmail.server,name:0 +msgid "Name" +msgstr "Název" + +#. module: fetchmail +#: code:addons/fetchmail/fetchmail.py:164 +#, python-format +msgid "" +"Here is what we got instead:\n" +" %s." +msgstr "" +"Bylo obdrženo namísto:\n" +" %s." + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Test & Confirm" +msgstr "Test & Potvrzení" + +#. module: fetchmail +#: field:fetchmail.server,action_id:0 +msgid "Server Action" +msgstr "Akce serveru" + +#. module: fetchmail +#: field:mail.mail,fetchmail_server_id:0 +msgid "Inbound Mail Server" +msgstr "Server příchozí pošty" + +#. module: fetchmail +#: field:fetchmail.server,message_ids:0 +#: model:ir.actions.act_window,name:fetchmail.act_server_history +msgid "Messages" +msgstr "Zprávy" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Search Incoming Mail Servers" +msgstr "Hledat servery příchozí pošty" + +#. module: fetchmail +#: field:fetchmail.server,active:0 +msgid "Active" +msgstr "Aktivní" + +#. module: fetchmail +#: help:fetchmail.server,attach:0 +msgid "" +"Whether attachments should be downloaded. If not enabled, incoming emails " +"will be stripped of any attachments before being processed" +msgstr "" +"Mají-li být za zahrnuty také přílohy. Pokud nebude povoleno, budou příchozí " +"e-maily zbaveny všech příloh před dalším zpracováním." + +#. module: fetchmail +#: model:ir.model,name:fetchmail.model_mail_mail +msgid "Outgoing Mails" +msgstr "Odchozí e-maily" + +#. module: fetchmail +#: field:fetchmail.server,priority:0 +msgid "Server Priority" +msgstr "Priorita serveru" + +#. module: fetchmail +#: selection:fetchmail.server,type:0 +msgid "IMAP Server" +msgstr "IMAP server" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "IMAP" +msgstr "IMAP" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Server type POP." +msgstr "POP server." + +#. module: fetchmail +#: field:fetchmail.server,password:0 +msgid "Password" +msgstr "Heslo" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Actions to Perform on Incoming Mails" +msgstr "Akce prováděné s příchozími e-maily" + +#. module: fetchmail +#: field:fetchmail.server,type:0 +msgid "Server Type" +msgstr "Druh serveru" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Login Information" +msgstr "Přihlašovací údaje" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Server Information" +msgstr "Údaje o serveru" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "If SSL required." +msgstr "Je-li požádován SSL." + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Advanced" +msgstr "Rozšířené" + +#. module: fetchmail +#: view:fetchmail.server:0 +msgid "Server & Login" +msgstr "Server & Přihlášení" + +#. module: fetchmail +#: help:fetchmail.server,object_id:0 +msgid "" +"Process each incoming mail as part of a conversation corresponding to this " +"document type. This will create new documents for new conversations, or " +"attach follow-up emails to the existing conversations (documents)." +msgstr "" +"Zpracuje každý příchozí e-mail jako součást konverzace podle druhu " +"dokumentu. Buď se nové konverzaci se vytvoří nové dokumenty, nebo se ke " +"stávající konverzaci připojí navazující e-maily (dokumenty)." + +#. module: fetchmail +#: field:fetchmail.server,object_id:0 +msgid "Create a New Record" +msgstr "Vytvořit nový záznam" + +#. module: fetchmail +#: selection:fetchmail.server,state:0 +msgid "Not Confirmed" +msgstr "Nepotvrzeno" + +#. module: fetchmail +#: selection:fetchmail.server,type:0 +msgid "POP Server" +msgstr "POP server" + +#. module: fetchmail +#: field:fetchmail.server,port:0 +msgid "Port" +msgstr "Port" diff --git a/addons/fetchmail/i18n/da.po b/addons/fetchmail/i18n/da.po index 25fa9e72242..b335d11c262 100644 --- a/addons/fetchmail/i18n/da.po +++ b/addons/fetchmail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/de.po b/addons/fetchmail/i18n/de.po index e151bcfd076..1dbb7a6a30c 100644 --- a/addons/fetchmail/i18n/de.po +++ b/addons/fetchmail/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/el.po b/addons/fetchmail/i18n/el.po index c79c2a229c8..72b4af146ff 100644 --- a/addons/fetchmail/i18n/el.po +++ b/addons/fetchmail/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/en_GB.po b/addons/fetchmail/i18n/en_GB.po index 8cc4dd40e50..1c5d51e3b84 100644 --- a/addons/fetchmail/i18n/en_GB.po +++ b/addons/fetchmail/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/es.po b/addons/fetchmail/i18n/es.po index dfb84c03ba8..97d3b3e43f1 100644 --- a/addons/fetchmail/i18n/es.po +++ b/addons/fetchmail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/es_CR.po b/addons/fetchmail/i18n/es_CR.po index cabc7f961e5..9db131f11dd 100644 --- a/addons/fetchmail/i18n/es_CR.po +++ b/addons/fetchmail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/et.po b/addons/fetchmail/i18n/et.po index 17c64d5c887..b7175346151 100644 --- a/addons/fetchmail/i18n/et.po +++ b/addons/fetchmail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/fi.po b/addons/fetchmail/i18n/fi.po index cecbc8eaee5..9afde9d4366 100644 --- a/addons/fetchmail/i18n/fi.po +++ b/addons/fetchmail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/fr.po b/addons/fetchmail/i18n/fr.po index 09e92808f8b..84e09792f64 100644 --- a/addons/fetchmail/i18n/fr.po +++ b/addons/fetchmail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/gl.po b/addons/fetchmail/i18n/gl.po index c7dfca1a059..6449cd94494 100644 --- a/addons/fetchmail/i18n/gl.po +++ b/addons/fetchmail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/hr.po b/addons/fetchmail/i18n/hr.po index f74f7dc6b5d..c85346222c6 100644 --- a/addons/fetchmail/i18n/hr.po +++ b/addons/fetchmail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/hu.po b/addons/fetchmail/i18n/hu.po index fb3327a3618..cba2400358b 100644 --- a/addons/fetchmail/i18n/hu.po +++ b/addons/fetchmail/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/it.po b/addons/fetchmail/i18n/it.po index 89033dee459..9965e47402f 100644 --- a/addons/fetchmail/i18n/it.po +++ b/addons/fetchmail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ja.po b/addons/fetchmail/i18n/ja.po index 2cb82a43c7e..838a3101c8b 100644 --- a/addons/fetchmail/i18n/ja.po +++ b/addons/fetchmail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/lt.po b/addons/fetchmail/i18n/lt.po index 3f46a68d4c0..7c59333fc94 100644 --- a/addons/fetchmail/i18n/lt.po +++ b/addons/fetchmail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/lv.po b/addons/fetchmail/i18n/lv.po index c9fcda7b3fa..633c74b8a48 100644 --- a/addons/fetchmail/i18n/lv.po +++ b/addons/fetchmail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/mk.po b/addons/fetchmail/i18n/mk.po index 89f5b143859..3810a797155 100644 --- a/addons/fetchmail/i18n/mk.po +++ b/addons/fetchmail/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: fetchmail diff --git a/addons/fetchmail/i18n/mn.po b/addons/fetchmail/i18n/mn.po index ff803b9dc7c..3b7477c2c30 100644 --- a/addons/fetchmail/i18n/mn.po +++ b/addons/fetchmail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/nb.po b/addons/fetchmail/i18n/nb.po index 181638ff299..8c541d198c0 100644 --- a/addons/fetchmail/i18n/nb.po +++ b/addons/fetchmail/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/nl.po b/addons/fetchmail/i18n/nl.po index 6fa5818db1e..d9c5b0063a0 100644 --- a/addons/fetchmail/i18n/nl.po +++ b/addons/fetchmail/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pl.po b/addons/fetchmail/i18n/pl.po index d5c5f00b737..efdf8b4fbf6 100644 --- a/addons/fetchmail/i18n/pl.po +++ b/addons/fetchmail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pt.po b/addons/fetchmail/i18n/pt.po index dd19c26d407..ca3a021f768 100644 --- a/addons/fetchmail/i18n/pt.po +++ b/addons/fetchmail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/pt_BR.po b/addons/fetchmail/i18n/pt_BR.po index a483af634e7..180f21a1983 100644 --- a/addons/fetchmail/i18n/pt_BR.po +++ b/addons/fetchmail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ro.po b/addons/fetchmail/i18n/ro.po index 244103259f1..80392ca50b0 100644 --- a/addons/fetchmail/i18n/ro.po +++ b/addons/fetchmail/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/ru.po b/addons/fetchmail/i18n/ru.po index 703f56f5145..308eac1ce6d 100644 --- a/addons/fetchmail/i18n/ru.po +++ b/addons/fetchmail/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sl.po b/addons/fetchmail/i18n/sl.po index 319538b01a8..c9ba6444b17 100644 --- a/addons/fetchmail/i18n/sl.po +++ b/addons/fetchmail/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sr.po b/addons/fetchmail/i18n/sr.po index 1af0c1f3b08..64b9a0fd042 100644 --- a/addons/fetchmail/i18n/sr.po +++ b/addons/fetchmail/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sr@latin.po b/addons/fetchmail/i18n/sr@latin.po index 2ddcac2732d..acb5c3e884e 100644 --- a/addons/fetchmail/i18n/sr@latin.po +++ b/addons/fetchmail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/sv.po b/addons/fetchmail/i18n/sv.po index b42913e9d34..4a827c39e42 100644 --- a/addons/fetchmail/i18n/sv.po +++ b/addons/fetchmail/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/tr.po b/addons/fetchmail/i18n/tr.po index 790d3dc5d28..9b4c326ba62 100644 --- a/addons/fetchmail/i18n/tr.po +++ b/addons/fetchmail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/vi.po b/addons/fetchmail/i18n/vi.po index 107353a4191..b926729b062 100644 --- a/addons/fetchmail/i18n/vi.po +++ b/addons/fetchmail/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/zh_CN.po b/addons/fetchmail/i18n/zh_CN.po index 2bbad4e54e4..e830ee09e0e 100644 --- a/addons/fetchmail/i18n/zh_CN.po +++ b/addons/fetchmail/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fleet/i18n/ar.po b/addons/fleet/i18n/ar.po index 2c7a44282e5..5e59dd79da0 100644 --- a/addons/fleet/i18n/ar.po +++ b/addons/fleet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/cs.po b/addons/fleet/i18n/cs.po index 0f8ae25cb1a..60231517706 100644 --- a/addons/fleet/i18n/cs.po +++ b/addons/fleet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/de.po b/addons/fleet/i18n/de.po index 17dc9b39cb9..be3c98bad69 100644 --- a/addons/fleet/i18n/de.po +++ b/addons/fleet/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/es.po b/addons/fleet/i18n/es.po index 0975bc0488a..bf8dc6f57b3 100644 --- a/addons/fleet/i18n/es.po +++ b/addons/fleet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/es_MX.po b/addons/fleet/i18n/es_MX.po index 7950c213e8a..f794a5c3068 100644 --- a/addons/fleet/i18n/es_MX.po +++ b/addons/fleet/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/fr.po b/addons/fleet/i18n/fr.po index 8a9f8cb3d75..105d5f66494 100644 --- a/addons/fleet/i18n/fr.po +++ b/addons/fleet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/hr.po b/addons/fleet/i18n/hr.po index acf12a6ae50..cfccad28557 100644 --- a/addons/fleet/i18n/hr.po +++ b/addons/fleet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/it.po b/addons/fleet/i18n/it.po index 6444d1b3a70..1bb3ea38bd4 100644 --- a/addons/fleet/i18n/it.po +++ b/addons/fleet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/lv.po b/addons/fleet/i18n/lv.po index 8f16d9f6211..9fbf090cad0 100644 --- a/addons/fleet/i18n/lv.po +++ b/addons/fleet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/mk.po b/addons/fleet/i18n/mk.po index 0a786ceeb6b..1278bb75496 100644 --- a/addons/fleet/i18n/mk.po +++ b/addons/fleet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: fleet diff --git a/addons/fleet/i18n/mn.po b/addons/fleet/i18n/mn.po index 9016f3998a4..97f773e6730 100644 --- a/addons/fleet/i18n/mn.po +++ b/addons/fleet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/nl.po b/addons/fleet/i18n/nl.po index 6e09313f5fc..62193fdebd1 100644 --- a/addons/fleet/i18n/nl.po +++ b/addons/fleet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pl.po b/addons/fleet/i18n/pl.po index 1c0caacafd0..90ef9da20a3 100644 --- a/addons/fleet/i18n/pl.po +++ b/addons/fleet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pt.po b/addons/fleet/i18n/pt.po index f4d69b6342b..935f194bc34 100644 --- a/addons/fleet/i18n/pt.po +++ b/addons/fleet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pt_BR.po b/addons/fleet/i18n/pt_BR.po index 83b279d0fea..5396b19bcb2 100644 --- a/addons/fleet/i18n/pt_BR.po +++ b/addons/fleet/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/ro.po b/addons/fleet/i18n/ro.po index 625dc28977c..3ee6aa3feed 100644 --- a/addons/fleet/i18n/ro.po +++ b/addons/fleet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/ru.po b/addons/fleet/i18n/ru.po index 5deae0714c8..130c319a0ef 100644 --- a/addons/fleet/i18n/ru.po +++ b/addons/fleet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/sl.po b/addons/fleet/i18n/sl.po index fcca4c6fb19..dc99aac73e9 100644 --- a/addons/fleet/i18n/sl.po +++ b/addons/fleet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/sv.po b/addons/fleet/i18n/sv.po index 55f688480ae..263751876e1 100644 --- a/addons/fleet/i18n/sv.po +++ b/addons/fleet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/tr.po b/addons/fleet/i18n/tr.po index a2bcde5b828..80c4cb5a96a 100644 --- a/addons/fleet/i18n/tr.po +++ b/addons/fleet/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-19 06:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/zh_CN.po b/addons/fleet/i18n/zh_CN.po index 5dc5a6000f6..2e4f26dd0d7 100644 --- a/addons/fleet/i18n/zh_CN.po +++ b/addons/fleet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/google_base_account/i18n/ar.po b/addons/google_base_account/i18n/ar.po index d39b1c2d6db..327b009b19a 100644 --- a/addons/google_base_account/i18n/ar.po +++ b/addons/google_base_account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/de.po b/addons/google_base_account/i18n/de.po index 7ba0fdd7853..b3b47aeb182 100644 --- a/addons/google_base_account/i18n/de.po +++ b/addons/google_base_account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/es.po b/addons/google_base_account/i18n/es.po index 7c6056eee7a..4b64bdcabab 100644 --- a/addons/google_base_account/i18n/es.po +++ b/addons/google_base_account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/es_CR.po b/addons/google_base_account/i18n/es_CR.po index 569270dea4d..5a458e0fb0f 100644 --- a/addons/google_base_account/i18n/es_CR.po +++ b/addons/google_base_account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/fi.po b/addons/google_base_account/i18n/fi.po index 723e8fe6bab..0ad94650cba 100644 --- a/addons/google_base_account/i18n/fi.po +++ b/addons/google_base_account/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/fr.po b/addons/google_base_account/i18n/fr.po index f14251e56e4..ff69d035423 100644 --- a/addons/google_base_account/i18n/fr.po +++ b/addons/google_base_account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/hr.po b/addons/google_base_account/i18n/hr.po index 4f9aae0c71c..e87f4f0a55d 100644 --- a/addons/google_base_account/i18n/hr.po +++ b/addons/google_base_account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/hu.po b/addons/google_base_account/i18n/hu.po index ec59d1b2ad7..9fffdb2d4b2 100644 --- a/addons/google_base_account/i18n/hu.po +++ b/addons/google_base_account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/it.po b/addons/google_base_account/i18n/it.po index 539023af8ee..5aac241a837 100644 --- a/addons/google_base_account/i18n/it.po +++ b/addons/google_base_account/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ja.po b/addons/google_base_account/i18n/ja.po index ef4d38a1a9b..5975ebe7d58 100644 --- a/addons/google_base_account/i18n/ja.po +++ b/addons/google_base_account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/mk.po b/addons/google_base_account/i18n/mk.po index c80acf34f34..60969e16544 100644 --- a/addons/google_base_account/i18n/mk.po +++ b/addons/google_base_account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/mn.po b/addons/google_base_account/i18n/mn.po index 398111e0e46..8963caab9ee 100644 --- a/addons/google_base_account/i18n/mn.po +++ b/addons/google_base_account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/nb.po b/addons/google_base_account/i18n/nb.po index 1a75ef76d81..209a096b22a 100644 --- a/addons/google_base_account/i18n/nb.po +++ b/addons/google_base_account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/nl.po b/addons/google_base_account/i18n/nl.po index bf26d42ecff..dbc7448f075 100644 --- a/addons/google_base_account/i18n/nl.po +++ b/addons/google_base_account/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pl.po b/addons/google_base_account/i18n/pl.po index 54b5bdc8ba2..3faa3b09989 100644 --- a/addons/google_base_account/i18n/pl.po +++ b/addons/google_base_account/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pt.po b/addons/google_base_account/i18n/pt.po index e62e109a139..2870ac4ba1c 100644 --- a/addons/google_base_account/i18n/pt.po +++ b/addons/google_base_account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/pt_BR.po b/addons/google_base_account/i18n/pt_BR.po index 827c547fea3..cfb3a2aef3e 100644 --- a/addons/google_base_account/i18n/pt_BR.po +++ b/addons/google_base_account/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ro.po b/addons/google_base_account/i18n/ro.po index 3018539eec2..450c7441df9 100644 --- a/addons/google_base_account/i18n/ro.po +++ b/addons/google_base_account/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/ru.po b/addons/google_base_account/i18n/ru.po index 4b07ccb3ce5..578d83c0a8f 100644 --- a/addons/google_base_account/i18n/ru.po +++ b/addons/google_base_account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sl.po b/addons/google_base_account/i18n/sl.po index 23b0432b094..e8b70e7df64 100644 --- a/addons/google_base_account/i18n/sl.po +++ b/addons/google_base_account/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sr@latin.po b/addons/google_base_account/i18n/sr@latin.po index 7731f586ac0..75a0c1e77ae 100644 --- a/addons/google_base_account/i18n/sr@latin.po +++ b/addons/google_base_account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/sv.po b/addons/google_base_account/i18n/sv.po index 3ff16ab8e86..e77280b39ad 100644 --- a/addons/google_base_account/i18n/sv.po +++ b/addons/google_base_account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/tr.po b/addons/google_base_account/i18n/tr.po index caeb3e79975..8d053826b04 100644 --- a/addons/google_base_account/i18n/tr.po +++ b/addons/google_base_account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/zh_CN.po b/addons/google_base_account/i18n/zh_CN.po index c4c676ff917..d05c8778de3 100644 --- a/addons/google_base_account/i18n/zh_CN.po +++ b/addons/google_base_account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_docs/i18n/ar.po b/addons/google_docs/i18n/ar.po index 191d35667f7..ec8bb6a7b27 100644 --- a/addons/google_docs/i18n/ar.po +++ b/addons/google_docs/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/de.po b/addons/google_docs/i18n/de.po index 2c8764e0d67..86bbb8c564b 100644 --- a/addons/google_docs/i18n/de.po +++ b/addons/google_docs/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/es.po b/addons/google_docs/i18n/es.po index 6dd0d4bf62e..21ffc8b40fb 100644 --- a/addons/google_docs/i18n/es.po +++ b/addons/google_docs/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/fr.po b/addons/google_docs/i18n/fr.po index b2e7af40c67..154728bcc1a 100644 --- a/addons/google_docs/i18n/fr.po +++ b/addons/google_docs/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/hr.po b/addons/google_docs/i18n/hr.po index c1b31e0fd06..3d09105e36c 100644 --- a/addons/google_docs/i18n/hr.po +++ b/addons/google_docs/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/hu.po b/addons/google_docs/i18n/hu.po index 092e5ec77ed..7042f9f7f08 100644 --- a/addons/google_docs/i18n/hu.po +++ b/addons/google_docs/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/it.po b/addons/google_docs/i18n/it.po index bc8ca14136c..2e5ac00c9eb 100644 --- a/addons/google_docs/i18n/it.po +++ b/addons/google_docs/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/mk.po b/addons/google_docs/i18n/mk.po index baae5c5a708..b6c9764b5ce 100644 --- a/addons/google_docs/i18n/mk.po +++ b/addons/google_docs/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/mn.po b/addons/google_docs/i18n/mn.po index f70a2e5d957..3681f9b2d43 100644 --- a/addons/google_docs/i18n/mn.po +++ b/addons/google_docs/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/nl.po b/addons/google_docs/i18n/nl.po index 37382bb8706..8d0c42a00cb 100644 --- a/addons/google_docs/i18n/nl.po +++ b/addons/google_docs/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/pl.po b/addons/google_docs/i18n/pl.po index 548cfc3bb33..dacb8a1bf9b 100644 --- a/addons/google_docs/i18n/pl.po +++ b/addons/google_docs/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/pt.po b/addons/google_docs/i18n/pt.po index e6fbaa27b76..5d490e22876 100644 --- a/addons/google_docs/i18n/pt.po +++ b/addons/google_docs/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/pt_BR.po b/addons/google_docs/i18n/pt_BR.po index 76ad9333076..2934d0b1658 100644 --- a/addons/google_docs/i18n/pt_BR.po +++ b/addons/google_docs/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/ro.po b/addons/google_docs/i18n/ro.po index 0aa3f8b003e..51609b1364c 100644 --- a/addons/google_docs/i18n/ro.po +++ b/addons/google_docs/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/ru.po b/addons/google_docs/i18n/ru.po index 5a53845007f..b1e5e89d5a2 100644 --- a/addons/google_docs/i18n/ru.po +++ b/addons/google_docs/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/sl.po b/addons/google_docs/i18n/sl.po index b5a3a0c2b46..a72b4e88564 100644 --- a/addons/google_docs/i18n/sl.po +++ b/addons/google_docs/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/sv.po b/addons/google_docs/i18n/sv.po index 571b67f2de1..aaa5786fe8f 100644 --- a/addons/google_docs/i18n/sv.po +++ b/addons/google_docs/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/tr.po b/addons/google_docs/i18n/tr.po index a366667e184..395debbe003 100644 --- a/addons/google_docs/i18n/tr.po +++ b/addons/google_docs/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/google_docs/i18n/zh_CN.po b/addons/google_docs/i18n/zh_CN.po index f90523b5b8e..468e0928d32 100644 --- a/addons/google_docs/i18n/zh_CN.po +++ b/addons/google_docs/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: google_docs #: code:addons/google_docs/google_docs.py:167 diff --git a/addons/hr/i18n/ar.po b/addons/hr/i18n/ar.po index b4f96e248e1..d5da7ef9413 100644 --- a/addons/hr/i18n/ar.po +++ b/addons/hr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bg.po b/addons/hr/i18n/bg.po index a174027ee92..62c937ccc0e 100644 --- a/addons/hr/i18n/bg.po +++ b/addons/hr/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bn.po b/addons/hr/i18n/bn.po index cda454eede7..b618691b934 100644 --- a/addons/hr/i18n/bn.po +++ b/addons/hr/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/bs.po b/addons/hr/i18n/bs.po index bd7aa7e77e8..23920d9cb87 100644 --- a/addons/hr/i18n/bs.po +++ b/addons/hr/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ca.po b/addons/hr/i18n/ca.po index 673c4f2b012..8bd2bc995bf 100644 --- a/addons/hr/i18n/ca.po +++ b/addons/hr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/cs.po b/addons/hr/i18n/cs.po index 9470abf2b5f..1210ea140ef 100644 --- a/addons/hr/i18n/cs.po +++ b/addons/hr/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/da.po b/addons/hr/i18n/da.po index 5563a17e364..23a1d0a7892 100644 --- a/addons/hr/i18n/da.po +++ b/addons/hr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/de.po b/addons/hr/i18n/de.po index d2a3abded53..aba36b15c78 100644 --- a/addons/hr/i18n/de.po +++ b/addons/hr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/el.po b/addons/hr/i18n/el.po index 62210520b24..88abf37d801 100644 --- a/addons/hr/i18n/el.po +++ b/addons/hr/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/en_AU.po b/addons/hr/i18n/en_AU.po index c0bfc5457aa..c562b4df4e7 100644 --- a/addons/hr/i18n/en_AU.po +++ b/addons/hr/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/en_GB.po b/addons/hr/i18n/en_GB.po index 81ae0f7807d..179a3dfd169 100644 --- a/addons/hr/i18n/en_GB.po +++ b/addons/hr/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es.po b/addons/hr/i18n/es.po index fb11110d263..be1b10b5944 100644 --- a/addons/hr/i18n/es.po +++ b/addons/hr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_AR.po b/addons/hr/i18n/es_AR.po index bba48f16c5b..fb99589a771 100644 --- a/addons/hr/i18n/es_AR.po +++ b/addons/hr/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_CL.po b/addons/hr/i18n/es_CL.po index ddd908f7d98..ff42f78110a 100644 --- a/addons/hr/i18n/es_CL.po +++ b/addons/hr/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_CR.po b/addons/hr/i18n/es_CR.po index 25f33869ff9..d4be30b04ea 100644 --- a/addons/hr/i18n/es_CR.po +++ b/addons/hr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/es_EC.po b/addons/hr/i18n/es_EC.po index a6446a6a32b..be049540437 100644 --- a/addons/hr/i18n/es_EC.po +++ b/addons/hr/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/et.po b/addons/hr/i18n/et.po index 2b4de015f51..5950947da46 100644 --- a/addons/hr/i18n/et.po +++ b/addons/hr/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fi.po b/addons/hr/i18n/fi.po index 311bf60371c..44dd8d77f1c 100644 --- a/addons/hr/i18n/fi.po +++ b/addons/hr/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fr.po b/addons/hr/i18n/fr.po index 356be18806a..8cc57cc8c85 100644 --- a/addons/hr/i18n/fr.po +++ b/addons/hr/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/fr_BE.po b/addons/hr/i18n/fr_BE.po index 08dd44e3929..5dafd6b79bf 100644 --- a/addons/hr/i18n/fr_BE.po +++ b/addons/hr/i18n/fr_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/gl.po b/addons/hr/i18n/gl.po index 9c6d831967f..759e947f7c6 100644 --- a/addons/hr/i18n/gl.po +++ b/addons/hr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/gu.po b/addons/hr/i18n/gu.po index 422f248175b..b181f933fd0 100644 --- a/addons/hr/i18n/gu.po +++ b/addons/hr/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hi.po b/addons/hr/i18n/hi.po index 39af43e3dac..f2e78c02610 100644 --- a/addons/hr/i18n/hi.po +++ b/addons/hr/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hr.po b/addons/hr/i18n/hr.po index 46922a84856..5bd3d712a75 100644 --- a/addons/hr/i18n/hr.po +++ b/addons/hr/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/hu.po b/addons/hr/i18n/hu.po index e8b03e885d6..701a80ce69b 100644 --- a/addons/hr/i18n/hu.po +++ b/addons/hr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/id.po b/addons/hr/i18n/id.po index 37269dc98ac..ce3be22800e 100644 --- a/addons/hr/i18n/id.po +++ b/addons/hr/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/it.po b/addons/hr/i18n/it.po index e3fd962cbd1..d574014df8f 100644 --- a/addons/hr/i18n/it.po +++ b/addons/hr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ja.po b/addons/hr/i18n/ja.po index b0b38a15312..c4edbf66aa3 100644 --- a/addons/hr/i18n/ja.po +++ b/addons/hr/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ko.po b/addons/hr/i18n/ko.po index 27e2c8600da..47835d65f79 100644 --- a/addons/hr/i18n/ko.po +++ b/addons/hr/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lo.po b/addons/hr/i18n/lo.po index 46d4cf3486f..07ab0442628 100644 --- a/addons/hr/i18n/lo.po +++ b/addons/hr/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lt.po b/addons/hr/i18n/lt.po index 1c69bc2886b..7dd99b49dbd 100644 --- a/addons/hr/i18n/lt.po +++ b/addons/hr/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/lv.po b/addons/hr/i18n/lv.po index 44465b88baf..1229287d226 100644 --- a/addons/hr/i18n/lv.po +++ b/addons/hr/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/mk.po b/addons/hr/i18n/mk.po index cb7f914f2ae..d1610a82bfe 100644 --- a/addons/hr/i18n/mk.po +++ b/addons/hr/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: hr diff --git a/addons/hr/i18n/mn.po b/addons/hr/i18n/mn.po index 49cab222ddc..212c8dbc54e 100644 --- a/addons/hr/i18n/mn.po +++ b/addons/hr/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nb.po b/addons/hr/i18n/nb.po index ae24b195ddb..9d97db6f409 100644 --- a/addons/hr/i18n/nb.po +++ b/addons/hr/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nl.po b/addons/hr/i18n/nl.po index d71f148db8e..d86737f74b6 100644 --- a/addons/hr/i18n/nl.po +++ b/addons/hr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/nl_BE.po b/addons/hr/i18n/nl_BE.po index 628abff7806..ef6ee9e1fac 100644 --- a/addons/hr/i18n/nl_BE.po +++ b/addons/hr/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pl.po b/addons/hr/i18n/pl.po index 25ebb2d9e0c..945a2ca2fb9 100644 --- a/addons/hr/i18n/pl.po +++ b/addons/hr/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pt.po b/addons/hr/i18n/pt.po index 1a5d09befbe..e4139276fd2 100644 --- a/addons/hr/i18n/pt.po +++ b/addons/hr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index 7db401c3096..5fd383a2b3c 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ro.po b/addons/hr/i18n/ro.po index e84b0a7dea4..a62c503e8df 100644 --- a/addons/hr/i18n/ro.po +++ b/addons/hr/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/ru.po b/addons/hr/i18n/ru.po index b78f25b6d8c..56f4d34c8ea 100644 --- a/addons/hr/i18n/ru.po +++ b/addons/hr/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sk.po b/addons/hr/i18n/sk.po index 442dfe44c5c..7d82fc75bfb 100644 --- a/addons/hr/i18n/sk.po +++ b/addons/hr/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sl.po b/addons/hr/i18n/sl.po index 687f0221cfa..7eac26dd85b 100644 --- a/addons/hr/i18n/sl.po +++ b/addons/hr/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sq.po b/addons/hr/i18n/sq.po index 238274f4af1..3d52c254f9d 100644 --- a/addons/hr/i18n/sq.po +++ b/addons/hr/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sr.po b/addons/hr/i18n/sr.po index 6f25dfddb10..131e3ee82b9 100644 --- a/addons/hr/i18n/sr.po +++ b/addons/hr/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sr@latin.po b/addons/hr/i18n/sr@latin.po index 0b5c0882820..07b560a5f1d 100644 --- a/addons/hr/i18n/sr@latin.po +++ b/addons/hr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/sv.po b/addons/hr/i18n/sv.po index bf465fdbc98..83d6bc8ede3 100644 --- a/addons/hr/i18n/sv.po +++ b/addons/hr/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/th.po b/addons/hr/i18n/th.po index 0bdcc210982..322012ad20a 100644 --- a/addons/hr/i18n/th.po +++ b/addons/hr/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/tlh.po b/addons/hr/i18n/tlh.po index 520f9c8add4..f0789141f9d 100644 --- a/addons/hr/i18n/tlh.po +++ b/addons/hr/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/tr.po b/addons/hr/i18n/tr.po index 93bbce85724..7c03dbd2d88 100644 --- a/addons/hr/i18n/tr.po +++ b/addons/hr/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/uk.po b/addons/hr/i18n/uk.po index 0c32e02ba8a..afb2e68f2f4 100644 --- a/addons/hr/i18n/uk.po +++ b/addons/hr/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/vi.po b/addons/hr/i18n/vi.po index e88bf4b7dcd..bc2885c7868 100644 --- a/addons/hr/i18n/vi.po +++ b/addons/hr/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index 41269862ac4..1e65ae71484 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr/i18n/zh_TW.po b/addons/hr/i18n/zh_TW.po index 138eeeaae6a..67d611c74ea 100644 --- a/addons/hr/i18n/zh_TW.po +++ b/addons/hr/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 diff --git a/addons/hr_attendance/i18n/ar.po b/addons/hr_attendance/i18n/ar.po index a52dbbb7e24..c9138ab2c0b 100644 --- a/addons/hr_attendance/i18n/ar.po +++ b/addons/hr_attendance/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/bg.po b/addons/hr_attendance/i18n/bg.po index ddff77444a6..cba09be7631 100644 --- a/addons/hr_attendance/i18n/bg.po +++ b/addons/hr_attendance/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/bs.po b/addons/hr_attendance/i18n/bs.po index ba6fcae67ed..9084e6d5f84 100644 --- a/addons/hr_attendance/i18n/bs.po +++ b/addons/hr_attendance/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ca.po b/addons/hr_attendance/i18n/ca.po index 2e9cf55841b..a0bd7c3476d 100644 --- a/addons/hr_attendance/i18n/ca.po +++ b/addons/hr_attendance/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/cs.po b/addons/hr_attendance/i18n/cs.po index 530dd1945bf..7121dabded3 100644 --- a/addons/hr_attendance/i18n/cs.po +++ b/addons/hr_attendance/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/da.po b/addons/hr_attendance/i18n/da.po index 8cf255eefe6..8c9b570a04f 100644 --- a/addons/hr_attendance/i18n/da.po +++ b/addons/hr_attendance/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/de.po b/addons/hr_attendance/i18n/de.po index 9164b11d5e6..9ddd0ee3dd1 100644 --- a/addons/hr_attendance/i18n/de.po +++ b/addons/hr_attendance/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/el.po b/addons/hr_attendance/i18n/el.po index a2d7fbb3c75..446cd2ce0ec 100644 --- a/addons/hr_attendance/i18n/el.po +++ b/addons/hr_attendance/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/en_GB.po b/addons/hr_attendance/i18n/en_GB.po index ee257c5e647..90f321ebeea 100644 --- a/addons/hr_attendance/i18n/en_GB.po +++ b/addons/hr_attendance/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es.po b/addons/hr_attendance/i18n/es.po index 4d6077bf83e..5d884dab6c3 100644 --- a/addons/hr_attendance/i18n/es.po +++ b/addons/hr_attendance/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_AR.po b/addons/hr_attendance/i18n/es_AR.po index a472243bdb0..457748fcb02 100644 --- a/addons/hr_attendance/i18n/es_AR.po +++ b/addons/hr_attendance/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_CL.po b/addons/hr_attendance/i18n/es_CL.po index 7827a0f6084..6d7a1baedd5 100644 --- a/addons/hr_attendance/i18n/es_CL.po +++ b/addons/hr_attendance/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_CR.po b/addons/hr_attendance/i18n/es_CR.po index f8daf795167..7b3637367cc 100644 --- a/addons/hr_attendance/i18n/es_CR.po +++ b/addons/hr_attendance/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_EC.po b/addons/hr_attendance/i18n/es_EC.po index d161f168d21..e65b205139b 100644 --- a/addons/hr_attendance/i18n/es_EC.po +++ b/addons/hr_attendance/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/es_PY.po b/addons/hr_attendance/i18n/es_PY.po index 518c0231024..8a938fe96ea 100644 --- a/addons/hr_attendance/i18n/es_PY.po +++ b/addons/hr_attendance/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/et.po b/addons/hr_attendance/i18n/et.po index 44199fcd188..da4047db0de 100644 --- a/addons/hr_attendance/i18n/et.po +++ b/addons/hr_attendance/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/fi.po b/addons/hr_attendance/i18n/fi.po index 34c1331018c..ed1d7cd26b8 100644 --- a/addons/hr_attendance/i18n/fi.po +++ b/addons/hr_attendance/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/fr.po b/addons/hr_attendance/i18n/fr.po index bfd00d9dcf6..26afc848d6f 100644 --- a/addons/hr_attendance/i18n/fr.po +++ b/addons/hr_attendance/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/gl.po b/addons/hr_attendance/i18n/gl.po index 99689dea250..ca4416e080a 100644 --- a/addons/hr_attendance/i18n/gl.po +++ b/addons/hr_attendance/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/he.po b/addons/hr_attendance/i18n/he.po index 9bc9482ad36..15d89c54698 100644 --- a/addons/hr_attendance/i18n/he.po +++ b/addons/hr_attendance/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/hr.po b/addons/hr_attendance/i18n/hr.po index 3a151acf36e..665f0ec0eb6 100644 --- a/addons/hr_attendance/i18n/hr.po +++ b/addons/hr_attendance/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/hu.po b/addons/hr_attendance/i18n/hu.po index 4ad3728f477..9e404f25741 100644 --- a/addons/hr_attendance/i18n/hu.po +++ b/addons/hr_attendance/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/id.po b/addons/hr_attendance/i18n/id.po index 7ec057831f6..8baa9957dc7 100644 --- a/addons/hr_attendance/i18n/id.po +++ b/addons/hr_attendance/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/it.po b/addons/hr_attendance/i18n/it.po index 022cf36014e..c3b76427058 100644 --- a/addons/hr_attendance/i18n/it.po +++ b/addons/hr_attendance/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ja.po b/addons/hr_attendance/i18n/ja.po index 9267c3bfa9f..d881b414d09 100644 --- a/addons/hr_attendance/i18n/ja.po +++ b/addons/hr_attendance/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ko.po b/addons/hr_attendance/i18n/ko.po index 7e4ec0e887e..ca7b55c3176 100644 --- a/addons/hr_attendance/i18n/ko.po +++ b/addons/hr_attendance/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/lt.po b/addons/hr_attendance/i18n/lt.po index 1e9d91b1a55..0824a74e851 100644 --- a/addons/hr_attendance/i18n/lt.po +++ b/addons/hr_attendance/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/lv.po b/addons/hr_attendance/i18n/lv.po index ad5b0e01d7b..70ba4e6e345 100644 --- a/addons/hr_attendance/i18n/lv.po +++ b/addons/hr_attendance/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/mk.po b/addons/hr_attendance/i18n/mk.po index f619cabec35..80a113745b7 100644 --- a/addons/hr_attendance/i18n/mk.po +++ b/addons/hr_attendance/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/mn.po b/addons/hr_attendance/i18n/mn.po index 65dce8df661..c986385228b 100644 --- a/addons/hr_attendance/i18n/mn.po +++ b/addons/hr_attendance/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nb.po b/addons/hr_attendance/i18n/nb.po index b8a353a6cb8..a88bf2b4a8c 100644 --- a/addons/hr_attendance/i18n/nb.po +++ b/addons/hr_attendance/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nl.po b/addons/hr_attendance/i18n/nl.po index 4a75ce65661..0379601dfa7 100644 --- a/addons/hr_attendance/i18n/nl.po +++ b/addons/hr_attendance/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/nl_BE.po b/addons/hr_attendance/i18n/nl_BE.po index 7c99d7f5ae8..25b1a25610c 100644 --- a/addons/hr_attendance/i18n/nl_BE.po +++ b/addons/hr_attendance/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pl.po b/addons/hr_attendance/i18n/pl.po index a96285256d5..f6165f5d750 100644 --- a/addons/hr_attendance/i18n/pl.po +++ b/addons/hr_attendance/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pt.po b/addons/hr_attendance/i18n/pt.po index 6865dd31ef2..d1cf25e7f43 100644 --- a/addons/hr_attendance/i18n/pt.po +++ b/addons/hr_attendance/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/pt_BR.po b/addons/hr_attendance/i18n/pt_BR.po index 989e1542240..5009d0e3141 100644 --- a/addons/hr_attendance/i18n/pt_BR.po +++ b/addons/hr_attendance/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ro.po b/addons/hr_attendance/i18n/ro.po index 22fba2d91ce..fdfd30dfcc1 100644 --- a/addons/hr_attendance/i18n/ro.po +++ b/addons/hr_attendance/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/ru.po b/addons/hr_attendance/i18n/ru.po index 8cea406e718..01ed970ed04 100644 --- a/addons/hr_attendance/i18n/ru.po +++ b/addons/hr_attendance/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sl.po b/addons/hr_attendance/i18n/sl.po index 1c75f414ceb..6e9ebdd9f77 100644 --- a/addons/hr_attendance/i18n/sl.po +++ b/addons/hr_attendance/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sq.po b/addons/hr_attendance/i18n/sq.po index 627fb13871f..caf0485f6a2 100644 --- a/addons/hr_attendance/i18n/sq.po +++ b/addons/hr_attendance/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sr.po b/addons/hr_attendance/i18n/sr.po index 4c7fbbf49ca..1884b439063 100644 --- a/addons/hr_attendance/i18n/sr.po +++ b/addons/hr_attendance/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sr@latin.po b/addons/hr_attendance/i18n/sr@latin.po index d9335fe1451..ae1bc8fbd8b 100644 --- a/addons/hr_attendance/i18n/sr@latin.po +++ b/addons/hr_attendance/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/sv.po b/addons/hr_attendance/i18n/sv.po index f26057c4744..cd214364f2d 100644 --- a/addons/hr_attendance/i18n/sv.po +++ b/addons/hr_attendance/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/tlh.po b/addons/hr_attendance/i18n/tlh.po index 631c55d8349..5ab0c309cb7 100644 --- a/addons/hr_attendance/i18n/tlh.po +++ b/addons/hr_attendance/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/tr.po b/addons/hr_attendance/i18n/tr.po index 573cfdae19f..3ed80b02417 100644 --- a/addons/hr_attendance/i18n/tr.po +++ b/addons/hr_attendance/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/uk.po b/addons/hr_attendance/i18n/uk.po index 7ecdf6625b3..983377fbb13 100644 --- a/addons/hr_attendance/i18n/uk.po +++ b/addons/hr_attendance/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/vi.po b/addons/hr_attendance/i18n/vi.po index 0590c5b3528..28a2abcd69f 100644 --- a/addons/hr_attendance/i18n/vi.po +++ b/addons/hr_attendance/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/zh_CN.po b/addons/hr_attendance/i18n/zh_CN.po index cad66f713e5..e1544c57393 100644 --- a/addons/hr_attendance/i18n/zh_CN.po +++ b/addons/hr_attendance/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/zh_TW.po b/addons/hr_attendance/i18n/zh_TW.po index 2a724fccaf7..9a60010d0d2 100644 --- a/addons/hr_attendance/i18n/zh_TW.po +++ b/addons/hr_attendance/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_contract/i18n/ar.po b/addons/hr_contract/i18n/ar.po index 95329fca630..d1df1df2b22 100644 --- a/addons/hr_contract/i18n/ar.po +++ b/addons/hr_contract/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/bg.po b/addons/hr_contract/i18n/bg.po index 1306411b0fc..750c043e516 100644 --- a/addons/hr_contract/i18n/bg.po +++ b/addons/hr_contract/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/bs.po b/addons/hr_contract/i18n/bs.po index 6e1b802eaa0..5f9cab061cb 100644 --- a/addons/hr_contract/i18n/bs.po +++ b/addons/hr_contract/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ca.po b/addons/hr_contract/i18n/ca.po index 829111e2304..5456b3c700c 100644 --- a/addons/hr_contract/i18n/ca.po +++ b/addons/hr_contract/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/cs.po b/addons/hr_contract/i18n/cs.po index b1bfa779499..bbd7a8c7622 100644 --- a/addons/hr_contract/i18n/cs.po +++ b/addons/hr_contract/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/da.po b/addons/hr_contract/i18n/da.po index 963df01b436..668629208db 100644 --- a/addons/hr_contract/i18n/da.po +++ b/addons/hr_contract/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/de.po b/addons/hr_contract/i18n/de.po index 1244aea9b98..15cfaabc13d 100644 --- a/addons/hr_contract/i18n/de.po +++ b/addons/hr_contract/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/el.po b/addons/hr_contract/i18n/el.po index 659b4f9b95f..7326443f1c9 100644 --- a/addons/hr_contract/i18n/el.po +++ b/addons/hr_contract/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/en_GB.po b/addons/hr_contract/i18n/en_GB.po index a7904e31ed2..9ba225f3e86 100644 --- a/addons/hr_contract/i18n/en_GB.po +++ b/addons/hr_contract/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es.po b/addons/hr_contract/i18n/es.po index 54ad67fbdaa..59586a2cdfb 100644 --- a/addons/hr_contract/i18n/es.po +++ b/addons/hr_contract/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_AR.po b/addons/hr_contract/i18n/es_AR.po index 05d13f44c7f..45deecbedad 100644 --- a/addons/hr_contract/i18n/es_AR.po +++ b/addons/hr_contract/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_CR.po b/addons/hr_contract/i18n/es_CR.po index 2b4500de43c..1432efecd60 100644 --- a/addons/hr_contract/i18n/es_CR.po +++ b/addons/hr_contract/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_EC.po b/addons/hr_contract/i18n/es_EC.po index 07b8737167f..edddc8c5553 100644 --- a/addons/hr_contract/i18n/es_EC.po +++ b/addons/hr_contract/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/es_PY.po b/addons/hr_contract/i18n/es_PY.po index 3d6d34ccfd3..4839d84d36f 100644 --- a/addons/hr_contract/i18n/es_PY.po +++ b/addons/hr_contract/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/et.po b/addons/hr_contract/i18n/et.po index 1d2951cc607..6dd18541126 100644 --- a/addons/hr_contract/i18n/et.po +++ b/addons/hr_contract/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/fi.po b/addons/hr_contract/i18n/fi.po index ad8f9554753..678f51eeac4 100644 --- a/addons/hr_contract/i18n/fi.po +++ b/addons/hr_contract/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/fr.po b/addons/hr_contract/i18n/fr.po index eaaf33dc513..17beb1480d7 100644 --- a/addons/hr_contract/i18n/fr.po +++ b/addons/hr_contract/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/gl.po b/addons/hr_contract/i18n/gl.po index ddacdedb5d2..b318b2b6f3a 100644 --- a/addons/hr_contract/i18n/gl.po +++ b/addons/hr_contract/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/gu.po b/addons/hr_contract/i18n/gu.po index a10468dd459..cdb5c1664be 100644 --- a/addons/hr_contract/i18n/gu.po +++ b/addons/hr_contract/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hi.po b/addons/hr_contract/i18n/hi.po index cff901d1957..91508165cea 100644 --- a/addons/hr_contract/i18n/hi.po +++ b/addons/hr_contract/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hr.po b/addons/hr_contract/i18n/hr.po index d16a24df359..aaeb6bd9156 100644 --- a/addons/hr_contract/i18n/hr.po +++ b/addons/hr_contract/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/hu.po b/addons/hr_contract/i18n/hu.po index 7378722ecd7..e4d231f5be6 100644 --- a/addons/hr_contract/i18n/hu.po +++ b/addons/hr_contract/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/id.po b/addons/hr_contract/i18n/id.po index 10fcae539b8..213a7395678 100644 --- a/addons/hr_contract/i18n/id.po +++ b/addons/hr_contract/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/it.po b/addons/hr_contract/i18n/it.po index 866b23a6107..768f4bc31f0 100644 --- a/addons/hr_contract/i18n/it.po +++ b/addons/hr_contract/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ja.po b/addons/hr_contract/i18n/ja.po index e5ea906b875..a35c53e0d12 100644 --- a/addons/hr_contract/i18n/ja.po +++ b/addons/hr_contract/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ko.po b/addons/hr_contract/i18n/ko.po index 4882d819481..9d2bd05dfbe 100644 --- a/addons/hr_contract/i18n/ko.po +++ b/addons/hr_contract/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lo.po b/addons/hr_contract/i18n/lo.po index 5c1a0111bee..5f1d88c75c1 100644 --- a/addons/hr_contract/i18n/lo.po +++ b/addons/hr_contract/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lt.po b/addons/hr_contract/i18n/lt.po index 8592dbf741c..2498f8a6273 100644 --- a/addons/hr_contract/i18n/lt.po +++ b/addons/hr_contract/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/lv.po b/addons/hr_contract/i18n/lv.po index 55c229a86af..eb2f003a76d 100644 --- a/addons/hr_contract/i18n/lv.po +++ b/addons/hr_contract/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/mk.po b/addons/hr_contract/i18n/mk.po index 631ea4f4b44..a2609d8cac6 100644 --- a/addons/hr_contract/i18n/mk.po +++ b/addons/hr_contract/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/mn.po b/addons/hr_contract/i18n/mn.po index 0366cd79c96..ac51679d84e 100644 --- a/addons/hr_contract/i18n/mn.po +++ b/addons/hr_contract/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nb.po b/addons/hr_contract/i18n/nb.po index af55cc16128..4c957ca52a5 100644 --- a/addons/hr_contract/i18n/nb.po +++ b/addons/hr_contract/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nl.po b/addons/hr_contract/i18n/nl.po index cc93fa66723..3191ada4dd4 100644 --- a/addons/hr_contract/i18n/nl.po +++ b/addons/hr_contract/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/nl_BE.po b/addons/hr_contract/i18n/nl_BE.po index 958499e8d4a..82da563b08a 100644 --- a/addons/hr_contract/i18n/nl_BE.po +++ b/addons/hr_contract/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pl.po b/addons/hr_contract/i18n/pl.po index 9a045aea742..0e263973b91 100644 --- a/addons/hr_contract/i18n/pl.po +++ b/addons/hr_contract/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pt.po b/addons/hr_contract/i18n/pt.po index 99825ae2797..ff17e947d8f 100644 --- a/addons/hr_contract/i18n/pt.po +++ b/addons/hr_contract/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/pt_BR.po b/addons/hr_contract/i18n/pt_BR.po index ba9abb85cf9..02737856d4f 100644 --- a/addons/hr_contract/i18n/pt_BR.po +++ b/addons/hr_contract/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ro.po b/addons/hr_contract/i18n/ro.po index 679b263e2f8..0bbd46ea602 100644 --- a/addons/hr_contract/i18n/ro.po +++ b/addons/hr_contract/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/ru.po b/addons/hr_contract/i18n/ru.po index c64f100ac93..f169e99bcf7 100644 --- a/addons/hr_contract/i18n/ru.po +++ b/addons/hr_contract/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sl.po b/addons/hr_contract/i18n/sl.po index 9db9e12f80f..6ed9a55f684 100644 --- a/addons/hr_contract/i18n/sl.po +++ b/addons/hr_contract/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sq.po b/addons/hr_contract/i18n/sq.po index a8bc4553606..724762ac1d4 100644 --- a/addons/hr_contract/i18n/sq.po +++ b/addons/hr_contract/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sr.po b/addons/hr_contract/i18n/sr.po index 67735e95a58..1d41807ad29 100644 --- a/addons/hr_contract/i18n/sr.po +++ b/addons/hr_contract/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sr@latin.po b/addons/hr_contract/i18n/sr@latin.po index 5216a44da3a..7019e66204a 100644 --- a/addons/hr_contract/i18n/sr@latin.po +++ b/addons/hr_contract/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/sv.po b/addons/hr_contract/i18n/sv.po index cf0704cdbfc..13b4a81e13b 100644 --- a/addons/hr_contract/i18n/sv.po +++ b/addons/hr_contract/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/tlh.po b/addons/hr_contract/i18n/tlh.po index d2ef603574a..3fe301f96f1 100644 --- a/addons/hr_contract/i18n/tlh.po +++ b/addons/hr_contract/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/tr.po b/addons/hr_contract/i18n/tr.po index 0696f091102..91153294d66 100644 --- a/addons/hr_contract/i18n/tr.po +++ b/addons/hr_contract/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/uk.po b/addons/hr_contract/i18n/uk.po index 89c0ceef274..b8f52c46281 100644 --- a/addons/hr_contract/i18n/uk.po +++ b/addons/hr_contract/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/vi.po b/addons/hr_contract/i18n/vi.po index 50e2264f649..ad90d646ab6 100644 --- a/addons/hr_contract/i18n/vi.po +++ b/addons/hr_contract/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/zh_CN.po b/addons/hr_contract/i18n/zh_CN.po index c72c85e1232..9b618ff7c96 100644 --- a/addons/hr_contract/i18n/zh_CN.po +++ b/addons/hr_contract/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/zh_TW.po b/addons/hr_contract/i18n/zh_TW.po index 6cebfada175..420dfcdc085 100644 --- a/addons/hr_contract/i18n/zh_TW.po +++ b/addons/hr_contract/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_evaluation/i18n/ar.po b/addons/hr_evaluation/i18n/ar.po index efbcb91a97f..1ee8a487de5 100644 --- a/addons/hr_evaluation/i18n/ar.po +++ b/addons/hr_evaluation/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/bg.po b/addons/hr_evaluation/i18n/bg.po index f92859dd94b..acddc136cff 100644 --- a/addons/hr_evaluation/i18n/bg.po +++ b/addons/hr_evaluation/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ca.po b/addons/hr_evaluation/i18n/ca.po index 94f1c064bbd..35958eb3bf3 100644 --- a/addons/hr_evaluation/i18n/ca.po +++ b/addons/hr_evaluation/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/da.po b/addons/hr_evaluation/i18n/da.po index 7e015678bd0..147391a36f1 100644 --- a/addons/hr_evaluation/i18n/da.po +++ b/addons/hr_evaluation/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/de.po b/addons/hr_evaluation/i18n/de.po index a4d96ff2468..f29689fb40b 100644 --- a/addons/hr_evaluation/i18n/de.po +++ b/addons/hr_evaluation/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es.po b/addons/hr_evaluation/i18n/es.po index ed1cbf2e3c9..ffd564ca855 100644 --- a/addons/hr_evaluation/i18n/es.po +++ b/addons/hr_evaluation/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es_CR.po b/addons/hr_evaluation/i18n/es_CR.po index 08f59ffd8aa..051c1d74628 100644 --- a/addons/hr_evaluation/i18n/es_CR.po +++ b/addons/hr_evaluation/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/es_EC.po b/addons/hr_evaluation/i18n/es_EC.po index eeaf47720d8..a5abab6cdf1 100644 --- a/addons/hr_evaluation/i18n/es_EC.po +++ b/addons/hr_evaluation/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/et.po b/addons/hr_evaluation/i18n/et.po index a819cf469b8..0c19f88663e 100644 --- a/addons/hr_evaluation/i18n/et.po +++ b/addons/hr_evaluation/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/fi.po b/addons/hr_evaluation/i18n/fi.po index 1a76e9205ca..f2dbdbb3651 100644 --- a/addons/hr_evaluation/i18n/fi.po +++ b/addons/hr_evaluation/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/fr.po b/addons/hr_evaluation/i18n/fr.po index 02c8e7c2038..a5821538cf2 100644 --- a/addons/hr_evaluation/i18n/fr.po +++ b/addons/hr_evaluation/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/gl.po b/addons/hr_evaluation/i18n/gl.po index 1c731bbf11e..d465ab1d46a 100644 --- a/addons/hr_evaluation/i18n/gl.po +++ b/addons/hr_evaluation/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/hr.po b/addons/hr_evaluation/i18n/hr.po index 7c8b445c2dd..468b4795bec 100644 --- a/addons/hr_evaluation/i18n/hr.po +++ b/addons/hr_evaluation/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/hu.po b/addons/hr_evaluation/i18n/hu.po index 27b8055dd8c..724af7e00ec 100644 --- a/addons/hr_evaluation/i18n/hu.po +++ b/addons/hr_evaluation/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/id.po b/addons/hr_evaluation/i18n/id.po index cbd7d7787f4..7439be278df 100644 --- a/addons/hr_evaluation/i18n/id.po +++ b/addons/hr_evaluation/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/it.po b/addons/hr_evaluation/i18n/it.po index 1041f557511..f059ced866a 100644 --- a/addons/hr_evaluation/i18n/it.po +++ b/addons/hr_evaluation/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ja.po b/addons/hr_evaluation/i18n/ja.po index 2aaa1af2b3f..04a59046ec5 100644 --- a/addons/hr_evaluation/i18n/ja.po +++ b/addons/hr_evaluation/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/mk.po b/addons/hr_evaluation/i18n/mk.po index ee4c4dbdb74..4aa76c67c93 100644 --- a/addons/hr_evaluation/i18n/mk.po +++ b/addons/hr_evaluation/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/mn.po b/addons/hr_evaluation/i18n/mn.po index f8ecdb4fd1c..c6b652906de 100644 --- a/addons/hr_evaluation/i18n/mn.po +++ b/addons/hr_evaluation/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/nl.po b/addons/hr_evaluation/i18n/nl.po index 82e168c0bfa..2e8ed797135 100644 --- a/addons/hr_evaluation/i18n/nl.po +++ b/addons/hr_evaluation/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pt.po b/addons/hr_evaluation/i18n/pt.po index b676234a992..020799bcbda 100644 --- a/addons/hr_evaluation/i18n/pt.po +++ b/addons/hr_evaluation/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/pt_BR.po b/addons/hr_evaluation/i18n/pt_BR.po index 83203125ec0..87738348125 100644 --- a/addons/hr_evaluation/i18n/pt_BR.po +++ b/addons/hr_evaluation/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ro.po b/addons/hr_evaluation/i18n/ro.po index be452aedc86..66fc61b221d 100644 --- a/addons/hr_evaluation/i18n/ro.po +++ b/addons/hr_evaluation/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/ru.po b/addons/hr_evaluation/i18n/ru.po index 32222445103..d3685d18fca 100644 --- a/addons/hr_evaluation/i18n/ru.po +++ b/addons/hr_evaluation/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sl.po b/addons/hr_evaluation/i18n/sl.po index 1244977a191..fc11ef3f7a6 100644 --- a/addons/hr_evaluation/i18n/sl.po +++ b/addons/hr_evaluation/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sr.po b/addons/hr_evaluation/i18n/sr.po index c823cf58e95..7d3e5972a57 100644 --- a/addons/hr_evaluation/i18n/sr.po +++ b/addons/hr_evaluation/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sr@latin.po b/addons/hr_evaluation/i18n/sr@latin.po index b5a44dbcb40..c44dfd5bb13 100644 --- a/addons/hr_evaluation/i18n/sr@latin.po +++ b/addons/hr_evaluation/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/sv.po b/addons/hr_evaluation/i18n/sv.po index c802f73813e..ce99a88f696 100644 --- a/addons/hr_evaluation/i18n/sv.po +++ b/addons/hr_evaluation/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/tr.po b/addons/hr_evaluation/i18n/tr.po index 122974d6628..23c54e7b09b 100644 --- a/addons/hr_evaluation/i18n/tr.po +++ b/addons/hr_evaluation/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/zh_CN.po b/addons/hr_evaluation/i18n/zh_CN.po index a38e6c783b0..7ee4c6ad447 100644 --- a/addons/hr_evaluation/i18n/zh_CN.po +++ b/addons/hr_evaluation/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_expense/i18n/ar.po b/addons/hr_expense/i18n/ar.po index b91feffc0e5..bb0e11179e9 100644 --- a/addons/hr_expense/i18n/ar.po +++ b/addons/hr_expense/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/bg.po b/addons/hr_expense/i18n/bg.po index 72ef85cf5f0..104ff5bd8f4 100644 --- a/addons/hr_expense/i18n/bg.po +++ b/addons/hr_expense/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/bs.po b/addons/hr_expense/i18n/bs.po index 3b8033f5fa7..335d2124550 100644 --- a/addons/hr_expense/i18n/bs.po +++ b/addons/hr_expense/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ca.po b/addons/hr_expense/i18n/ca.po index 011f8d0062a..b93af463575 100644 --- a/addons/hr_expense/i18n/ca.po +++ b/addons/hr_expense/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/cs.po b/addons/hr_expense/i18n/cs.po index 1e2eaef6f77..47a334f366d 100644 --- a/addons/hr_expense/i18n/cs.po +++ b/addons/hr_expense/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/da.po b/addons/hr_expense/i18n/da.po index b25a82a357e..4df81590958 100644 --- a/addons/hr_expense/i18n/da.po +++ b/addons/hr_expense/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/de.po b/addons/hr_expense/i18n/de.po index 614b3ce0dc1..d31b0dad6ec 100644 --- a/addons/hr_expense/i18n/de.po +++ b/addons/hr_expense/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/el.po b/addons/hr_expense/i18n/el.po index 92383316e49..dfd31f340b8 100644 --- a/addons/hr_expense/i18n/el.po +++ b/addons/hr_expense/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es.po b/addons/hr_expense/i18n/es.po index b408404b5e5..5bdd69f8597 100644 --- a/addons/hr_expense/i18n/es.po +++ b/addons/hr_expense/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_AR.po b/addons/hr_expense/i18n/es_AR.po index 8c9b59b4249..6a6abad4443 100644 --- a/addons/hr_expense/i18n/es_AR.po +++ b/addons/hr_expense/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_CR.po b/addons/hr_expense/i18n/es_CR.po index 12a6f0b728a..7fac4cffd50 100644 --- a/addons/hr_expense/i18n/es_CR.po +++ b/addons/hr_expense/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/es_EC.po b/addons/hr_expense/i18n/es_EC.po index 274ac0a7e40..3dcbbc364e5 100644 --- a/addons/hr_expense/i18n/es_EC.po +++ b/addons/hr_expense/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/et.po b/addons/hr_expense/i18n/et.po index 4440a3fdbc3..7e1cebba248 100644 --- a/addons/hr_expense/i18n/et.po +++ b/addons/hr_expense/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/fi.po b/addons/hr_expense/i18n/fi.po index 4b79b3bcbd2..e76b7f50ad6 100644 --- a/addons/hr_expense/i18n/fi.po +++ b/addons/hr_expense/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/fr.po b/addons/hr_expense/i18n/fr.po index f74112fe8f7..63cbb999ba4 100644 --- a/addons/hr_expense/i18n/fr.po +++ b/addons/hr_expense/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/hr.po b/addons/hr_expense/i18n/hr.po index 2a44d347691..28665ffe1bd 100644 --- a/addons/hr_expense/i18n/hr.po +++ b/addons/hr_expense/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/hu.po b/addons/hr_expense/i18n/hu.po index 6ab013ccd79..bb32786dd25 100644 --- a/addons/hr_expense/i18n/hu.po +++ b/addons/hr_expense/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/id.po b/addons/hr_expense/i18n/id.po index e89a1b7df48..9d21f5f611c 100644 --- a/addons/hr_expense/i18n/id.po +++ b/addons/hr_expense/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/it.po b/addons/hr_expense/i18n/it.po index f5e1e63a1be..b221b6a04f6 100644 --- a/addons/hr_expense/i18n/it.po +++ b/addons/hr_expense/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ja.po b/addons/hr_expense/i18n/ja.po index 990858a61c7..ced31024abf 100644 --- a/addons/hr_expense/i18n/ja.po +++ b/addons/hr_expense/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ko.po b/addons/hr_expense/i18n/ko.po index ece5e082593..dbf61cd060d 100644 --- a/addons/hr_expense/i18n/ko.po +++ b/addons/hr_expense/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/lt.po b/addons/hr_expense/i18n/lt.po index 1159469f2db..9c0b3071abc 100644 --- a/addons/hr_expense/i18n/lt.po +++ b/addons/hr_expense/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/lv.po b/addons/hr_expense/i18n/lv.po index 49009cd8d52..540d77ae51a 100644 --- a/addons/hr_expense/i18n/lv.po +++ b/addons/hr_expense/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/mk.po b/addons/hr_expense/i18n/mk.po index 9dd6df1f12b..e8389926c44 100644 --- a/addons/hr_expense/i18n/mk.po +++ b/addons/hr_expense/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/mn.po b/addons/hr_expense/i18n/mn.po index 87224881de7..3631a2bc25a 100644 --- a/addons/hr_expense/i18n/mn.po +++ b/addons/hr_expense/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nb.po b/addons/hr_expense/i18n/nb.po index ca24d514105..91fafeb632e 100644 --- a/addons/hr_expense/i18n/nb.po +++ b/addons/hr_expense/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nl.po b/addons/hr_expense/i18n/nl.po index fe70a78fe87..427ceace4d1 100644 --- a/addons/hr_expense/i18n/nl.po +++ b/addons/hr_expense/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/nl_BE.po b/addons/hr_expense/i18n/nl_BE.po index 52e6ff4be8a..767404e8db5 100644 --- a/addons/hr_expense/i18n/nl_BE.po +++ b/addons/hr_expense/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pl.po b/addons/hr_expense/i18n/pl.po index 457fabf8c87..d3bc3ddffa3 100644 --- a/addons/hr_expense/i18n/pl.po +++ b/addons/hr_expense/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pt.po b/addons/hr_expense/i18n/pt.po index 4828a9621ee..bf8a7bbb496 100644 --- a/addons/hr_expense/i18n/pt.po +++ b/addons/hr_expense/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index fc00d6e8628..d10ac231eb2 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ro.po b/addons/hr_expense/i18n/ro.po index 5a696ad4165..814575fa104 100644 --- a/addons/hr_expense/i18n/ro.po +++ b/addons/hr_expense/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/ru.po b/addons/hr_expense/i18n/ru.po index 9675f373c25..a3ce5cc0f86 100644 --- a/addons/hr_expense/i18n/ru.po +++ b/addons/hr_expense/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sl.po b/addons/hr_expense/i18n/sl.po index d0bc7228dc6..1b2e7a00c96 100644 --- a/addons/hr_expense/i18n/sl.po +++ b/addons/hr_expense/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sq.po b/addons/hr_expense/i18n/sq.po index 2bb4d3e1197..e76c4b3b434 100644 --- a/addons/hr_expense/i18n/sq.po +++ b/addons/hr_expense/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:40+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sr.po b/addons/hr_expense/i18n/sr.po index 94b08fecef5..83fe74ab68b 100644 --- a/addons/hr_expense/i18n/sr.po +++ b/addons/hr_expense/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sr@latin.po b/addons/hr_expense/i18n/sr@latin.po index 9a9cc18c2fa..3fc879ee19d 100644 --- a/addons/hr_expense/i18n/sr@latin.po +++ b/addons/hr_expense/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/sv.po b/addons/hr_expense/i18n/sv.po index 1bdfc2c9236..e141dac6f70 100644 --- a/addons/hr_expense/i18n/sv.po +++ b/addons/hr_expense/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/tlh.po b/addons/hr_expense/i18n/tlh.po index 643855b13e5..50134b2cd66 100644 --- a/addons/hr_expense/i18n/tlh.po +++ b/addons/hr_expense/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/tr.po b/addons/hr_expense/i18n/tr.po index af3d9ad2de4..914fbd7615e 100644 --- a/addons/hr_expense/i18n/tr.po +++ b/addons/hr_expense/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/uk.po b/addons/hr_expense/i18n/uk.po index 690eefdd6c6..0c5f0ea6486 100644 --- a/addons/hr_expense/i18n/uk.po +++ b/addons/hr_expense/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/vi.po b/addons/hr_expense/i18n/vi.po index 3797fb046a5..5654e351503 100644 --- a/addons/hr_expense/i18n/vi.po +++ b/addons/hr_expense/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_CN.po b/addons/hr_expense/i18n/zh_CN.po index 893b553615b..f1673e4baac 100644 --- a/addons/hr_expense/i18n/zh_CN.po +++ b/addons/hr_expense/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_expense/i18n/zh_TW.po b/addons/hr_expense/i18n/zh_TW.po index b4b012bd21d..20eb71e593f 100644 --- a/addons/hr_expense/i18n/zh_TW.po +++ b/addons/hr_expense/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_holidays/i18n/ar.po b/addons/hr_holidays/i18n/ar.po index a57238cefc6..a53a8ece259 100644 --- a/addons/hr_holidays/i18n/ar.po +++ b/addons/hr_holidays/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/bg.po b/addons/hr_holidays/i18n/bg.po index efbeecd6c48..ee0ec4ff0e5 100644 --- a/addons/hr_holidays/i18n/bg.po +++ b/addons/hr_holidays/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/bs.po b/addons/hr_holidays/i18n/bs.po index f7aa40556a6..af916297102 100644 --- a/addons/hr_holidays/i18n/bs.po +++ b/addons/hr_holidays/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ca.po b/addons/hr_holidays/i18n/ca.po index 243ac4fb7af..4dfe2856650 100644 --- a/addons/hr_holidays/i18n/ca.po +++ b/addons/hr_holidays/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/cs.po b/addons/hr_holidays/i18n/cs.po index 73034f7d043..61bc19cf371 100644 --- a/addons/hr_holidays/i18n/cs.po +++ b/addons/hr_holidays/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/da.po b/addons/hr_holidays/i18n/da.po index 369b8fdd2c8..aeda9846196 100644 --- a/addons/hr_holidays/i18n/da.po +++ b/addons/hr_holidays/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/de.po b/addons/hr_holidays/i18n/de.po index 15990ceda68..f31f4fc563d 100644 --- a/addons/hr_holidays/i18n/de.po +++ b/addons/hr_holidays/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/el.po b/addons/hr_holidays/i18n/el.po index 0a597af45c6..8fcc3e56827 100644 --- a/addons/hr_holidays/i18n/el.po +++ b/addons/hr_holidays/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es.po b/addons/hr_holidays/i18n/es.po index 439f6948c52..4a566d3dc37 100644 --- a/addons/hr_holidays/i18n/es.po +++ b/addons/hr_holidays/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es_AR.po b/addons/hr_holidays/i18n/es_AR.po index aee3dabcdce..cf266efa1a3 100644 --- a/addons/hr_holidays/i18n/es_AR.po +++ b/addons/hr_holidays/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es_CR.po b/addons/hr_holidays/i18n/es_CR.po index f1bd92ed587..41d0cb0c61b 100644 --- a/addons/hr_holidays/i18n/es_CR.po +++ b/addons/hr_holidays/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/es_EC.po b/addons/hr_holidays/i18n/es_EC.po index bed8a989548..b532ec2ef98 100644 --- a/addons/hr_holidays/i18n/es_EC.po +++ b/addons/hr_holidays/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/et.po b/addons/hr_holidays/i18n/et.po index dce8261544a..c8f8c58cc10 100644 --- a/addons/hr_holidays/i18n/et.po +++ b/addons/hr_holidays/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/fi.po b/addons/hr_holidays/i18n/fi.po index 5d348aeb642..4c51dc3a142 100644 --- a/addons/hr_holidays/i18n/fi.po +++ b/addons/hr_holidays/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/fr.po b/addons/hr_holidays/i18n/fr.po index f8514b35627..21774f04b04 100644 --- a/addons/hr_holidays/i18n/fr.po +++ b/addons/hr_holidays/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/gu.po b/addons/hr_holidays/i18n/gu.po index 8ca120992ec..1974ca1d48c 100644 --- a/addons/hr_holidays/i18n/gu.po +++ b/addons/hr_holidays/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hi.po b/addons/hr_holidays/i18n/hi.po index f8847c52086..ff5f7af0f02 100644 --- a/addons/hr_holidays/i18n/hi.po +++ b/addons/hr_holidays/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hr.po b/addons/hr_holidays/i18n/hr.po index 1c09318af1b..a707a9b9807 100644 --- a/addons/hr_holidays/i18n/hr.po +++ b/addons/hr_holidays/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/hu.po b/addons/hr_holidays/i18n/hu.po index 59d4e3a23bb..b2ec6db4b50 100644 --- a/addons/hr_holidays/i18n/hu.po +++ b/addons/hr_holidays/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/id.po b/addons/hr_holidays/i18n/id.po index b8a1a6aac87..0f4ff988d9e 100644 --- a/addons/hr_holidays/i18n/id.po +++ b/addons/hr_holidays/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/it.po b/addons/hr_holidays/i18n/it.po index 372bbe30f51..3b59c7efad5 100644 --- a/addons/hr_holidays/i18n/it.po +++ b/addons/hr_holidays/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ja.po b/addons/hr_holidays/i18n/ja.po index a1d483f6aa4..00288018a57 100644 --- a/addons/hr_holidays/i18n/ja.po +++ b/addons/hr_holidays/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ko.po b/addons/hr_holidays/i18n/ko.po index c09ec1460eb..671ad97e7d8 100644 --- a/addons/hr_holidays/i18n/ko.po +++ b/addons/hr_holidays/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/lt.po b/addons/hr_holidays/i18n/lt.po index 6dd90771350..53727200fdf 100644 --- a/addons/hr_holidays/i18n/lt.po +++ b/addons/hr_holidays/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/lv.po b/addons/hr_holidays/i18n/lv.po index cadd26250b6..350469318bc 100644 --- a/addons/hr_holidays/i18n/lv.po +++ b/addons/hr_holidays/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/mk.po b/addons/hr_holidays/i18n/mk.po index 38531decb80..3cf31f8b0e9 100644 --- a/addons/hr_holidays/i18n/mk.po +++ b/addons/hr_holidays/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/mn.po b/addons/hr_holidays/i18n/mn.po index c477daae050..e90530c8a05 100644 --- a/addons/hr_holidays/i18n/mn.po +++ b/addons/hr_holidays/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nb.po b/addons/hr_holidays/i18n/nb.po index b29a0f56c82..72e8cef5598 100644 --- a/addons/hr_holidays/i18n/nb.po +++ b/addons/hr_holidays/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nl.po b/addons/hr_holidays/i18n/nl.po index 0824fadc4b5..70ce3ba7e7f 100644 --- a/addons/hr_holidays/i18n/nl.po +++ b/addons/hr_holidays/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/nl_BE.po b/addons/hr_holidays/i18n/nl_BE.po index 69c2a3ee913..8273fd2143b 100644 --- a/addons/hr_holidays/i18n/nl_BE.po +++ b/addons/hr_holidays/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/pl.po b/addons/hr_holidays/i18n/pl.po index 1e4438fbc32..f0cdce46721 100644 --- a/addons/hr_holidays/i18n/pl.po +++ b/addons/hr_holidays/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/pt.po b/addons/hr_holidays/i18n/pt.po index 7540b03b216..48f6ec7e73f 100644 --- a/addons/hr_holidays/i18n/pt.po +++ b/addons/hr_holidays/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/pt_BR.po b/addons/hr_holidays/i18n/pt_BR.po index 5258292939d..9701e79db2c 100644 --- a/addons/hr_holidays/i18n/pt_BR.po +++ b/addons/hr_holidays/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ro.po b/addons/hr_holidays/i18n/ro.po index ee212f32c9b..0e4e35a44a7 100644 --- a/addons/hr_holidays/i18n/ro.po +++ b/addons/hr_holidays/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/ru.po b/addons/hr_holidays/i18n/ru.po index 43dae808e98..7eee1742efa 100644 --- a/addons/hr_holidays/i18n/ru.po +++ b/addons/hr_holidays/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sl.po b/addons/hr_holidays/i18n/sl.po index f59f342887d..54a1dd40011 100644 --- a/addons/hr_holidays/i18n/sl.po +++ b/addons/hr_holidays/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sq.po b/addons/hr_holidays/i18n/sq.po index 7e58932327c..2a3cbc2a1b5 100644 --- a/addons/hr_holidays/i18n/sq.po +++ b/addons/hr_holidays/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:44+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sr.po b/addons/hr_holidays/i18n/sr.po index 45d51e4d8e5..15c70997c3e 100644 --- a/addons/hr_holidays/i18n/sr.po +++ b/addons/hr_holidays/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sr@latin.po b/addons/hr_holidays/i18n/sr@latin.po index 2e5421accc1..ccf2d5a1a90 100644 --- a/addons/hr_holidays/i18n/sr@latin.po +++ b/addons/hr_holidays/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/sv.po b/addons/hr_holidays/i18n/sv.po index 7ca231c16a0..6fa6bc50814 100644 --- a/addons/hr_holidays/i18n/sv.po +++ b/addons/hr_holidays/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/th.po b/addons/hr_holidays/i18n/th.po index 0827e8e0757..aa8b25452c9 100644 --- a/addons/hr_holidays/i18n/th.po +++ b/addons/hr_holidays/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/tlh.po b/addons/hr_holidays/i18n/tlh.po index 257e7d2b4e8..eefc12e4221 100644 --- a/addons/hr_holidays/i18n/tlh.po +++ b/addons/hr_holidays/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/tr.po b/addons/hr_holidays/i18n/tr.po index b1dbdff5bb6..9cbde0eee79 100644 --- a/addons/hr_holidays/i18n/tr.po +++ b/addons/hr_holidays/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/uk.po b/addons/hr_holidays/i18n/uk.po index 0d2fb92bd55..275b07a5af8 100644 --- a/addons/hr_holidays/i18n/uk.po +++ b/addons/hr_holidays/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/vi.po b/addons/hr_holidays/i18n/vi.po index b21fda3882c..de94d33801e 100644 --- a/addons/hr_holidays/i18n/vi.po +++ b/addons/hr_holidays/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/zh_CN.po b/addons/hr_holidays/i18n/zh_CN.po index b48a5ccc797..a99086ca6ee 100644 --- a/addons/hr_holidays/i18n/zh_CN.po +++ b/addons/hr_holidays/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_holidays/i18n/zh_TW.po b/addons/hr_holidays/i18n/zh_TW.po index c1f20637cbf..2b200b616d5 100644 --- a/addons/hr_holidays/i18n/zh_TW.po +++ b/addons/hr_holidays/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_payroll/i18n/ar.po b/addons/hr_payroll/i18n/ar.po index 46411399095..058f6502cb8 100644 --- a/addons/hr_payroll/i18n/ar.po +++ b/addons/hr_payroll/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/bg.po b/addons/hr_payroll/i18n/bg.po index 3acc631d965..0c44b43736e 100644 --- a/addons/hr_payroll/i18n/bg.po +++ b/addons/hr_payroll/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ca.po b/addons/hr_payroll/i18n/ca.po index cf21b083793..fb58bcc0482 100644 --- a/addons/hr_payroll/i18n/ca.po +++ b/addons/hr_payroll/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/cs.po b/addons/hr_payroll/i18n/cs.po index d7c778f79e2..216e6a777d1 100644 --- a/addons/hr_payroll/i18n/cs.po +++ b/addons/hr_payroll/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/da.po b/addons/hr_payroll/i18n/da.po index 3873516c67e..80b324838ac 100644 --- a/addons/hr_payroll/i18n/da.po +++ b/addons/hr_payroll/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/de.po b/addons/hr_payroll/i18n/de.po index 700150aa706..379cc41e936 100644 --- a/addons/hr_payroll/i18n/de.po +++ b/addons/hr_payroll/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/en_GB.po b/addons/hr_payroll/i18n/en_GB.po index 1db30db3c41..f713ec87303 100644 --- a/addons/hr_payroll/i18n/en_GB.po +++ b/addons/hr_payroll/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es.po b/addons/hr_payroll/i18n/es.po index 02771ba9e61..3def23439f2 100644 --- a/addons/hr_payroll/i18n/es.po +++ b/addons/hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_CR.po b/addons/hr_payroll/i18n/es_CR.po index 4292d2a8f90..845ac6f5c6d 100644 --- a/addons/hr_payroll/i18n/es_CR.po +++ b/addons/hr_payroll/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_EC.po b/addons/hr_payroll/i18n/es_EC.po index 9781db44982..03732177288 100644 --- a/addons/hr_payroll/i18n/es_EC.po +++ b/addons/hr_payroll/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/es_MX.po b/addons/hr_payroll/i18n/es_MX.po index 294a2c50e6c..4decdbd6cad 100644 --- a/addons/hr_payroll/i18n/es_MX.po +++ b/addons/hr_payroll/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/et.po b/addons/hr_payroll/i18n/et.po index bdc0f5ab132..00aedc05477 100644 --- a/addons/hr_payroll/i18n/et.po +++ b/addons/hr_payroll/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/fi.po b/addons/hr_payroll/i18n/fi.po index c7ada4d1dd1..f05ced31fbb 100644 --- a/addons/hr_payroll/i18n/fi.po +++ b/addons/hr_payroll/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/fr.po b/addons/hr_payroll/i18n/fr.po index 8e53490bfc0..e94520c174a 100644 --- a/addons/hr_payroll/i18n/fr.po +++ b/addons/hr_payroll/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/gl.po b/addons/hr_payroll/i18n/gl.po index 29331f5e51d..b0a214b123b 100644 --- a/addons/hr_payroll/i18n/gl.po +++ b/addons/hr_payroll/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/gu.po b/addons/hr_payroll/i18n/gu.po index 70f9ddeb9e2..4b8bd7e8bfe 100644 --- a/addons/hr_payroll/i18n/gu.po +++ b/addons/hr_payroll/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/he.po b/addons/hr_payroll/i18n/he.po index ed4631b2585..cfac8511d18 100644 --- a/addons/hr_payroll/i18n/he.po +++ b/addons/hr_payroll/i18n/he.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/hr.po b/addons/hr_payroll/i18n/hr.po index 38a8714f73a..41811fc5350 100644 --- a/addons/hr_payroll/i18n/hr.po +++ b/addons/hr_payroll/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/hu.po b/addons/hr_payroll/i18n/hu.po index f2a287222eb..be506f7cf61 100644 --- a/addons/hr_payroll/i18n/hu.po +++ b/addons/hr_payroll/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/id.po b/addons/hr_payroll/i18n/id.po index 4ba500f91a7..f0f42afc74c 100644 --- a/addons/hr_payroll/i18n/id.po +++ b/addons/hr_payroll/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/it.po b/addons/hr_payroll/i18n/it.po index 4213c67046c..89daaa51c07 100644 --- a/addons/hr_payroll/i18n/it.po +++ b/addons/hr_payroll/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ja.po b/addons/hr_payroll/i18n/ja.po index a9761dc5a43..a3b4a8f93ce 100644 --- a/addons/hr_payroll/i18n/ja.po +++ b/addons/hr_payroll/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lo.po b/addons/hr_payroll/i18n/lo.po index 7e622687e29..9143b8ecc9a 100644 --- a/addons/hr_payroll/i18n/lo.po +++ b/addons/hr_payroll/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lt.po b/addons/hr_payroll/i18n/lt.po index 550aefe32fb..0b556efab52 100644 --- a/addons/hr_payroll/i18n/lt.po +++ b/addons/hr_payroll/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/lv.po b/addons/hr_payroll/i18n/lv.po index 08730a53f01..622361f4689 100644 --- a/addons/hr_payroll/i18n/lv.po +++ b/addons/hr_payroll/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/mk.po b/addons/hr_payroll/i18n/mk.po index bb26aeb7809..8da7c98fd5a 100644 --- a/addons/hr_payroll/i18n/mk.po +++ b/addons/hr_payroll/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/mn.po b/addons/hr_payroll/i18n/mn.po index ea2869a2c0e..21297d33b17 100644 --- a/addons/hr_payroll/i18n/mn.po +++ b/addons/hr_payroll/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/nb.po b/addons/hr_payroll/i18n/nb.po index 59a2dc28fe3..6dc2f542464 100644 --- a/addons/hr_payroll/i18n/nb.po +++ b/addons/hr_payroll/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/nl.po b/addons/hr_payroll/i18n/nl.po index 613c49f2135..9ecf0b70555 100644 --- a/addons/hr_payroll/i18n/nl.po +++ b/addons/hr_payroll/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:41+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pl.po b/addons/hr_payroll/i18n/pl.po index 5ef99bc5b4d..762054df2c6 100644 --- a/addons/hr_payroll/i18n/pl.po +++ b/addons/hr_payroll/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pt.po b/addons/hr_payroll/i18n/pt.po index dc3240b8cd5..630a56f2a44 100644 --- a/addons/hr_payroll/i18n/pt.po +++ b/addons/hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/pt_BR.po b/addons/hr_payroll/i18n/pt_BR.po index a11d92e7022..ba917c427e4 100644 --- a/addons/hr_payroll/i18n/pt_BR.po +++ b/addons/hr_payroll/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ro.po b/addons/hr_payroll/i18n/ro.po index c5cc7a3f97d..23b4ec962dc 100644 --- a/addons/hr_payroll/i18n/ro.po +++ b/addons/hr_payroll/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/ru.po b/addons/hr_payroll/i18n/ru.po index 10f8c3e8e75..e274a5aabe1 100644 --- a/addons/hr_payroll/i18n/ru.po +++ b/addons/hr_payroll/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sl.po b/addons/hr_payroll/i18n/sl.po index 023ed2a38cd..a63b1abe1ff 100644 --- a/addons/hr_payroll/i18n/sl.po +++ b/addons/hr_payroll/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sr.po b/addons/hr_payroll/i18n/sr.po index 04f30fca1b3..0c941fafcda 100644 --- a/addons/hr_payroll/i18n/sr.po +++ b/addons/hr_payroll/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sr@latin.po b/addons/hr_payroll/i18n/sr@latin.po index 2175c1dddfc..ff23f24b9b6 100644 --- a/addons/hr_payroll/i18n/sr@latin.po +++ b/addons/hr_payroll/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/sv.po b/addons/hr_payroll/i18n/sv.po index 1dd0a0eb104..8cadf7db620 100644 --- a/addons/hr_payroll/i18n/sv.po +++ b/addons/hr_payroll/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/tr.po b/addons/hr_payroll/i18n/tr.po index bae81cb1e42..91462efb47b 100644 --- a/addons/hr_payroll/i18n/tr.po +++ b/addons/hr_payroll/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/vi.po b/addons/hr_payroll/i18n/vi.po index e4c5655fe6f..81cc79848aa 100644 --- a/addons/hr_payroll/i18n/vi.po +++ b/addons/hr_payroll/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll/i18n/zh_CN.po b/addons/hr_payroll/i18n/zh_CN.po index 2683cdca0ee..f13de8789e7 100644 --- a/addons/hr_payroll/i18n/zh_CN.po +++ b/addons/hr_payroll/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 diff --git a/addons/hr_payroll_account/i18n/ar.po b/addons/hr_payroll_account/i18n/ar.po index 7536f988987..4055015368c 100644 --- a/addons/hr_payroll_account/i18n/ar.po +++ b/addons/hr_payroll_account/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/bg.po b/addons/hr_payroll_account/i18n/bg.po index 33db0afbb59..62383ea9d98 100644 --- a/addons/hr_payroll_account/i18n/bg.po +++ b/addons/hr_payroll_account/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ca.po b/addons/hr_payroll_account/i18n/ca.po index 50f6e70726c..30f3c7a5daf 100644 --- a/addons/hr_payroll_account/i18n/ca.po +++ b/addons/hr_payroll_account/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/da.po b/addons/hr_payroll_account/i18n/da.po index 3448aaa9c34..dbb62b81c64 100644 --- a/addons/hr_payroll_account/i18n/da.po +++ b/addons/hr_payroll_account/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/de.po b/addons/hr_payroll_account/i18n/de.po index 8af66cb6297..37a33d90391 100644 --- a/addons/hr_payroll_account/i18n/de.po +++ b/addons/hr_payroll_account/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/en_GB.po b/addons/hr_payroll_account/i18n/en_GB.po index 227e3c8f703..5558c6c2f43 100644 --- a/addons/hr_payroll_account/i18n/en_GB.po +++ b/addons/hr_payroll_account/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es.po b/addons/hr_payroll_account/i18n/es.po index 204cb5e7e39..2c4dce454e3 100644 --- a/addons/hr_payroll_account/i18n/es.po +++ b/addons/hr_payroll_account/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_CR.po b/addons/hr_payroll_account/i18n/es_CR.po index cab641dc784..102fbc8a495 100644 --- a/addons/hr_payroll_account/i18n/es_CR.po +++ b/addons/hr_payroll_account/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_EC.po b/addons/hr_payroll_account/i18n/es_EC.po index 64361eebbde..e0ac950522b 100644 --- a/addons/hr_payroll_account/i18n/es_EC.po +++ b/addons/hr_payroll_account/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/es_PY.po b/addons/hr_payroll_account/i18n/es_PY.po index 7b3ba3065e5..207d2d20c70 100644 --- a/addons/hr_payroll_account/i18n/es_PY.po +++ b/addons/hr_payroll_account/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/fr.po b/addons/hr_payroll_account/i18n/fr.po index 48a84410744..2ffe68a6ac2 100644 --- a/addons/hr_payroll_account/i18n/fr.po +++ b/addons/hr_payroll_account/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/gl.po b/addons/hr_payroll_account/i18n/gl.po index dc32fbf53f3..f0fa11d5579 100644 --- a/addons/hr_payroll_account/i18n/gl.po +++ b/addons/hr_payroll_account/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/gu.po b/addons/hr_payroll_account/i18n/gu.po index ed1ac5d68f1..61be9ce1e49 100644 --- a/addons/hr_payroll_account/i18n/gu.po +++ b/addons/hr_payroll_account/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/hr.po b/addons/hr_payroll_account/i18n/hr.po index f93052a5dc6..50c8105b2df 100644 --- a/addons/hr_payroll_account/i18n/hr.po +++ b/addons/hr_payroll_account/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/hu.po b/addons/hr_payroll_account/i18n/hu.po index 1aed92a7e5b..1886f3e2986 100644 --- a/addons/hr_payroll_account/i18n/hu.po +++ b/addons/hr_payroll_account/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/id.po b/addons/hr_payroll_account/i18n/id.po index 3acf89a59fa..45f7d2dd2a6 100644 --- a/addons/hr_payroll_account/i18n/id.po +++ b/addons/hr_payroll_account/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/it.po b/addons/hr_payroll_account/i18n/it.po index 4a2c6ce4701..0d6faa301df 100644 --- a/addons/hr_payroll_account/i18n/it.po +++ b/addons/hr_payroll_account/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ja.po b/addons/hr_payroll_account/i18n/ja.po index 3c85baf7a63..4c636741c76 100644 --- a/addons/hr_payroll_account/i18n/ja.po +++ b/addons/hr_payroll_account/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/lv.po b/addons/hr_payroll_account/i18n/lv.po index 96318df1b67..a4dd1b83ab6 100644 --- a/addons/hr_payroll_account/i18n/lv.po +++ b/addons/hr_payroll_account/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/mk.po b/addons/hr_payroll_account/i18n/mk.po index d1e49075150..cb02f812608 100644 --- a/addons/hr_payroll_account/i18n/mk.po +++ b/addons/hr_payroll_account/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/mn.po b/addons/hr_payroll_account/i18n/mn.po index 6ee47bbc6ae..737b8494ad4 100644 --- a/addons/hr_payroll_account/i18n/mn.po +++ b/addons/hr_payroll_account/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/nb.po b/addons/hr_payroll_account/i18n/nb.po index f2f5ff4830f..1027532567e 100644 --- a/addons/hr_payroll_account/i18n/nb.po +++ b/addons/hr_payroll_account/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/nl.po b/addons/hr_payroll_account/i18n/nl.po index fc7999cbc3b..a21babe9fb8 100644 --- a/addons/hr_payroll_account/i18n/nl.po +++ b/addons/hr_payroll_account/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/pl.po b/addons/hr_payroll_account/i18n/pl.po index fac69bd08ae..f6670df3f5b 100644 --- a/addons/hr_payroll_account/i18n/pl.po +++ b/addons/hr_payroll_account/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/pt.po b/addons/hr_payroll_account/i18n/pt.po index ffc9c936750..b247750f996 100644 --- a/addons/hr_payroll_account/i18n/pt.po +++ b/addons/hr_payroll_account/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/pt_BR.po b/addons/hr_payroll_account/i18n/pt_BR.po index f558024a1d4..3e74ec7c589 100644 --- a/addons/hr_payroll_account/i18n/pt_BR.po +++ b/addons/hr_payroll_account/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ro.po b/addons/hr_payroll_account/i18n/ro.po index 649ae49aac0..4d26facae58 100644 --- a/addons/hr_payroll_account/i18n/ro.po +++ b/addons/hr_payroll_account/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/ru.po b/addons/hr_payroll_account/i18n/ru.po index 9d833a02399..0b8d8ed16b8 100644 --- a/addons/hr_payroll_account/i18n/ru.po +++ b/addons/hr_payroll_account/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/sl.po b/addons/hr_payroll_account/i18n/sl.po index caf51c364d1..228764f51a5 100644 --- a/addons/hr_payroll_account/i18n/sl.po +++ b/addons/hr_payroll_account/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/sr@latin.po b/addons/hr_payroll_account/i18n/sr@latin.po index 8dccfde50b2..4fa36e86ba6 100644 --- a/addons/hr_payroll_account/i18n/sr@latin.po +++ b/addons/hr_payroll_account/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/sv.po b/addons/hr_payroll_account/i18n/sv.po index 98af58875d0..99dfdd100de 100644 --- a/addons/hr_payroll_account/i18n/sv.po +++ b/addons/hr_payroll_account/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/tr.po b/addons/hr_payroll_account/i18n/tr.po index 04e78891dcb..d6af32acc95 100644 --- a/addons/hr_payroll_account/i18n/tr.po +++ b/addons/hr_payroll_account/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_payroll_account/i18n/zh_CN.po b/addons/hr_payroll_account/i18n/zh_CN.po index dd61fbd8143..3a95b90c5c7 100644 --- a/addons/hr_payroll_account/i18n/zh_CN.po +++ b/addons/hr_payroll_account/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 diff --git a/addons/hr_recruitment/i18n/ar.po b/addons/hr_recruitment/i18n/ar.po index a4ef3e11105..9d33b9be1c1 100644 --- a/addons/hr_recruitment/i18n/ar.po +++ b/addons/hr_recruitment/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/bg.po b/addons/hr_recruitment/i18n/bg.po index 2c0f673f33c..835eb6f7416 100644 --- a/addons/hr_recruitment/i18n/bg.po +++ b/addons/hr_recruitment/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ca.po b/addons/hr_recruitment/i18n/ca.po index d7c12b87cc3..cc5e525017b 100644 --- a/addons/hr_recruitment/i18n/ca.po +++ b/addons/hr_recruitment/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/da.po b/addons/hr_recruitment/i18n/da.po index 435a19cd1f3..55836b8a969 100644 --- a/addons/hr_recruitment/i18n/da.po +++ b/addons/hr_recruitment/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:45+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/de.po b/addons/hr_recruitment/i18n/de.po index 10d1f9474da..3668781f02a 100644 --- a/addons/hr_recruitment/i18n/de.po +++ b/addons/hr_recruitment/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/es.po b/addons/hr_recruitment/i18n/es.po index 7919353fa7d..72e0e124e94 100644 --- a/addons/hr_recruitment/i18n/es.po +++ b/addons/hr_recruitment/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/es_CR.po b/addons/hr_recruitment/i18n/es_CR.po index da526d9c1c6..104149df7b1 100644 --- a/addons/hr_recruitment/i18n/es_CR.po +++ b/addons/hr_recruitment/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/fr.po b/addons/hr_recruitment/i18n/fr.po index 4e219037c97..03b9481dca8 100644 --- a/addons/hr_recruitment/i18n/fr.po +++ b/addons/hr_recruitment/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hi.po b/addons/hr_recruitment/i18n/hi.po index 424ff0bf68e..5fd65c8aaa5 100644 --- a/addons/hr_recruitment/i18n/hi.po +++ b/addons/hr_recruitment/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hr.po b/addons/hr_recruitment/i18n/hr.po index 13ea0d1978b..e75ff3b1e62 100644 --- a/addons/hr_recruitment/i18n/hr.po +++ b/addons/hr_recruitment/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/hu.po b/addons/hr_recruitment/i18n/hu.po index caf012767a5..46b04a1731c 100644 --- a/addons/hr_recruitment/i18n/hu.po +++ b/addons/hr_recruitment/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/id.po b/addons/hr_recruitment/i18n/id.po index e5aac594f81..4f75367cf87 100644 --- a/addons/hr_recruitment/i18n/id.po +++ b/addons/hr_recruitment/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/it.po b/addons/hr_recruitment/i18n/it.po index 3fd93bd83e5..7976ee483ed 100644 --- a/addons/hr_recruitment/i18n/it.po +++ b/addons/hr_recruitment/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ja.po b/addons/hr_recruitment/i18n/ja.po index 71b2b4e1bb7..547bae89ed2 100644 --- a/addons/hr_recruitment/i18n/ja.po +++ b/addons/hr_recruitment/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/mk.po b/addons/hr_recruitment/i18n/mk.po index c64245829f4..f0e4ae7139b 100644 --- a/addons/hr_recruitment/i18n/mk.po +++ b/addons/hr_recruitment/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/mn.po b/addons/hr_recruitment/i18n/mn.po index 2e20e7525a1..2e29478d7ce 100644 --- a/addons/hr_recruitment/i18n/mn.po +++ b/addons/hr_recruitment/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/nb.po b/addons/hr_recruitment/i18n/nb.po index 1f21fbf5b42..94d7d12e744 100644 --- a/addons/hr_recruitment/i18n/nb.po +++ b/addons/hr_recruitment/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/nl.po b/addons/hr_recruitment/i18n/nl.po index 43a017f4c16..2084e5ed4ea 100644 --- a/addons/hr_recruitment/i18n/nl.po +++ b/addons/hr_recruitment/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/pl.po b/addons/hr_recruitment/i18n/pl.po index 5db824f92ad..60d1f11969a 100644 --- a/addons/hr_recruitment/i18n/pl.po +++ b/addons/hr_recruitment/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/pt.po b/addons/hr_recruitment/i18n/pt.po index f727690960f..e9f43d9552e 100644 --- a/addons/hr_recruitment/i18n/pt.po +++ b/addons/hr_recruitment/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/pt_BR.po b/addons/hr_recruitment/i18n/pt_BR.po index 5d77a2e5a15..b7a742c256c 100644 --- a/addons/hr_recruitment/i18n/pt_BR.po +++ b/addons/hr_recruitment/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ro.po b/addons/hr_recruitment/i18n/ro.po index e8b4baf362d..c29a42b68d1 100644 --- a/addons/hr_recruitment/i18n/ro.po +++ b/addons/hr_recruitment/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/ru.po b/addons/hr_recruitment/i18n/ru.po index 69cfe76821d..fe07b23c40c 100644 --- a/addons/hr_recruitment/i18n/ru.po +++ b/addons/hr_recruitment/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sl.po b/addons/hr_recruitment/i18n/sl.po index a6fdc7bc4f0..3981287e1ad 100644 --- a/addons/hr_recruitment/i18n/sl.po +++ b/addons/hr_recruitment/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sr.po b/addons/hr_recruitment/i18n/sr.po index a287316ea09..6b309edb972 100644 --- a/addons/hr_recruitment/i18n/sr.po +++ b/addons/hr_recruitment/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sr@latin.po b/addons/hr_recruitment/i18n/sr@latin.po index 488695e4389..73fd19a3b81 100644 --- a/addons/hr_recruitment/i18n/sr@latin.po +++ b/addons/hr_recruitment/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/sv.po b/addons/hr_recruitment/i18n/sv.po index 65dd72ca4d0..2ebf5c29217 100644 --- a/addons/hr_recruitment/i18n/sv.po +++ b/addons/hr_recruitment/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/tr.po b/addons/hr_recruitment/i18n/tr.po index e250ff4d801..3e972eddf21 100644 --- a/addons/hr_recruitment/i18n/tr.po +++ b/addons/hr_recruitment/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/vi.po b/addons/hr_recruitment/i18n/vi.po index afbeb950376..86e54f6b1a1 100644 --- a/addons/hr_recruitment/i18n/vi.po +++ b/addons/hr_recruitment/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/zh_CN.po b/addons/hr_recruitment/i18n/zh_CN.po index dd418f3fe63..b25b948b4bf 100644 --- a/addons/hr_recruitment/i18n/zh_CN.po +++ b/addons/hr_recruitment/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_timesheet/i18n/ar.po b/addons/hr_timesheet/i18n/ar.po index 8c54b5c90b3..42c42ee7bd5 100644 --- a/addons/hr_timesheet/i18n/ar.po +++ b/addons/hr_timesheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/bg.po b/addons/hr_timesheet/i18n/bg.po index 9f964cde3b6..8a11dc4a529 100644 --- a/addons/hr_timesheet/i18n/bg.po +++ b/addons/hr_timesheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/bs.po b/addons/hr_timesheet/i18n/bs.po index 852e60b6b64..07124024d0c 100644 --- a/addons/hr_timesheet/i18n/bs.po +++ b/addons/hr_timesheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ca.po b/addons/hr_timesheet/i18n/ca.po index 72fa5e13130..81b6ac8301d 100644 --- a/addons/hr_timesheet/i18n/ca.po +++ b/addons/hr_timesheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/cs.po b/addons/hr_timesheet/i18n/cs.po index beeca9ef13b..4ef09895f23 100644 --- a/addons/hr_timesheet/i18n/cs.po +++ b/addons/hr_timesheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/da.po b/addons/hr_timesheet/i18n/da.po index f20d1a3a473..96d50cdbfa3 100644 --- a/addons/hr_timesheet/i18n/da.po +++ b/addons/hr_timesheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/de.po b/addons/hr_timesheet/i18n/de.po index b5cd5d09740..0192345ab7a 100644 --- a/addons/hr_timesheet/i18n/de.po +++ b/addons/hr_timesheet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/el.po b/addons/hr_timesheet/i18n/el.po index 5aef49374fe..38f86fb8b77 100644 --- a/addons/hr_timesheet/i18n/el.po +++ b/addons/hr_timesheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/en_GB.po b/addons/hr_timesheet/i18n/en_GB.po index cc2cd623b31..eb3fc66cb05 100644 --- a/addons/hr_timesheet/i18n/en_GB.po +++ b/addons/hr_timesheet/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es.po b/addons/hr_timesheet/i18n/es.po index a60468de818..02e6de310f7 100644 --- a/addons/hr_timesheet/i18n/es.po +++ b/addons/hr_timesheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_AR.po b/addons/hr_timesheet/i18n/es_AR.po index d99a2fd39c6..7e9c5e5d220 100644 --- a/addons/hr_timesheet/i18n/es_AR.po +++ b/addons/hr_timesheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_CR.po b/addons/hr_timesheet/i18n/es_CR.po index 5bb6d0c6ab0..579dd25b026 100644 --- a/addons/hr_timesheet/i18n/es_CR.po +++ b/addons/hr_timesheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/es_EC.po b/addons/hr_timesheet/i18n/es_EC.po index 25cf78791ea..02b5381dc01 100644 --- a/addons/hr_timesheet/i18n/es_EC.po +++ b/addons/hr_timesheet/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/et.po b/addons/hr_timesheet/i18n/et.po index 4554a33de5d..2303c135d4f 100644 --- a/addons/hr_timesheet/i18n/et.po +++ b/addons/hr_timesheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/fi.po b/addons/hr_timesheet/i18n/fi.po index 3109aa4c7b1..10ba3713ea8 100644 --- a/addons/hr_timesheet/i18n/fi.po +++ b/addons/hr_timesheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/fr.po b/addons/hr_timesheet/i18n/fr.po index 4cd43001657..d73d8707436 100644 --- a/addons/hr_timesheet/i18n/fr.po +++ b/addons/hr_timesheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/gl.po b/addons/hr_timesheet/i18n/gl.po index 4da912483e3..4db6d08651f 100644 --- a/addons/hr_timesheet/i18n/gl.po +++ b/addons/hr_timesheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/hr.po b/addons/hr_timesheet/i18n/hr.po index dda198467b0..d2716f3dbb0 100644 --- a/addons/hr_timesheet/i18n/hr.po +++ b/addons/hr_timesheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/hu.po b/addons/hr_timesheet/i18n/hu.po index 5833e27d8e4..8bc50e4cbde 100644 --- a/addons/hr_timesheet/i18n/hu.po +++ b/addons/hr_timesheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/id.po b/addons/hr_timesheet/i18n/id.po index ef11691b021..94e294f6e74 100644 --- a/addons/hr_timesheet/i18n/id.po +++ b/addons/hr_timesheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/it.po b/addons/hr_timesheet/i18n/it.po index 05f6fd32856..14641780a3b 100644 --- a/addons/hr_timesheet/i18n/it.po +++ b/addons/hr_timesheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ja.po b/addons/hr_timesheet/i18n/ja.po index 8c6a20b1463..1f9a75ad003 100644 --- a/addons/hr_timesheet/i18n/ja.po +++ b/addons/hr_timesheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ko.po b/addons/hr_timesheet/i18n/ko.po index 9f81aaa2dd4..96a47591304 100644 --- a/addons/hr_timesheet/i18n/ko.po +++ b/addons/hr_timesheet/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/lt.po b/addons/hr_timesheet/i18n/lt.po index 2d25124ca59..76ffec15fa6 100644 --- a/addons/hr_timesheet/i18n/lt.po +++ b/addons/hr_timesheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/lv.po b/addons/hr_timesheet/i18n/lv.po index 449d0277a62..4bfac60f932 100644 --- a/addons/hr_timesheet/i18n/lv.po +++ b/addons/hr_timesheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/mk.po b/addons/hr_timesheet/i18n/mk.po index a508ce4807b..bbac7c72f6b 100644 --- a/addons/hr_timesheet/i18n/mk.po +++ b/addons/hr_timesheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/mn.po b/addons/hr_timesheet/i18n/mn.po index 04f053d34d9..bcd175dad00 100644 --- a/addons/hr_timesheet/i18n/mn.po +++ b/addons/hr_timesheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/nb.po b/addons/hr_timesheet/i18n/nb.po index d6e050c5e9c..0c267648ec5 100644 --- a/addons/hr_timesheet/i18n/nb.po +++ b/addons/hr_timesheet/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/nl.po b/addons/hr_timesheet/i18n/nl.po index d1f63326171..2a85bee00b8 100644 --- a/addons/hr_timesheet/i18n/nl.po +++ b/addons/hr_timesheet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pl.po b/addons/hr_timesheet/i18n/pl.po index 5d06bd34326..9979fe5144a 100644 --- a/addons/hr_timesheet/i18n/pl.po +++ b/addons/hr_timesheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pt.po b/addons/hr_timesheet/i18n/pt.po index 1df3c0d7406..01557446703 100644 --- a/addons/hr_timesheet/i18n/pt.po +++ b/addons/hr_timesheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/pt_BR.po b/addons/hr_timesheet/i18n/pt_BR.po index 373ee8e17bf..15deb4d9c0e 100644 --- a/addons/hr_timesheet/i18n/pt_BR.po +++ b/addons/hr_timesheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ro.po b/addons/hr_timesheet/i18n/ro.po index 3d4903f036b..58d73d57203 100644 --- a/addons/hr_timesheet/i18n/ro.po +++ b/addons/hr_timesheet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/ru.po b/addons/hr_timesheet/i18n/ru.po index 89305780bd1..5bdf130e36e 100644 --- a/addons/hr_timesheet/i18n/ru.po +++ b/addons/hr_timesheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sl.po b/addons/hr_timesheet/i18n/sl.po index 6079b84f61d..87a94849cd7 100644 --- a/addons/hr_timesheet/i18n/sl.po +++ b/addons/hr_timesheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sq.po b/addons/hr_timesheet/i18n/sq.po index 8c738267baa..68759ebe641 100644 --- a/addons/hr_timesheet/i18n/sq.po +++ b/addons/hr_timesheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sr@latin.po b/addons/hr_timesheet/i18n/sr@latin.po index ae61e9f835c..55389b733af 100644 --- a/addons/hr_timesheet/i18n/sr@latin.po +++ b/addons/hr_timesheet/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/sv.po b/addons/hr_timesheet/i18n/sv.po index bcc918201b5..41cdedf6974 100644 --- a/addons/hr_timesheet/i18n/sv.po +++ b/addons/hr_timesheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/tlh.po b/addons/hr_timesheet/i18n/tlh.po index 4e9dc38deb7..c845e321faf 100644 --- a/addons/hr_timesheet/i18n/tlh.po +++ b/addons/hr_timesheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/tr.po b/addons/hr_timesheet/i18n/tr.po index 274664e9331..526242f0f32 100644 --- a/addons/hr_timesheet/i18n/tr.po +++ b/addons/hr_timesheet/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/uk.po b/addons/hr_timesheet/i18n/uk.po index d2bf5443b80..278b3659c46 100644 --- a/addons/hr_timesheet/i18n/uk.po +++ b/addons/hr_timesheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/vi.po b/addons/hr_timesheet/i18n/vi.po index 357a1c4eee3..3e11a94edaf 100644 --- a/addons/hr_timesheet/i18n/vi.po +++ b/addons/hr_timesheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:42+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/zh_CN.po b/addons/hr_timesheet/i18n/zh_CN.po index 48fd6ad2cbf..d8e4f7ca34f 100644 --- a/addons/hr_timesheet/i18n/zh_CN.po +++ b/addons/hr_timesheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet/i18n/zh_TW.po b/addons/hr_timesheet/i18n/zh_TW.po index 5c11eb2ed30..5d322cbeb4a 100644 --- a/addons/hr_timesheet/i18n/zh_TW.po +++ b/addons/hr_timesheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue diff --git a/addons/hr_timesheet_invoice/i18n/ar.po b/addons/hr_timesheet_invoice/i18n/ar.po index 9ece57e8cbf..82f388ce5ee 100644 --- a/addons/hr_timesheet_invoice/i18n/ar.po +++ b/addons/hr_timesheet_invoice/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/bg.po b/addons/hr_timesheet_invoice/i18n/bg.po index a97d6e2c56d..51ab49103e7 100644 --- a/addons/hr_timesheet_invoice/i18n/bg.po +++ b/addons/hr_timesheet_invoice/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/bs.po b/addons/hr_timesheet_invoice/i18n/bs.po index 210271f584b..d1d5ec10f65 100644 --- a/addons/hr_timesheet_invoice/i18n/bs.po +++ b/addons/hr_timesheet_invoice/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ca.po b/addons/hr_timesheet_invoice/i18n/ca.po index 05824cdcb96..4e6f4f68f4d 100644 --- a/addons/hr_timesheet_invoice/i18n/ca.po +++ b/addons/hr_timesheet_invoice/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/cs.po b/addons/hr_timesheet_invoice/i18n/cs.po index fa08f34918c..1572fca83a9 100644 --- a/addons/hr_timesheet_invoice/i18n/cs.po +++ b/addons/hr_timesheet_invoice/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/da.po b/addons/hr_timesheet_invoice/i18n/da.po index 023bf04f6f7..88af22731a4 100644 --- a/addons/hr_timesheet_invoice/i18n/da.po +++ b/addons/hr_timesheet_invoice/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/de.po b/addons/hr_timesheet_invoice/i18n/de.po index 7ad7a9a9ef6..6ff12aef5ae 100644 --- a/addons/hr_timesheet_invoice/i18n/de.po +++ b/addons/hr_timesheet_invoice/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/el.po b/addons/hr_timesheet_invoice/i18n/el.po index 02a364b5faa..590c207e267 100644 --- a/addons/hr_timesheet_invoice/i18n/el.po +++ b/addons/hr_timesheet_invoice/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es.po b/addons/hr_timesheet_invoice/i18n/es.po index 7c027219d8c..b0dbb9f692b 100644 --- a/addons/hr_timesheet_invoice/i18n/es.po +++ b/addons/hr_timesheet_invoice/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_AR.po b/addons/hr_timesheet_invoice/i18n/es_AR.po index c702d3b5802..c1a82132ae9 100644 --- a/addons/hr_timesheet_invoice/i18n/es_AR.po +++ b/addons/hr_timesheet_invoice/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_CR.po b/addons/hr_timesheet_invoice/i18n/es_CR.po index d8dcf0e55d8..9173f02f744 100644 --- a/addons/hr_timesheet_invoice/i18n/es_CR.po +++ b/addons/hr_timesheet_invoice/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/es_EC.po b/addons/hr_timesheet_invoice/i18n/es_EC.po index 18575935185..d92dd8a8638 100644 --- a/addons/hr_timesheet_invoice/i18n/es_EC.po +++ b/addons/hr_timesheet_invoice/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/et.po b/addons/hr_timesheet_invoice/i18n/et.po index f46732b652a..956c278585d 100644 --- a/addons/hr_timesheet_invoice/i18n/et.po +++ b/addons/hr_timesheet_invoice/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/fi.po b/addons/hr_timesheet_invoice/i18n/fi.po index 2d4008d33c1..980315ccdd2 100644 --- a/addons/hr_timesheet_invoice/i18n/fi.po +++ b/addons/hr_timesheet_invoice/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/fr.po b/addons/hr_timesheet_invoice/i18n/fr.po index cabae6c23dd..4f3c15e1397 100644 --- a/addons/hr_timesheet_invoice/i18n/fr.po +++ b/addons/hr_timesheet_invoice/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/hr.po b/addons/hr_timesheet_invoice/i18n/hr.po index d78e7b8392c..f41e5c6c79f 100644 --- a/addons/hr_timesheet_invoice/i18n/hr.po +++ b/addons/hr_timesheet_invoice/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/hu.po b/addons/hr_timesheet_invoice/i18n/hu.po index dafc3fec8ba..65f3ef285e8 100644 --- a/addons/hr_timesheet_invoice/i18n/hu.po +++ b/addons/hr_timesheet_invoice/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/id.po b/addons/hr_timesheet_invoice/i18n/id.po index c431a474b55..c90cf341905 100644 --- a/addons/hr_timesheet_invoice/i18n/id.po +++ b/addons/hr_timesheet_invoice/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/it.po b/addons/hr_timesheet_invoice/i18n/it.po index 0985b2f6c34..c39c7233658 100644 --- a/addons/hr_timesheet_invoice/i18n/it.po +++ b/addons/hr_timesheet_invoice/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ja.po b/addons/hr_timesheet_invoice/i18n/ja.po index c5f0705b2ef..55c0e16e2a7 100644 --- a/addons/hr_timesheet_invoice/i18n/ja.po +++ b/addons/hr_timesheet_invoice/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ko.po b/addons/hr_timesheet_invoice/i18n/ko.po index 59a45c67114..81166916341 100644 --- a/addons/hr_timesheet_invoice/i18n/ko.po +++ b/addons/hr_timesheet_invoice/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/lt.po b/addons/hr_timesheet_invoice/i18n/lt.po index 41a979b7f23..8cc010ab0e5 100644 --- a/addons/hr_timesheet_invoice/i18n/lt.po +++ b/addons/hr_timesheet_invoice/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/lv.po b/addons/hr_timesheet_invoice/i18n/lv.po index 76448f17c91..7c7bbec4495 100644 --- a/addons/hr_timesheet_invoice/i18n/lv.po +++ b/addons/hr_timesheet_invoice/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/mk.po b/addons/hr_timesheet_invoice/i18n/mk.po index 5ca71154723..42c24fe67f9 100644 --- a/addons/hr_timesheet_invoice/i18n/mk.po +++ b/addons/hr_timesheet_invoice/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/mn.po b/addons/hr_timesheet_invoice/i18n/mn.po index 175b08d4a80..7885387b962 100644 --- a/addons/hr_timesheet_invoice/i18n/mn.po +++ b/addons/hr_timesheet_invoice/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-24 05:11+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/nl.po b/addons/hr_timesheet_invoice/i18n/nl.po index 66b63fc860d..ffb1ac67fe5 100644 --- a/addons/hr_timesheet_invoice/i18n/nl.po +++ b/addons/hr_timesheet_invoice/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/nl_BE.po b/addons/hr_timesheet_invoice/i18n/nl_BE.po index 567b8b83697..c665990e62a 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_BE.po +++ b/addons/hr_timesheet_invoice/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pl.po b/addons/hr_timesheet_invoice/i18n/pl.po index 9edbcccb718..d82a2775a14 100644 --- a/addons/hr_timesheet_invoice/i18n/pl.po +++ b/addons/hr_timesheet_invoice/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pt.po b/addons/hr_timesheet_invoice/i18n/pt.po index cf588f1606e..820efec20d2 100644 --- a/addons/hr_timesheet_invoice/i18n/pt.po +++ b/addons/hr_timesheet_invoice/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/pt_BR.po b/addons/hr_timesheet_invoice/i18n/pt_BR.po index 4da61c1cf4e..ec2ca2b0d4d 100644 --- a/addons/hr_timesheet_invoice/i18n/pt_BR.po +++ b/addons/hr_timesheet_invoice/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ro.po b/addons/hr_timesheet_invoice/i18n/ro.po index aa9d7c89841..78936b3e819 100644 --- a/addons/hr_timesheet_invoice/i18n/ro.po +++ b/addons/hr_timesheet_invoice/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/ru.po b/addons/hr_timesheet_invoice/i18n/ru.po index 51aef80bb1f..edc68beeafc 100644 --- a/addons/hr_timesheet_invoice/i18n/ru.po +++ b/addons/hr_timesheet_invoice/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sl.po b/addons/hr_timesheet_invoice/i18n/sl.po index c24621b2782..2d16bfba9a2 100644 --- a/addons/hr_timesheet_invoice/i18n/sl.po +++ b/addons/hr_timesheet_invoice/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sq.po b/addons/hr_timesheet_invoice/i18n/sq.po index 6bf49becde6..bd62501f8b8 100644 --- a/addons/hr_timesheet_invoice/i18n/sq.po +++ b/addons/hr_timesheet_invoice/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sr@latin.po b/addons/hr_timesheet_invoice/i18n/sr@latin.po index 831f72284db..982a0149531 100644 --- a/addons/hr_timesheet_invoice/i18n/sr@latin.po +++ b/addons/hr_timesheet_invoice/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/sv.po b/addons/hr_timesheet_invoice/i18n/sv.po index bbe64cb343e..2dfee7440c8 100644 --- a/addons/hr_timesheet_invoice/i18n/sv.po +++ b/addons/hr_timesheet_invoice/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/tlh.po b/addons/hr_timesheet_invoice/i18n/tlh.po index 7aabeb6d857..38dfb7e46e1 100644 --- a/addons/hr_timesheet_invoice/i18n/tlh.po +++ b/addons/hr_timesheet_invoice/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/tr.po b/addons/hr_timesheet_invoice/i18n/tr.po index 5e2eb334cf6..b4be88bd95d 100644 --- a/addons/hr_timesheet_invoice/i18n/tr.po +++ b/addons/hr_timesheet_invoice/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/uk.po b/addons/hr_timesheet_invoice/i18n/uk.po index 49b154324ca..36b1dc862dd 100644 --- a/addons/hr_timesheet_invoice/i18n/uk.po +++ b/addons/hr_timesheet_invoice/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/vi.po b/addons/hr_timesheet_invoice/i18n/vi.po index f78f730de1f..17ecc2d1cc2 100644 --- a/addons/hr_timesheet_invoice/i18n/vi.po +++ b/addons/hr_timesheet_invoice/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:46+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/zh_CN.po b/addons/hr_timesheet_invoice/i18n/zh_CN.po index 9ea7078602f..031038e77c1 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_CN.po +++ b/addons/hr_timesheet_invoice/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_invoice/i18n/zh_TW.po b/addons/hr_timesheet_invoice/i18n/zh_TW.po index 90f8987e796..e4f72755162 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_TW.po +++ b/addons/hr_timesheet_invoice/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 diff --git a/addons/hr_timesheet_sheet/i18n/ar.po b/addons/hr_timesheet_sheet/i18n/ar.po index 16caf0da3be..fd68cd57cfb 100644 --- a/addons/hr_timesheet_sheet/i18n/ar.po +++ b/addons/hr_timesheet_sheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/bg.po b/addons/hr_timesheet_sheet/i18n/bg.po index 964e11add24..b9882fc5231 100644 --- a/addons/hr_timesheet_sheet/i18n/bg.po +++ b/addons/hr_timesheet_sheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/bs.po b/addons/hr_timesheet_sheet/i18n/bs.po index 5315d72b2cd..82dbba48fca 100644 --- a/addons/hr_timesheet_sheet/i18n/bs.po +++ b/addons/hr_timesheet_sheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ca.po b/addons/hr_timesheet_sheet/i18n/ca.po index f3ef3cb7c1e..8920fb5bfa4 100644 --- a/addons/hr_timesheet_sheet/i18n/ca.po +++ b/addons/hr_timesheet_sheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/cs.po b/addons/hr_timesheet_sheet/i18n/cs.po index 7ee0796c7b4..39595a398aa 100644 --- a/addons/hr_timesheet_sheet/i18n/cs.po +++ b/addons/hr_timesheet_sheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/da.po b/addons/hr_timesheet_sheet/i18n/da.po index 6f0bf278709..aee278ca59b 100644 --- a/addons/hr_timesheet_sheet/i18n/da.po +++ b/addons/hr_timesheet_sheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/de.po b/addons/hr_timesheet_sheet/i18n/de.po index ac6f77bacd5..9a242297938 100644 --- a/addons/hr_timesheet_sheet/i18n/de.po +++ b/addons/hr_timesheet_sheet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/el.po b/addons/hr_timesheet_sheet/i18n/el.po index 387f0334371..20e810e59a2 100644 --- a/addons/hr_timesheet_sheet/i18n/el.po +++ b/addons/hr_timesheet_sheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es.po b/addons/hr_timesheet_sheet/i18n/es.po index 538a57437aa..4290f13b987 100644 --- a/addons/hr_timesheet_sheet/i18n/es.po +++ b/addons/hr_timesheet_sheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_AR.po b/addons/hr_timesheet_sheet/i18n/es_AR.po index 0afe82be37d..353ad1538dd 100644 --- a/addons/hr_timesheet_sheet/i18n/es_AR.po +++ b/addons/hr_timesheet_sheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_CR.po b/addons/hr_timesheet_sheet/i18n/es_CR.po index 726531c4e0a..597fd24c247 100644 --- a/addons/hr_timesheet_sheet/i18n/es_CR.po +++ b/addons/hr_timesheet_sheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/es_EC.po b/addons/hr_timesheet_sheet/i18n/es_EC.po index 64700f62bbc..7e1c0ef47a6 100644 --- a/addons/hr_timesheet_sheet/i18n/es_EC.po +++ b/addons/hr_timesheet_sheet/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/et.po b/addons/hr_timesheet_sheet/i18n/et.po index 4a04db183dc..e594fb15c18 100644 --- a/addons/hr_timesheet_sheet/i18n/et.po +++ b/addons/hr_timesheet_sheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/fi.po b/addons/hr_timesheet_sheet/i18n/fi.po index dcf684e50b5..9aaceca374e 100644 --- a/addons/hr_timesheet_sheet/i18n/fi.po +++ b/addons/hr_timesheet_sheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/fr.po b/addons/hr_timesheet_sheet/i18n/fr.po index 428ee174bed..79671aa9a90 100644 --- a/addons/hr_timesheet_sheet/i18n/fr.po +++ b/addons/hr_timesheet_sheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/hr.po b/addons/hr_timesheet_sheet/i18n/hr.po index f428d9f48fd..55a0fee157b 100644 --- a/addons/hr_timesheet_sheet/i18n/hr.po +++ b/addons/hr_timesheet_sheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/hu.po b/addons/hr_timesheet_sheet/i18n/hu.po index 8ae8f628ad8..3f6b04cb40c 100644 --- a/addons/hr_timesheet_sheet/i18n/hu.po +++ b/addons/hr_timesheet_sheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/id.po b/addons/hr_timesheet_sheet/i18n/id.po index 4047d586c8f..8b5915d68b4 100644 --- a/addons/hr_timesheet_sheet/i18n/id.po +++ b/addons/hr_timesheet_sheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/it.po b/addons/hr_timesheet_sheet/i18n/it.po index a5e74a1e6f3..b0f4e0c2b30 100644 --- a/addons/hr_timesheet_sheet/i18n/it.po +++ b/addons/hr_timesheet_sheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ja.po b/addons/hr_timesheet_sheet/i18n/ja.po index 16d29eee5ca..99dc1ded7fe 100644 --- a/addons/hr_timesheet_sheet/i18n/ja.po +++ b/addons/hr_timesheet_sheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ko.po b/addons/hr_timesheet_sheet/i18n/ko.po index 9518cd2d446..ca8526d7032 100644 --- a/addons/hr_timesheet_sheet/i18n/ko.po +++ b/addons/hr_timesheet_sheet/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/lt.po b/addons/hr_timesheet_sheet/i18n/lt.po index 44888efe158..a9aca741c8b 100644 --- a/addons/hr_timesheet_sheet/i18n/lt.po +++ b/addons/hr_timesheet_sheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/lv.po b/addons/hr_timesheet_sheet/i18n/lv.po index eba831f7942..7c3fe52c9f6 100644 --- a/addons/hr_timesheet_sheet/i18n/lv.po +++ b/addons/hr_timesheet_sheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/mk.po b/addons/hr_timesheet_sheet/i18n/mk.po index 3c7f08cf52b..f1f69e75bfd 100644 --- a/addons/hr_timesheet_sheet/i18n/mk.po +++ b/addons/hr_timesheet_sheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/mn.po b/addons/hr_timesheet_sheet/i18n/mn.po index c904d9fccd8..58767be37bf 100644 --- a/addons/hr_timesheet_sheet/i18n/mn.po +++ b/addons/hr_timesheet_sheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/nl.po b/addons/hr_timesheet_sheet/i18n/nl.po index 155a8ada5bf..e83a8a32dc1 100644 --- a/addons/hr_timesheet_sheet/i18n/nl.po +++ b/addons/hr_timesheet_sheet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/nl_BE.po b/addons/hr_timesheet_sheet/i18n/nl_BE.po index 8bf969a8b19..4f39a15b61f 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_BE.po +++ b/addons/hr_timesheet_sheet/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pl.po b/addons/hr_timesheet_sheet/i18n/pl.po index 71e375444b1..3808972d0da 100644 --- a/addons/hr_timesheet_sheet/i18n/pl.po +++ b/addons/hr_timesheet_sheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pt.po b/addons/hr_timesheet_sheet/i18n/pt.po index 1f4288fb017..fed669b7a2d 100644 --- a/addons/hr_timesheet_sheet/i18n/pt.po +++ b/addons/hr_timesheet_sheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/pt_BR.po b/addons/hr_timesheet_sheet/i18n/pt_BR.po index ea7ffc9c413..830f8a8e059 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_BR.po +++ b/addons/hr_timesheet_sheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ro.po b/addons/hr_timesheet_sheet/i18n/ro.po index 0e7d656f923..f182c8724dc 100644 --- a/addons/hr_timesheet_sheet/i18n/ro.po +++ b/addons/hr_timesheet_sheet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/ru.po b/addons/hr_timesheet_sheet/i18n/ru.po index 0b71c043d39..40eff3f8c94 100644 --- a/addons/hr_timesheet_sheet/i18n/ru.po +++ b/addons/hr_timesheet_sheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sk.po b/addons/hr_timesheet_sheet/i18n/sk.po index 3d93d2295e9..d33ff0fd665 100644 --- a/addons/hr_timesheet_sheet/i18n/sk.po +++ b/addons/hr_timesheet_sheet/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sl.po b/addons/hr_timesheet_sheet/i18n/sl.po index e5acc3f85a6..00122eb7e79 100644 --- a/addons/hr_timesheet_sheet/i18n/sl.po +++ b/addons/hr_timesheet_sheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sq.po b/addons/hr_timesheet_sheet/i18n/sq.po index e59f602e340..c7bb80c61ae 100644 --- a/addons/hr_timesheet_sheet/i18n/sq.po +++ b/addons/hr_timesheet_sheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/sv.po b/addons/hr_timesheet_sheet/i18n/sv.po index 75d6d193788..b03197206c8 100644 --- a/addons/hr_timesheet_sheet/i18n/sv.po +++ b/addons/hr_timesheet_sheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/tlh.po b/addons/hr_timesheet_sheet/i18n/tlh.po index e27a259b4df..c6061be2f7a 100644 --- a/addons/hr_timesheet_sheet/i18n/tlh.po +++ b/addons/hr_timesheet_sheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/tr.po b/addons/hr_timesheet_sheet/i18n/tr.po index c2ef7d3c087..14cfa4957c2 100644 --- a/addons/hr_timesheet_sheet/i18n/tr.po +++ b/addons/hr_timesheet_sheet/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/uk.po b/addons/hr_timesheet_sheet/i18n/uk.po index 118df872d77..0a6452730f8 100644 --- a/addons/hr_timesheet_sheet/i18n/uk.po +++ b/addons/hr_timesheet_sheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/vi.po b/addons/hr_timesheet_sheet/i18n/vi.po index 16a8a56a717..793d08c5e71 100644 --- a/addons/hr_timesheet_sheet/i18n/vi.po +++ b/addons/hr_timesheet_sheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/zh_CN.po b/addons/hr_timesheet_sheet/i18n/zh_CN.po index 404c81ad53d..ee78dd3d36b 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_CN.po +++ b/addons/hr_timesheet_sheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/hr_timesheet_sheet/i18n/zh_TW.po b/addons/hr_timesheet_sheet/i18n/zh_TW.po index 29eb849b88c..9c1b1eabf29 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_TW.po +++ b/addons/hr_timesheet_sheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 diff --git a/addons/idea/i18n/ar.po b/addons/idea/i18n/ar.po index 75d3470b8c5..d1f27120bc1 100644 --- a/addons/idea/i18n/ar.po +++ b/addons/idea/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/bg.po b/addons/idea/i18n/bg.po index 928b89240b2..4fad7cb2d64 100644 --- a/addons/idea/i18n/bg.po +++ b/addons/idea/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/bs.po b/addons/idea/i18n/bs.po index c251c9d2ac3..dc448302ea8 100644 --- a/addons/idea/i18n/bs.po +++ b/addons/idea/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ca.po b/addons/idea/i18n/ca.po index 5d09bebab91..925644f5961 100644 --- a/addons/idea/i18n/ca.po +++ b/addons/idea/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/cs.po b/addons/idea/i18n/cs.po index 7d70a13bea3..253d21dc20d 100644 --- a/addons/idea/i18n/cs.po +++ b/addons/idea/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/da.po b/addons/idea/i18n/da.po index 42b0107c0d5..4b627af03b2 100644 --- a/addons/idea/i18n/da.po +++ b/addons/idea/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/de.po b/addons/idea/i18n/de.po index 44b8ba9e1d3..00dcd21043a 100644 --- a/addons/idea/i18n/de.po +++ b/addons/idea/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/el.po b/addons/idea/i18n/el.po index 78c2a2b2852..cc30a98f407 100644 --- a/addons/idea/i18n/el.po +++ b/addons/idea/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/en_GB.po b/addons/idea/i18n/en_GB.po index a0c32527451..7c8df4e5b56 100644 --- a/addons/idea/i18n/en_GB.po +++ b/addons/idea/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es.po b/addons/idea/i18n/es.po index 0e5df5d65ab..bd8f0ba2d14 100644 --- a/addons/idea/i18n/es.po +++ b/addons/idea/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es_AR.po b/addons/idea/i18n/es_AR.po index 7f28565481b..3101a9ba7fd 100644 --- a/addons/idea/i18n/es_AR.po +++ b/addons/idea/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/es_CR.po b/addons/idea/i18n/es_CR.po index e41825550dd..cfd5d3f8664 100644 --- a/addons/idea/i18n/es_CR.po +++ b/addons/idea/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/et.po b/addons/idea/i18n/et.po index c5c6407dd9b..af99195d731 100644 --- a/addons/idea/i18n/et.po +++ b/addons/idea/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/fi.po b/addons/idea/i18n/fi.po index 8628391b92a..472d1053491 100644 --- a/addons/idea/i18n/fi.po +++ b/addons/idea/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/fr.po b/addons/idea/i18n/fr.po index 95cd8b27e75..f3a2c21b72c 100644 --- a/addons/idea/i18n/fr.po +++ b/addons/idea/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/gl.po b/addons/idea/i18n/gl.po index ea830efad8a..38c52ff862c 100644 --- a/addons/idea/i18n/gl.po +++ b/addons/idea/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/gu.po b/addons/idea/i18n/gu.po index 6084c677740..0b20a9caccc 100644 --- a/addons/idea/i18n/gu.po +++ b/addons/idea/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hi.po b/addons/idea/i18n/hi.po index 887c738710e..c6c3f4dce2b 100644 --- a/addons/idea/i18n/hi.po +++ b/addons/idea/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hr.po b/addons/idea/i18n/hr.po index 98ddbfe7864..affedab93a3 100644 --- a/addons/idea/i18n/hr.po +++ b/addons/idea/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/hu.po b/addons/idea/i18n/hu.po index c7e84801194..741470073a2 100644 --- a/addons/idea/i18n/hu.po +++ b/addons/idea/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/id.po b/addons/idea/i18n/id.po index c4316dfd6c2..5bd4e57c9b1 100644 --- a/addons/idea/i18n/id.po +++ b/addons/idea/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/it.po b/addons/idea/i18n/it.po index 39ee58ccc4a..832566a7819 100644 --- a/addons/idea/i18n/it.po +++ b/addons/idea/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ja.po b/addons/idea/i18n/ja.po index 8efbf2be1b3..ab030890bc1 100644 --- a/addons/idea/i18n/ja.po +++ b/addons/idea/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ko.po b/addons/idea/i18n/ko.po index 1a6119fe659..eb274aa6fe2 100644 --- a/addons/idea/i18n/ko.po +++ b/addons/idea/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/lt.po b/addons/idea/i18n/lt.po index 847433d5e97..bbe93f222a7 100644 --- a/addons/idea/i18n/lt.po +++ b/addons/idea/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/lv.po b/addons/idea/i18n/lv.po index fe71550a732..c40afdda8ad 100644 --- a/addons/idea/i18n/lv.po +++ b/addons/idea/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/mk.po b/addons/idea/i18n/mk.po index 8aae2f29552..85ba06bc42e 100644 --- a/addons/idea/i18n/mk.po +++ b/addons/idea/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/mn.po b/addons/idea/i18n/mn.po index 8d37f44f1ef..ab80d1a6a6f 100644 --- a/addons/idea/i18n/mn.po +++ b/addons/idea/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/nl.po b/addons/idea/i18n/nl.po index 217d7cd80b7..744b890f0b5 100644 --- a/addons/idea/i18n/nl.po +++ b/addons/idea/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/pl.po b/addons/idea/i18n/pl.po index 95206aeb2b3..359857b54d8 100644 --- a/addons/idea/i18n/pl.po +++ b/addons/idea/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/pt.po b/addons/idea/i18n/pt.po index 41252b9d40b..51836a86f73 100644 --- a/addons/idea/i18n/pt.po +++ b/addons/idea/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/pt_BR.po b/addons/idea/i18n/pt_BR.po index 8aac5c4a913..32748026115 100644 --- a/addons/idea/i18n/pt_BR.po +++ b/addons/idea/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ro.po b/addons/idea/i18n/ro.po index f9f7695d699..55b8d839b14 100644 --- a/addons/idea/i18n/ro.po +++ b/addons/idea/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/ru.po b/addons/idea/i18n/ru.po index f1e8b37578f..8ecd17c1dab 100644 --- a/addons/idea/i18n/ru.po +++ b/addons/idea/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sk.po b/addons/idea/i18n/sk.po index a5db42b74fe..bf4dc9d2f53 100644 --- a/addons/idea/i18n/sk.po +++ b/addons/idea/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sl.po b/addons/idea/i18n/sl.po index 3aadad8c833..b1e27875e03 100644 --- a/addons/idea/i18n/sl.po +++ b/addons/idea/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sq.po b/addons/idea/i18n/sq.po index 25de838a252..8be8de0d490 100644 --- a/addons/idea/i18n/sq.po +++ b/addons/idea/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sr@latin.po b/addons/idea/i18n/sr@latin.po index 8aaf47fd928..d5c970b84e9 100644 --- a/addons/idea/i18n/sr@latin.po +++ b/addons/idea/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/sv.po b/addons/idea/i18n/sv.po index 11ba463248b..4c9f5bd1100 100644 --- a/addons/idea/i18n/sv.po +++ b/addons/idea/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/tlh.po b/addons/idea/i18n/tlh.po index 79a98670e9f..63ce27c9f96 100644 --- a/addons/idea/i18n/tlh.po +++ b/addons/idea/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:43+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/tr.po b/addons/idea/i18n/tr.po index de0d666502a..cca074ccfa3 100644 --- a/addons/idea/i18n/tr.po +++ b/addons/idea/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/uk.po b/addons/idea/i18n/uk.po index 91da6b47962..33612388bc3 100644 --- a/addons/idea/i18n/uk.po +++ b/addons/idea/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/vi.po b/addons/idea/i18n/vi.po index 0a2ac131879..c25260071ae 100644 --- a/addons/idea/i18n/vi.po +++ b/addons/idea/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/zh_CN.po b/addons/idea/i18n/zh_CN.po index d9b5673e8b5..cca15f5be79 100644 --- a/addons/idea/i18n/zh_CN.po +++ b/addons/idea/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/idea/i18n/zh_TW.po b/addons/idea/i18n/zh_TW.po index e0a22fb8958..0e3557099b1 100644 --- a/addons/idea/i18n/zh_TW.po +++ b/addons/idea/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: idea #: view:idea.category:0 diff --git a/addons/knowledge/i18n/ar.po b/addons/knowledge/i18n/ar.po index 21adc3b1ea2..f840a09df92 100644 --- a/addons/knowledge/i18n/ar.po +++ b/addons/knowledge/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/bg.po b/addons/knowledge/i18n/bg.po index 9c871f0c558..705f63345d0 100644 --- a/addons/knowledge/i18n/bg.po +++ b/addons/knowledge/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ca.po b/addons/knowledge/i18n/ca.po index e4336a07fa1..a3b066f42bb 100644 --- a/addons/knowledge/i18n/ca.po +++ b/addons/knowledge/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/cs.po b/addons/knowledge/i18n/cs.po index aca0a32da08..2b816b4b35a 100644 --- a/addons/knowledge/i18n/cs.po +++ b/addons/knowledge/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/da.po b/addons/knowledge/i18n/da.po index 8f35ba30c13..ca27a3fcd91 100644 --- a/addons/knowledge/i18n/da.po +++ b/addons/knowledge/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/de.po b/addons/knowledge/i18n/de.po index 5c6885a8916..7eeb02ec6c1 100644 --- a/addons/knowledge/i18n/de.po +++ b/addons/knowledge/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/en_GB.po b/addons/knowledge/i18n/en_GB.po index 61abf78dd5b..49dd2e8e761 100644 --- a/addons/knowledge/i18n/en_GB.po +++ b/addons/knowledge/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es.po b/addons/knowledge/i18n/es.po index 8938643c0fe..97c616ca2c2 100644 --- a/addons/knowledge/i18n/es.po +++ b/addons/knowledge/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es_AR.po b/addons/knowledge/i18n/es_AR.po index 775050da35d..17d9f98258d 100644 --- a/addons/knowledge/i18n/es_AR.po +++ b/addons/knowledge/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es_CR.po b/addons/knowledge/i18n/es_CR.po index bf30bc5c6dc..71fba104058 100644 --- a/addons/knowledge/i18n/es_CR.po +++ b/addons/knowledge/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/et.po b/addons/knowledge/i18n/et.po index c691bb80f3e..8cba8b1eeb2 100644 --- a/addons/knowledge/i18n/et.po +++ b/addons/knowledge/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fi.po b/addons/knowledge/i18n/fi.po index 00c0684fbab..cdcbf461ae1 100644 --- a/addons/knowledge/i18n/fi.po +++ b/addons/knowledge/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fr.po b/addons/knowledge/i18n/fr.po index 26ef711974d..a8a3133998b 100644 --- a/addons/knowledge/i18n/fr.po +++ b/addons/knowledge/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/gl.po b/addons/knowledge/i18n/gl.po index 678b57a69d4..be74218202e 100644 --- a/addons/knowledge/i18n/gl.po +++ b/addons/knowledge/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hi.po b/addons/knowledge/i18n/hi.po index 1fec8f7e037..f06eb7a9340 100644 --- a/addons/knowledge/i18n/hi.po +++ b/addons/knowledge/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hr.po b/addons/knowledge/i18n/hr.po index d31d7632aff..9de0f3e1a33 100644 --- a/addons/knowledge/i18n/hr.po +++ b/addons/knowledge/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hu.po b/addons/knowledge/i18n/hu.po index ea36548cacb..91685fa5e9e 100644 --- a/addons/knowledge/i18n/hu.po +++ b/addons/knowledge/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/it.po b/addons/knowledge/i18n/it.po index c61c53e87fa..2a5cf6905c0 100644 --- a/addons/knowledge/i18n/it.po +++ b/addons/knowledge/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ja.po b/addons/knowledge/i18n/ja.po index 73b682de67b..edaea23bf8f 100644 --- a/addons/knowledge/i18n/ja.po +++ b/addons/knowledge/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lo.po b/addons/knowledge/i18n/lo.po index ad664779450..6495a4a3f9a 100644 --- a/addons/knowledge/i18n/lo.po +++ b/addons/knowledge/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lv.po b/addons/knowledge/i18n/lv.po index 217191591cb..feac230da10 100644 --- a/addons/knowledge/i18n/lv.po +++ b/addons/knowledge/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/mk.po b/addons/knowledge/i18n/mk.po index 884e49b890a..8625e9eedf9 100644 --- a/addons/knowledge/i18n/mk.po +++ b/addons/knowledge/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/mn.po b/addons/knowledge/i18n/mn.po index cddf13ee07a..ae17253121c 100644 --- a/addons/knowledge/i18n/mn.po +++ b/addons/knowledge/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nb.po b/addons/knowledge/i18n/nb.po index 5f9a91bea52..53b81ba481c 100644 --- a/addons/knowledge/i18n/nb.po +++ b/addons/knowledge/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl.po b/addons/knowledge/i18n/nl.po index 758618a629b..5f966259e24 100644 --- a/addons/knowledge/i18n/nl.po +++ b/addons/knowledge/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl_BE.po b/addons/knowledge/i18n/nl_BE.po index d53f6b68402..abf97bdcc31 100644 --- a/addons/knowledge/i18n/nl_BE.po +++ b/addons/knowledge/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pl.po b/addons/knowledge/i18n/pl.po index 18e4c16f8a4..086631f97b9 100644 --- a/addons/knowledge/i18n/pl.po +++ b/addons/knowledge/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pt.po b/addons/knowledge/i18n/pt.po index a730ebfd176..edbfa384729 100644 --- a/addons/knowledge/i18n/pt.po +++ b/addons/knowledge/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pt_BR.po b/addons/knowledge/i18n/pt_BR.po index 93a909ed082..4ccd34b54b8 100644 --- a/addons/knowledge/i18n/pt_BR.po +++ b/addons/knowledge/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ro.po b/addons/knowledge/i18n/ro.po index 7dd3430b439..ce158e0adb8 100644 --- a/addons/knowledge/i18n/ro.po +++ b/addons/knowledge/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ru.po b/addons/knowledge/i18n/ru.po index 7e175818d29..9482432532e 100644 --- a/addons/knowledge/i18n/ru.po +++ b/addons/knowledge/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sk.po b/addons/knowledge/i18n/sk.po index 9c52041a3ca..8bce672e09f 100644 --- a/addons/knowledge/i18n/sk.po +++ b/addons/knowledge/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sl.po b/addons/knowledge/i18n/sl.po index ce02eea0a8e..9f05336bf93 100644 --- a/addons/knowledge/i18n/sl.po +++ b/addons/knowledge/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr.po b/addons/knowledge/i18n/sr.po index 7a096806dca..a6c08de8fb2 100644 --- a/addons/knowledge/i18n/sr.po +++ b/addons/knowledge/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr@latin.po b/addons/knowledge/i18n/sr@latin.po index bc1659649e5..def86ea526d 100644 --- a/addons/knowledge/i18n/sr@latin.po +++ b/addons/knowledge/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sv.po b/addons/knowledge/i18n/sv.po index d89177f5a6f..20d6808698c 100644 --- a/addons/knowledge/i18n/sv.po +++ b/addons/knowledge/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/tr.po b/addons/knowledge/i18n/tr.po index 42ff100d7c9..f1fe8c94a4b 100644 --- a/addons/knowledge/i18n/tr.po +++ b/addons/knowledge/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/zh_CN.po b/addons/knowledge/i18n/zh_CN.po index 80f90d6b9fa..7e1f0963667 100644 --- a/addons/knowledge/i18n/zh_CN.po +++ b/addons/knowledge/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/zh_TW.po b/addons/knowledge/i18n/zh_TW.po index 254160b72d7..fd562aa9ffc 100644 --- a/addons/knowledge/i18n/zh_TW.po +++ b/addons/knowledge/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/l10n_ar/i18n/es.po b/addons/l10n_ar/i18n/es.po index fb4d07742b9..df78cc4a387 100644 --- a/addons/l10n_ar/i18n/es.po +++ b/addons/l10n_ar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/es_AR.po b/addons/l10n_ar/i18n/es_AR.po index 45cf1090137..d3e1fdcba5a 100644 --- a/addons/l10n_ar/i18n/es_AR.po +++ b/addons/l10n_ar/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/pt.po b/addons/l10n_ar/i18n/pt.po index 5f83f7858ab..1978a30df14 100644 --- a/addons/l10n_ar/i18n/pt.po +++ b/addons/l10n_ar/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/pt_BR.po b/addons/l10n_ar/i18n/pt_BR.po index 5b967466e90..cd8124706ec 100644 --- a/addons/l10n_ar/i18n/pt_BR.po +++ b/addons/l10n_ar/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/sl.po b/addons/l10n_ar/i18n/sl.po index 5d0ee254b19..013ccdf4a75 100644 --- a/addons/l10n_ar/i18n/sl.po +++ b/addons/l10n_ar/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/tr.po b/addons/l10n_ar/i18n/tr.po index 1567191141b..4ec9c983d00 100644 --- a/addons/l10n_ar/i18n/tr.po +++ b/addons/l10n_ar/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_ar/i18n/zh_CN.po b/addons/l10n_ar/i18n/zh_CN.po index 01f66153dd3..a4c5d7c196c 100644 --- a/addons/l10n_ar/i18n/zh_CN.po +++ b/addons/l10n_ar/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:account.account.type,name:l10n_ar.account_account_type_BG_ACC_50 diff --git a/addons/l10n_be/i18n/ar.po b/addons/l10n_be/i18n/ar.po index 4fe9410e06d..ece68d1ddb7 100644 --- a/addons/l10n_be/i18n/ar.po +++ b/addons/l10n_be/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/bg.po b/addons/l10n_be/i18n/bg.po index 5180398ee30..a85ba38d042 100644 --- a/addons/l10n_be/i18n/bg.po +++ b/addons/l10n_be/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/bs.po b/addons/l10n_be/i18n/bs.po index 0ba55f560fe..8dfb9e9aab7 100644 --- a/addons/l10n_be/i18n/bs.po +++ b/addons/l10n_be/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ca.po b/addons/l10n_be/i18n/ca.po index 0f3451b16eb..988322142a0 100644 --- a/addons/l10n_be/i18n/ca.po +++ b/addons/l10n_be/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/cs.po b/addons/l10n_be/i18n/cs.po index 8e96f8bddbb..bb6123021c1 100644 --- a/addons/l10n_be/i18n/cs.po +++ b/addons/l10n_be/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/da.po b/addons/l10n_be/i18n/da.po index d1bf5d98386..f014eb1da8d 100644 --- a/addons/l10n_be/i18n/da.po +++ b/addons/l10n_be/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/de.po b/addons/l10n_be/i18n/de.po index fa4333bf95d..ab7f4fb87eb 100644 --- a/addons/l10n_be/i18n/de.po +++ b/addons/l10n_be/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-10 05:24+0000\n" -"X-Generator: Launchpad (build 16482)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/en_GB.po b/addons/l10n_be/i18n/en_GB.po index dd144e972f3..5ecbc3b74b4 100644 --- a/addons/l10n_be/i18n/en_GB.po +++ b/addons/l10n_be/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es.po b/addons/l10n_be/i18n/es.po index f9d60bcbfb1..948b604f181 100644 --- a/addons/l10n_be/i18n/es.po +++ b/addons/l10n_be/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es_AR.po b/addons/l10n_be/i18n/es_AR.po index 2fa57e505d4..4c5d17d3242 100644 --- a/addons/l10n_be/i18n/es_AR.po +++ b/addons/l10n_be/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/es_CR.po b/addons/l10n_be/i18n/es_CR.po index 69acddb7d63..d3f1db0002f 100644 --- a/addons/l10n_be/i18n/es_CR.po +++ b/addons/l10n_be/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/et.po b/addons/l10n_be/i18n/et.po index 2e21bf7fbca..f03afed2613 100644 --- a/addons/l10n_be/i18n/et.po +++ b/addons/l10n_be/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/fi.po b/addons/l10n_be/i18n/fi.po index 29d42b5fe48..0f95b652c05 100644 --- a/addons/l10n_be/i18n/fi.po +++ b/addons/l10n_be/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/fr.po b/addons/l10n_be/i18n/fr.po index b1b9915af05..8d1996b0a7c 100644 --- a/addons/l10n_be/i18n/fr.po +++ b/addons/l10n_be/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/gl.po b/addons/l10n_be/i18n/gl.po index 9b043afbfd5..eb14155fe5b 100644 --- a/addons/l10n_be/i18n/gl.po +++ b/addons/l10n_be/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/hr.po b/addons/l10n_be/i18n/hr.po index 90ec06ece3b..6b94748a6c5 100644 --- a/addons/l10n_be/i18n/hr.po +++ b/addons/l10n_be/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/hu.po b/addons/l10n_be/i18n/hu.po index 4542dbbcfa9..f3cde11b99b 100644 --- a/addons/l10n_be/i18n/hu.po +++ b/addons/l10n_be/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/id.po b/addons/l10n_be/i18n/id.po index 329072e01c0..bc9be1a9495 100644 --- a/addons/l10n_be/i18n/id.po +++ b/addons/l10n_be/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/it.po b/addons/l10n_be/i18n/it.po index 302daf450bc..cf36f9817ec 100644 --- a/addons/l10n_be/i18n/it.po +++ b/addons/l10n_be/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ja.po b/addons/l10n_be/i18n/ja.po index 67d68fd8490..c371f19bb86 100644 --- a/addons/l10n_be/i18n/ja.po +++ b/addons/l10n_be/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ko.po b/addons/l10n_be/i18n/ko.po index 7bc27d01732..9e813a4f1ca 100644 --- a/addons/l10n_be/i18n/ko.po +++ b/addons/l10n_be/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/lt.po b/addons/l10n_be/i18n/lt.po index b1a6fe5d2a7..301272d4234 100644 --- a/addons/l10n_be/i18n/lt.po +++ b/addons/l10n_be/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/mk.po b/addons/l10n_be/i18n/mk.po index 7c1184be3f5..8092e1463ee 100644 --- a/addons/l10n_be/i18n/mk.po +++ b/addons/l10n_be/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-22 05:44+0000\n" -"X-Generator: Launchpad (build 16506)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/nl.po b/addons/l10n_be/i18n/nl.po index d0517d908ae..601d7de6f1d 100644 --- a/addons/l10n_be/i18n/nl.po +++ b/addons/l10n_be/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/nl_BE.po b/addons/l10n_be/i18n/nl_BE.po index 3551d815069..283863ef91a 100644 --- a/addons/l10n_be/i18n/nl_BE.po +++ b/addons/l10n_be/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pl.po b/addons/l10n_be/i18n/pl.po index baf696bf113..8b5d45c973a 100644 --- a/addons/l10n_be/i18n/pl.po +++ b/addons/l10n_be/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pt.po b/addons/l10n_be/i18n/pt.po index 66136b18fba..37d6868baa9 100644 --- a/addons/l10n_be/i18n/pt.po +++ b/addons/l10n_be/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/pt_BR.po b/addons/l10n_be/i18n/pt_BR.po index 5cf42fe6167..70a219ff9c8 100644 --- a/addons/l10n_be/i18n/pt_BR.po +++ b/addons/l10n_be/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ro.po b/addons/l10n_be/i18n/ro.po index 7ad3799dfaa..2df4e6c25cb 100644 --- a/addons/l10n_be/i18n/ro.po +++ b/addons/l10n_be/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/ru.po b/addons/l10n_be/i18n/ru.po index abbc74b1de4..c0389001384 100644 --- a/addons/l10n_be/i18n/ru.po +++ b/addons/l10n_be/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sl.po b/addons/l10n_be/i18n/sl.po index 8780c12f850..ff5e578fe19 100644 --- a/addons/l10n_be/i18n/sl.po +++ b/addons/l10n_be/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sq.po b/addons/l10n_be/i18n/sq.po index a41c48e6f75..f9b23f5385e 100644 --- a/addons/l10n_be/i18n/sq.po +++ b/addons/l10n_be/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:48+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sr@latin.po b/addons/l10n_be/i18n/sr@latin.po index a15ac9633df..41d53f5dd18 100644 --- a/addons/l10n_be/i18n/sr@latin.po +++ b/addons/l10n_be/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/sv.po b/addons/l10n_be/i18n/sv.po index d7ea21414d8..f02aa68daa7 100644 --- a/addons/l10n_be/i18n/sv.po +++ b/addons/l10n_be/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/tlh.po b/addons/l10n_be/i18n/tlh.po index 15dc14eee2a..77a01b8e509 100644 --- a/addons/l10n_be/i18n/tlh.po +++ b/addons/l10n_be/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/tr.po b/addons/l10n_be/i18n/tr.po index c84318fa2b2..f471d53a7a3 100644 --- a/addons/l10n_be/i18n/tr.po +++ b/addons/l10n_be/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/uk.po b/addons/l10n_be/i18n/uk.po index 8d490aa5923..3cbc05e91b3 100644 --- a/addons/l10n_be/i18n/uk.po +++ b/addons/l10n_be/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/vi.po b/addons/l10n_be/i18n/vi.po index 3808e2b08d5..6d19347372e 100644 --- a/addons/l10n_be/i18n/vi.po +++ b/addons/l10n_be/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/zh_CN.po b/addons/l10n_be/i18n/zh_CN.po index 17b8589b5ef..8602e33b18d 100644 --- a/addons/l10n_be/i18n/zh_CN.po +++ b/addons/l10n_be/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be/i18n/zh_TW.po b/addons/l10n_be/i18n/zh_TW.po index b01784a411e..ad3b89ffb86 100644 --- a/addons/l10n_be/i18n/zh_TW.po +++ b/addons/l10n_be/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be #: model:account.financial.report,name:l10n_be.account_financial_report_appro_mbsd3 diff --git a/addons/l10n_be_coda/i18n/ar.po b/addons/l10n_be_coda/i18n/ar.po index 13fb58af2b5..f1ba46d1de8 100644 --- a/addons/l10n_be_coda/i18n/ar.po +++ b/addons/l10n_be_coda/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/bg.po b/addons/l10n_be_coda/i18n/bg.po index f8485acd776..58e4fb1826f 100644 --- a/addons/l10n_be_coda/i18n/bg.po +++ b/addons/l10n_be_coda/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ca.po b/addons/l10n_be_coda/i18n/ca.po index fa3cebb2c08..25970338aab 100644 --- a/addons/l10n_be_coda/i18n/ca.po +++ b/addons/l10n_be_coda/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/da.po b/addons/l10n_be_coda/i18n/da.po index e605a9982e5..61f46b4a42c 100644 --- a/addons/l10n_be_coda/i18n/da.po +++ b/addons/l10n_be_coda/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/de.po b/addons/l10n_be_coda/i18n/de.po index 43d23a6d87a..a8c0cecb9ae 100644 --- a/addons/l10n_be_coda/i18n/de.po +++ b/addons/l10n_be_coda/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/el.po b/addons/l10n_be_coda/i18n/el.po index cf2748e3f54..3fa145697bf 100644 --- a/addons/l10n_be_coda/i18n/el.po +++ b/addons/l10n_be_coda/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/en_AU.po b/addons/l10n_be_coda/i18n/en_AU.po index aac8a468e65..97ad22feacc 100644 --- a/addons/l10n_be_coda/i18n/en_AU.po +++ b/addons/l10n_be_coda/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/en_GB.po b/addons/l10n_be_coda/i18n/en_GB.po index 93a64a65274..0dda6b2a1c7 100644 --- a/addons/l10n_be_coda/i18n/en_GB.po +++ b/addons/l10n_be_coda/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es.po b/addons/l10n_be_coda/i18n/es.po index 727105c3728..1e3c881a997 100644 --- a/addons/l10n_be_coda/i18n/es.po +++ b/addons/l10n_be_coda/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_CR.po b/addons/l10n_be_coda/i18n/es_CR.po index 27b1e42c006..9b2aa116f5a 100644 --- a/addons/l10n_be_coda/i18n/es_CR.po +++ b/addons/l10n_be_coda/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_EC.po b/addons/l10n_be_coda/i18n/es_EC.po index b970c380876..9a1973e05f6 100644 --- a/addons/l10n_be_coda/i18n/es_EC.po +++ b/addons/l10n_be_coda/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/es_PY.po b/addons/l10n_be_coda/i18n/es_PY.po index 4c9d0557a81..0432211afb9 100644 --- a/addons/l10n_be_coda/i18n/es_PY.po +++ b/addons/l10n_be_coda/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/et.po b/addons/l10n_be_coda/i18n/et.po index 1b7287a6e37..1456fabebef 100644 --- a/addons/l10n_be_coda/i18n/et.po +++ b/addons/l10n_be_coda/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fa.po b/addons/l10n_be_coda/i18n/fa.po index 26643c8daf4..a3e744567a5 100644 --- a/addons/l10n_be_coda/i18n/fa.po +++ b/addons/l10n_be_coda/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fi.po b/addons/l10n_be_coda/i18n/fi.po index 1c5c061ce19..ce04c315898 100644 --- a/addons/l10n_be_coda/i18n/fi.po +++ b/addons/l10n_be_coda/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/fr.po b/addons/l10n_be_coda/i18n/fr.po index e23210792b3..d23d2936b4c 100644 --- a/addons/l10n_be_coda/i18n/fr.po +++ b/addons/l10n_be_coda/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/gl.po b/addons/l10n_be_coda/i18n/gl.po index a58cf84d3ff..024d0f13d52 100644 --- a/addons/l10n_be_coda/i18n/gl.po +++ b/addons/l10n_be_coda/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/hr.po b/addons/l10n_be_coda/i18n/hr.po index cfb42ef5860..f3f3157dd94 100644 --- a/addons/l10n_be_coda/i18n/hr.po +++ b/addons/l10n_be_coda/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/hu.po b/addons/l10n_be_coda/i18n/hu.po index d52674060ac..0bc9f54090a 100644 --- a/addons/l10n_be_coda/i18n/hu.po +++ b/addons/l10n_be_coda/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/it.po b/addons/l10n_be_coda/i18n/it.po index 7d3a2bb9d77..29b5170b5a5 100644 --- a/addons/l10n_be_coda/i18n/it.po +++ b/addons/l10n_be_coda/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ja.po b/addons/l10n_be_coda/i18n/ja.po index 75fa8805f3b..c2d01b6c291 100644 --- a/addons/l10n_be_coda/i18n/ja.po +++ b/addons/l10n_be_coda/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/lv.po b/addons/l10n_be_coda/i18n/lv.po index fb4a4ed0e19..2eccff3d6bd 100644 --- a/addons/l10n_be_coda/i18n/lv.po +++ b/addons/l10n_be_coda/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/mk.po b/addons/l10n_be_coda/i18n/mk.po index 0a0485b7ed3..de613bb1efb 100644 --- a/addons/l10n_be_coda/i18n/mk.po +++ b/addons/l10n_be_coda/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-22 05:44+0000\n" -"X-Generator: Launchpad (build 16506)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/mn.po b/addons/l10n_be_coda/i18n/mn.po index c467f46169b..5bb0b1bdd6c 100644 --- a/addons/l10n_be_coda/i18n/mn.po +++ b/addons/l10n_be_coda/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nb.po b/addons/l10n_be_coda/i18n/nb.po index 8bd44a04faf..db7fe82c838 100644 --- a/addons/l10n_be_coda/i18n/nb.po +++ b/addons/l10n_be_coda/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nl.po b/addons/l10n_be_coda/i18n/nl.po index 3ff2d59b218..f444971d099 100644 --- a/addons/l10n_be_coda/i18n/nl.po +++ b/addons/l10n_be_coda/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/nl_BE.po b/addons/l10n_be_coda/i18n/nl_BE.po index 4ffa5bdae6e..e103ef12570 100644 --- a/addons/l10n_be_coda/i18n/nl_BE.po +++ b/addons/l10n_be_coda/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pl.po b/addons/l10n_be_coda/i18n/pl.po index 60a4b70b906..a95a12f0e2f 100644 --- a/addons/l10n_be_coda/i18n/pl.po +++ b/addons/l10n_be_coda/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pt.po b/addons/l10n_be_coda/i18n/pt.po index 8755a122114..28c7319838a 100644 --- a/addons/l10n_be_coda/i18n/pt.po +++ b/addons/l10n_be_coda/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/pt_BR.po b/addons/l10n_be_coda/i18n/pt_BR.po index 9108d49d9b2..7212618354c 100644 --- a/addons/l10n_be_coda/i18n/pt_BR.po +++ b/addons/l10n_be_coda/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ro.po b/addons/l10n_be_coda/i18n/ro.po index 91326ec5e18..51e22f77db9 100644 --- a/addons/l10n_be_coda/i18n/ro.po +++ b/addons/l10n_be_coda/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/ru.po b/addons/l10n_be_coda/i18n/ru.po index 1cbd05b6026..a86f1a6badd 100644 --- a/addons/l10n_be_coda/i18n/ru.po +++ b/addons/l10n_be_coda/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sl.po b/addons/l10n_be_coda/i18n/sl.po index 2b82815d78d..981164ed502 100644 --- a/addons/l10n_be_coda/i18n/sl.po +++ b/addons/l10n_be_coda/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sq.po b/addons/l10n_be_coda/i18n/sq.po index 8a686f0fe92..b9b09dc8510 100644 --- a/addons/l10n_be_coda/i18n/sq.po +++ b/addons/l10n_be_coda/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:49+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:44+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sr.po b/addons/l10n_be_coda/i18n/sr.po index e2453f52143..0c2dd586fc1 100644 --- a/addons/l10n_be_coda/i18n/sr.po +++ b/addons/l10n_be_coda/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sr@latin.po b/addons/l10n_be_coda/i18n/sr@latin.po index 9e067e5be8d..bc5975bce03 100644 --- a/addons/l10n_be_coda/i18n/sr@latin.po +++ b/addons/l10n_be_coda/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/sv.po b/addons/l10n_be_coda/i18n/sv.po index 5b83aea869d..fc59b2e8ea5 100644 --- a/addons/l10n_be_coda/i18n/sv.po +++ b/addons/l10n_be_coda/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/tr.po b/addons/l10n_be_coda/i18n/tr.po index 8a4fff2f872..5cb971cd187 100644 --- a/addons/l10n_be_coda/i18n/tr.po +++ b/addons/l10n_be_coda/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/vi.po b/addons/l10n_be_coda/i18n/vi.po index b42a367542c..642c0132524 100644 --- a/addons/l10n_be_coda/i18n/vi.po +++ b/addons/l10n_be_coda/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/zh_CN.po b/addons/l10n_be_coda/i18n/zh_CN.po index 579e28cbd9c..437edf46d6d 100644 --- a/addons/l10n_be_coda/i18n/zh_CN.po +++ b/addons/l10n_be_coda/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_coda/i18n/zh_TW.po b/addons/l10n_be_coda/i18n/zh_TW.po index 650b09e656b..a212537386e 100644 --- a/addons/l10n_be_coda/i18n/zh_TW.po +++ b/addons/l10n_be_coda/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:45+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 diff --git a/addons/l10n_be_hr_payroll/i18n/de.po b/addons/l10n_be_hr_payroll/i18n/de.po index d7d7772e790..7a838c655bd 100644 --- a/addons/l10n_be_hr_payroll/i18n/de.po +++ b/addons/l10n_be_hr_payroll/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/es.po b/addons/l10n_be_hr_payroll/i18n/es.po index 62a2d0a6a49..262c4e8e519 100644 --- a/addons/l10n_be_hr_payroll/i18n/es.po +++ b/addons/l10n_be_hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/es_CR.po b/addons/l10n_be_hr_payroll/i18n/es_CR.po index f7495aa614d..6e09b488c27 100644 --- a/addons/l10n_be_hr_payroll/i18n/es_CR.po +++ b/addons/l10n_be_hr_payroll/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt.po b/addons/l10n_be_hr_payroll/i18n/pt.po index f6ecdcf27ef..9256b6b7da9 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt.po +++ b/addons/l10n_be_hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-25 06:05+0000\n" -"X-Generator: Launchpad (build 16445)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/pt_BR.po b/addons/l10n_be_hr_payroll/i18n/pt_BR.po index c73376bfb43..7c410f51783 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_be_hr_payroll/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/sl.po b/addons/l10n_be_hr_payroll/i18n/sl.po index 467e9ba28b9..edc21ac0d99 100644 --- a/addons/l10n_be_hr_payroll/i18n/sl.po +++ b/addons/l10n_be_hr_payroll/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/sr@latin.po b/addons/l10n_be_hr_payroll/i18n/sr@latin.po index d0133187dac..56b51f3d953 100644 --- a/addons/l10n_be_hr_payroll/i18n/sr@latin.po +++ b/addons/l10n_be_hr_payroll/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/tr.po b/addons/l10n_be_hr_payroll/i18n/tr.po index ded29e080cb..52e598bdb11 100644 --- a/addons/l10n_be_hr_payroll/i18n/tr.po +++ b/addons/l10n_be_hr_payroll/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_invoice_bba/i18n/ar.po b/addons/l10n_be_invoice_bba/i18n/ar.po index 1a2be34c2a6..8e12a17cee8 100644 --- a/addons/l10n_be_invoice_bba/i18n/ar.po +++ b/addons/l10n_be_invoice_bba/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/es.po b/addons/l10n_be_invoice_bba/i18n/es.po index 251c3b8dc01..33b37f93d6d 100644 --- a/addons/l10n_be_invoice_bba/i18n/es.po +++ b/addons/l10n_be_invoice_bba/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/es_CR.po b/addons/l10n_be_invoice_bba/i18n/es_CR.po index bf03641aa61..f708abce1b1 100644 --- a/addons/l10n_be_invoice_bba/i18n/es_CR.po +++ b/addons/l10n_be_invoice_bba/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/fr.po b/addons/l10n_be_invoice_bba/i18n/fr.po index c2ddf91a5b7..c8768f5921c 100644 --- a/addons/l10n_be_invoice_bba/i18n/fr.po +++ b/addons/l10n_be_invoice_bba/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nb.po b/addons/l10n_be_invoice_bba/i18n/nb.po index 6b378033b9e..38f1002efe0 100644 --- a/addons/l10n_be_invoice_bba/i18n/nb.po +++ b/addons/l10n_be_invoice_bba/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nl.po b/addons/l10n_be_invoice_bba/i18n/nl.po index 0a01ee8607c..e36eb14584c 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl.po +++ b/addons/l10n_be_invoice_bba/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/nl_BE.po b/addons/l10n_be_invoice_bba/i18n/nl_BE.po index 0c5c7ea1a37..dc6882c478a 100644 --- a/addons/l10n_be_invoice_bba/i18n/nl_BE.po +++ b/addons/l10n_be_invoice_bba/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/pt.po b/addons/l10n_be_invoice_bba/i18n/pt.po index bf125bb0b30..d5ffe62607f 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt.po +++ b/addons/l10n_be_invoice_bba/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/pt_BR.po b/addons/l10n_be_invoice_bba/i18n/pt_BR.po index 1c127f7b80b..d8b9d1b2de3 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt_BR.po +++ b/addons/l10n_be_invoice_bba/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/sl.po b/addons/l10n_be_invoice_bba/i18n/sl.po index d0894e1a920..2c60c0a65fc 100644 --- a/addons/l10n_be_invoice_bba/i18n/sl.po +++ b/addons/l10n_be_invoice_bba/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/sr@latin.po b/addons/l10n_be_invoice_bba/i18n/sr@latin.po index ebd538def1c..9727df7fd33 100644 --- a/addons/l10n_be_invoice_bba/i18n/sr@latin.po +++ b/addons/l10n_be_invoice_bba/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_be_invoice_bba/i18n/tr.po b/addons/l10n_be_invoice_bba/i18n/tr.po index 26e562eaa3e..52c4a0af311 100644 --- a/addons/l10n_be_invoice_bba/i18n/tr.po +++ b/addons/l10n_be_invoice_bba/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_bo/i18n/es.po b/addons/l10n_bo/i18n/es.po index cfeef8aeb9b..4df8548a2f6 100644 --- a/addons/l10n_bo/i18n/es.po +++ b/addons/l10n_bo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/it.po b/addons/l10n_bo/i18n/it.po index cd4605fb785..763d0c0de3e 100644 --- a/addons/l10n_bo/i18n/it.po +++ b/addons/l10n_bo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-20 05:17+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/pt.po b/addons/l10n_bo/i18n/pt.po index b0d27e35a0e..21a217ba59c 100644 --- a/addons/l10n_bo/i18n/pt.po +++ b/addons/l10n_bo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/pt_BR.po b/addons/l10n_bo/i18n/pt_BR.po index 1641b0fc0fc..75879d2cb82 100644 --- a/addons/l10n_bo/i18n/pt_BR.po +++ b/addons/l10n_bo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/sl.po b/addons/l10n_bo/i18n/sl.po index 1ffe36fbcf1..2e802631faa 100644 --- a/addons/l10n_bo/i18n/sl.po +++ b/addons/l10n_bo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/tr.po b/addons/l10n_bo/i18n/tr.po index 2b3f0d0f53f..9e315195825 100644 --- a/addons/l10n_bo/i18n/tr.po +++ b/addons/l10n_bo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_br/i18n/ar.po b/addons/l10n_br/i18n/ar.po index f9aac554375..336197d9a25 100644 --- a/addons/l10n_br/i18n/ar.po +++ b/addons/l10n_br/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/bg.po b/addons/l10n_br/i18n/bg.po index a92c0e06462..89adb81078f 100644 --- a/addons/l10n_br/i18n/bg.po +++ b/addons/l10n_br/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/ca.po b/addons/l10n_br/i18n/ca.po index 0b197b0b5e7..1a9682e24bf 100644 --- a/addons/l10n_br/i18n/ca.po +++ b/addons/l10n_br/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/da.po b/addons/l10n_br/i18n/da.po index 742e1d6e504..22d9fbd5f28 100644 --- a/addons/l10n_br/i18n/da.po +++ b/addons/l10n_br/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/en_GB.po b/addons/l10n_br/i18n/en_GB.po index 4073907fe83..e3dea1f6503 100644 --- a/addons/l10n_br/i18n/en_GB.po +++ b/addons/l10n_br/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es.po b/addons/l10n_br/i18n/es.po index 2b6dbe79282..47cd2957e0a 100644 --- a/addons/l10n_br/i18n/es.po +++ b/addons/l10n_br/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es_CR.po b/addons/l10n_br/i18n/es_CR.po index 06341fdfb2f..b0260e486c4 100644 --- a/addons/l10n_br/i18n/es_CR.po +++ b/addons/l10n_br/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/es_PY.po b/addons/l10n_br/i18n/es_PY.po index 287966b0596..52e4a5447c4 100644 --- a/addons/l10n_br/i18n/es_PY.po +++ b/addons/l10n_br/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/fr.po b/addons/l10n_br/i18n/fr.po index ced77d5dac8..63cbfb5d892 100644 --- a/addons/l10n_br/i18n/fr.po +++ b/addons/l10n_br/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/gl.po b/addons/l10n_br/i18n/gl.po index dbe4934dfe2..71658a45119 100644 --- a/addons/l10n_br/i18n/gl.po +++ b/addons/l10n_br/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/hi.po b/addons/l10n_br/i18n/hi.po index 28743e1870e..98ec0181eca 100644 --- a/addons/l10n_br/i18n/hi.po +++ b/addons/l10n_br/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/it.po b/addons/l10n_br/i18n/it.po index 79fbf92592c..6e9f17d8b33 100644 --- a/addons/l10n_br/i18n/it.po +++ b/addons/l10n_br/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/nb.po b/addons/l10n_br/i18n/nb.po index 0a128eee19c..1ba22995566 100644 --- a/addons/l10n_br/i18n/nb.po +++ b/addons/l10n_br/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/oc.po b/addons/l10n_br/i18n/oc.po index c4698ada62c..7362b636bb0 100644 --- a/addons/l10n_br/i18n/oc.po +++ b/addons/l10n_br/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/pt.po b/addons/l10n_br/i18n/pt.po index d4c67dc3891..fd19fc50625 100644 --- a/addons/l10n_br/i18n/pt.po +++ b/addons/l10n_br/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/pt_BR.po b/addons/l10n_br/i18n/pt_BR.po index bccf3cf2e89..e6f858c5b3f 100644 --- a/addons/l10n_br/i18n/pt_BR.po +++ b/addons/l10n_br/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/ru.po b/addons/l10n_br/i18n/ru.po index e8e24ebc036..32fac1b1495 100644 --- a/addons/l10n_br/i18n/ru.po +++ b/addons/l10n_br/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sl.po b/addons/l10n_br/i18n/sl.po index ddff1e0fe51..e0ad086d085 100644 --- a/addons/l10n_br/i18n/sl.po +++ b/addons/l10n_br/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sq.po b/addons/l10n_br/i18n/sq.po index 166b62cc251..8a919bda46f 100644 --- a/addons/l10n_br/i18n/sq.po +++ b/addons/l10n_br/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/sr@latin.po b/addons/l10n_br/i18n/sr@latin.po index b8f1619b0d4..ed7b478adfa 100644 --- a/addons/l10n_br/i18n/sr@latin.po +++ b/addons/l10n_br/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_br/i18n/tr.po b/addons/l10n_br/i18n/tr.po index 4acedb7a9bd..d854daf6627 100644 --- a/addons/l10n_br/i18n/tr.po +++ b/addons/l10n_br/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_br #: field:account.tax,tax_discount:0 diff --git a/addons/l10n_ca/i18n/ar.po b/addons/l10n_ca/i18n/ar.po index 0d8faeef428..0e4747c2ce8 100644 --- a/addons/l10n_ca/i18n/ar.po +++ b/addons/l10n_ca/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/ca.po b/addons/l10n_ca/i18n/ca.po index ba7010cb587..55ad39bdab7 100644 --- a/addons/l10n_ca/i18n/ca.po +++ b/addons/l10n_ca/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/da.po b/addons/l10n_ca/i18n/da.po index 517981cc6dd..087895fef97 100644 --- a/addons/l10n_ca/i18n/da.po +++ b/addons/l10n_ca/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/de.po b/addons/l10n_ca/i18n/de.po index cc858f76fee..06296e8885e 100644 --- a/addons/l10n_ca/i18n/de.po +++ b/addons/l10n_ca/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/en_GB.po b/addons/l10n_ca/i18n/en_GB.po index c43a62212f0..618c92a25d6 100644 --- a/addons/l10n_ca/i18n/en_GB.po +++ b/addons/l10n_ca/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es.po b/addons/l10n_ca/i18n/es.po index c24d8226443..784f5dc265d 100644 --- a/addons/l10n_ca/i18n/es.po +++ b/addons/l10n_ca/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es_CR.po b/addons/l10n_ca/i18n/es_CR.po index 558fe712d06..ab72584dc32 100644 --- a/addons/l10n_ca/i18n/es_CR.po +++ b/addons/l10n_ca/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/es_PY.po b/addons/l10n_ca/i18n/es_PY.po index f195b3463d9..9483ab5a19e 100644 --- a/addons/l10n_ca/i18n/es_PY.po +++ b/addons/l10n_ca/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/fr.po b/addons/l10n_ca/i18n/fr.po index e22950cc858..8e16eb8cfb9 100644 --- a/addons/l10n_ca/i18n/fr.po +++ b/addons/l10n_ca/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/gl.po b/addons/l10n_ca/i18n/gl.po index ef98c36d64d..bae6112b199 100644 --- a/addons/l10n_ca/i18n/gl.po +++ b/addons/l10n_ca/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:50+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/hu.po b/addons/l10n_ca/i18n/hu.po index 871c7fbd72e..af376142ed4 100644 --- a/addons/l10n_ca/i18n/hu.po +++ b/addons/l10n_ca/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/it.po b/addons/l10n_ca/i18n/it.po index fc17f7c830a..a119a57a33a 100644 --- a/addons/l10n_ca/i18n/it.po +++ b/addons/l10n_ca/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/nb.po b/addons/l10n_ca/i18n/nb.po index 98e970767cb..9afb0d5c980 100644 --- a/addons/l10n_ca/i18n/nb.po +++ b/addons/l10n_ca/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/pt.po b/addons/l10n_ca/i18n/pt.po index 4412eb9fb03..a6cea3ef32e 100644 --- a/addons/l10n_ca/i18n/pt.po +++ b/addons/l10n_ca/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/pt_BR.po b/addons/l10n_ca/i18n/pt_BR.po index 80b7902a61e..a8e1cd50e5b 100644 --- a/addons/l10n_ca/i18n/pt_BR.po +++ b/addons/l10n_ca/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/sl.po b/addons/l10n_ca/i18n/sl.po index c406c337e45..7550872e93d 100644 --- a/addons/l10n_ca/i18n/sl.po +++ b/addons/l10n_ca/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/sr@latin.po b/addons/l10n_ca/i18n/sr@latin.po index dc020766501..913529e63af 100644 --- a/addons/l10n_ca/i18n/sr@latin.po +++ b/addons/l10n_ca/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/tr.po b/addons/l10n_ca/i18n/tr.po index b70966467f7..9a3af8dc0e8 100644 --- a/addons/l10n_ca/i18n/tr.po +++ b/addons/l10n_ca/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_ca/i18n/zh_CN.po b/addons/l10n_ca/i18n/zh_CN.po index c824c42f2d3..cbcef3a7000 100644 --- a/addons/l10n_ca/i18n/zh_CN.po +++ b/addons/l10n_ca/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ca #: model:account.account.type,name:l10n_ca.account_type_receivable diff --git a/addons/l10n_cl/i18n/es.po b/addons/l10n_cl/i18n/es.po index f26db8e6b1d..c8b9d7da0ae 100644 --- a/addons/l10n_cl/i18n/es.po +++ b/addons/l10n_cl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/pt_BR.po b/addons/l10n_cl/i18n/pt_BR.po index 24f89c38abd..e2f1ed51e89 100644 --- a/addons/l10n_cl/i18n/pt_BR.po +++ b/addons/l10n_cl/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/sl.po b/addons/l10n_cl/i18n/sl.po index 96154164baa..3ad3d3a3355 100644 --- a/addons/l10n_cl/i18n/sl.po +++ b/addons/l10n_cl/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/tr.po b/addons/l10n_cl/i18n/tr.po index 60334ea94a4..161c611e8d9 100644 --- a/addons/l10n_cl/i18n/tr.po +++ b/addons/l10n_cl/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cl/i18n/zh_CN.po b/addons/l10n_cl/i18n/zh_CN.po index bc1f35a2a77..22f1d5689e6 100644 --- a/addons/l10n_cl/i18n/zh_CN.po +++ b/addons/l10n_cl/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cl #: model:account.account.type,name:l10n_cl.account_account_type_BG_ACN_10 diff --git a/addons/l10n_cn/i18n/ar.po b/addons/l10n_cn/i18n/ar.po index cc3654c8565..91257841231 100644 --- a/addons/l10n_cn/i18n/ar.po +++ b/addons/l10n_cn/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/ca.po b/addons/l10n_cn/i18n/ca.po index 05af347ee05..bfe0eb1a883 100644 --- a/addons/l10n_cn/i18n/ca.po +++ b/addons/l10n_cn/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/da.po b/addons/l10n_cn/i18n/da.po index 5fdf1e45435..706eaef1773 100644 --- a/addons/l10n_cn/i18n/da.po +++ b/addons/l10n_cn/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es.po b/addons/l10n_cn/i18n/es.po index 129a28682c5..ed40c17f618 100644 --- a/addons/l10n_cn/i18n/es.po +++ b/addons/l10n_cn/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es_CR.po b/addons/l10n_cn/i18n/es_CR.po index 5f10ea53c22..5d6abe36c96 100644 --- a/addons/l10n_cn/i18n/es_CR.po +++ b/addons/l10n_cn/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/es_PY.po b/addons/l10n_cn/i18n/es_PY.po index 009f44f6d57..126b356b566 100644 --- a/addons/l10n_cn/i18n/es_PY.po +++ b/addons/l10n_cn/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/gl.po b/addons/l10n_cn/i18n/gl.po index 67797c41899..b2a7a019a04 100644 --- a/addons/l10n_cn/i18n/gl.po +++ b/addons/l10n_cn/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/it.po b/addons/l10n_cn/i18n/it.po index 99d1fb27a8e..120f6fdceb4 100644 --- a/addons/l10n_cn/i18n/it.po +++ b/addons/l10n_cn/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/nb.po b/addons/l10n_cn/i18n/nb.po index 75f975765c8..45cc5df3a17 100644 --- a/addons/l10n_cn/i18n/nb.po +++ b/addons/l10n_cn/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/pt_BR.po b/addons/l10n_cn/i18n/pt_BR.po index 32841d93239..03eb5fd234d 100644 --- a/addons/l10n_cn/i18n/pt_BR.po +++ b/addons/l10n_cn/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/sl.po b/addons/l10n_cn/i18n/sl.po index 80ac0d76e97..d00ee1a1414 100644 --- a/addons/l10n_cn/i18n/sl.po +++ b/addons/l10n_cn/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/sr@latin.po b/addons/l10n_cn/i18n/sr@latin.po index dd61f04dbab..b82d2f75af0 100644 --- a/addons/l10n_cn/i18n/sr@latin.po +++ b/addons/l10n_cn/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/tr.po b/addons/l10n_cn/i18n/tr.po index c4dad3b9041..dbab265dc1f 100644 --- a/addons/l10n_cn/i18n/tr.po +++ b/addons/l10n_cn/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/zh_CN.po b/addons/l10n_cn/i18n/zh_CN.po index 34a12752891..e00abad966f 100644 --- a/addons/l10n_cn/i18n/zh_CN.po +++ b/addons/l10n_cn/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cn/i18n/zh_TW.po b/addons/l10n_cn/i18n/zh_TW.po index 5fe1892777c..c0bb94b9305 100644 --- a/addons/l10n_cn/i18n/zh_TW.po +++ b/addons/l10n_cn/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-30 05:19+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cn #: model:account.account.type,name:l10n_cn.user_type_profit_and_loss diff --git a/addons/l10n_cr/i18n/ar.po b/addons/l10n_cr/i18n/ar.po index 13f60dc6f85..d7b6e3a68c2 100644 --- a/addons/l10n_cr/i18n/ar.po +++ b/addons/l10n_cr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/ca.po b/addons/l10n_cr/i18n/ca.po index e84c3a5a257..45a70add382 100644 --- a/addons/l10n_cr/i18n/ca.po +++ b/addons/l10n_cr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/da.po b/addons/l10n_cr/i18n/da.po index 37ebb99b09a..25a972f699d 100644 --- a/addons/l10n_cr/i18n/da.po +++ b/addons/l10n_cr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es.po b/addons/l10n_cr/i18n/es.po index 2d38312ff0d..5ae14be60c4 100644 --- a/addons/l10n_cr/i18n/es.po +++ b/addons/l10n_cr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es_CR.po b/addons/l10n_cr/i18n/es_CR.po index 1c1f4210276..4f62ba735a7 100644 --- a/addons/l10n_cr/i18n/es_CR.po +++ b/addons/l10n_cr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/es_PY.po b/addons/l10n_cr/i18n/es_PY.po index 0a914c4bb7b..32390ac65eb 100644 --- a/addons/l10n_cr/i18n/es_PY.po +++ b/addons/l10n_cr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/fr.po b/addons/l10n_cr/i18n/fr.po index f61f5964685..507052d30c8 100644 --- a/addons/l10n_cr/i18n/fr.po +++ b/addons/l10n_cr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/gl.po b/addons/l10n_cr/i18n/gl.po index 1f74c218941..84be83e99e8 100644 --- a/addons/l10n_cr/i18n/gl.po +++ b/addons/l10n_cr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/it.po b/addons/l10n_cr/i18n/it.po index 4cabff98585..96fc417181c 100644 --- a/addons/l10n_cr/i18n/it.po +++ b/addons/l10n_cr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/mn.po b/addons/l10n_cr/i18n/mn.po index 31b0bcd0184..076780df1f7 100644 --- a/addons/l10n_cr/i18n/mn.po +++ b/addons/l10n_cr/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-20 05:29+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/pt.po b/addons/l10n_cr/i18n/pt.po index 1613fb825c6..fba438d2600 100644 --- a/addons/l10n_cr/i18n/pt.po +++ b/addons/l10n_cr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/pt_BR.po b/addons/l10n_cr/i18n/pt_BR.po index 96ee2e13efb..224ab6e1013 100644 --- a/addons/l10n_cr/i18n/pt_BR.po +++ b/addons/l10n_cr/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/sl.po b/addons/l10n_cr/i18n/sl.po index 7ca4e2ffe41..ff22a8a359d 100644 --- a/addons/l10n_cr/i18n/sl.po +++ b/addons/l10n_cr/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_cr/i18n/tr.po b/addons/l10n_cr/i18n/tr.po index 4d85b5fa0d4..d754cb962ed 100644 --- a/addons/l10n_cr/i18n/tr.po +++ b/addons/l10n_cr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_cr #: model:res.partner.title,name:l10n_cr.res_partner_title_ing diff --git a/addons/l10n_de/i18n/ar.po b/addons/l10n_de/i18n/ar.po index c5658062236..7296c495a16 100644 --- a/addons/l10n_de/i18n/ar.po +++ b/addons/l10n_de/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/bg.po b/addons/l10n_de/i18n/bg.po index 66c29f0e877..af5f6e35757 100644 --- a/addons/l10n_de/i18n/bg.po +++ b/addons/l10n_de/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/bs.po b/addons/l10n_de/i18n/bs.po index 93a8fd9b93f..03e19a4ba60 100644 --- a/addons/l10n_de/i18n/bs.po +++ b/addons/l10n_de/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ca.po b/addons/l10n_de/i18n/ca.po index 02537599ebe..7cbbbd9a27e 100644 --- a/addons/l10n_de/i18n/ca.po +++ b/addons/l10n_de/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/cs.po b/addons/l10n_de/i18n/cs.po index e2ac5e355df..794e89bda38 100644 --- a/addons/l10n_de/i18n/cs.po +++ b/addons/l10n_de/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/da.po b/addons/l10n_de/i18n/da.po index b57aad32139..03693103447 100644 --- a/addons/l10n_de/i18n/da.po +++ b/addons/l10n_de/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/de.po b/addons/l10n_de/i18n/de.po index 8255a38eb7a..448c310adde 100644 --- a/addons/l10n_de/i18n/de.po +++ b/addons/l10n_de/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es.po b/addons/l10n_de/i18n/es.po index e33ed4d1735..3f8871942fe 100644 --- a/addons/l10n_de/i18n/es.po +++ b/addons/l10n_de/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es_CR.po b/addons/l10n_de/i18n/es_CR.po index cea794fe529..1f1d7881198 100644 --- a/addons/l10n_de/i18n/es_CR.po +++ b/addons/l10n_de/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/es_PY.po b/addons/l10n_de/i18n/es_PY.po index 46f3f8cbe2c..16c84b832dc 100644 --- a/addons/l10n_de/i18n/es_PY.po +++ b/addons/l10n_de/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/et.po b/addons/l10n_de/i18n/et.po index 923c9a570fa..17366a929a3 100644 --- a/addons/l10n_de/i18n/et.po +++ b/addons/l10n_de/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/fr.po b/addons/l10n_de/i18n/fr.po index 67effb66aee..4b2850eced0 100644 --- a/addons/l10n_de/i18n/fr.po +++ b/addons/l10n_de/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/gl.po b/addons/l10n_de/i18n/gl.po index 09a93069c80..37e331e04eb 100644 --- a/addons/l10n_de/i18n/gl.po +++ b/addons/l10n_de/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/hr.po b/addons/l10n_de/i18n/hr.po index 706bb34f866..5daf81429e7 100644 --- a/addons/l10n_de/i18n/hr.po +++ b/addons/l10n_de/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/hu.po b/addons/l10n_de/i18n/hu.po index 1b46f5c07fc..d992bba6b3b 100644 --- a/addons/l10n_de/i18n/hu.po +++ b/addons/l10n_de/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/id.po b/addons/l10n_de/i18n/id.po index fbf1437751e..7b84eb55f1a 100644 --- a/addons/l10n_de/i18n/id.po +++ b/addons/l10n_de/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/it.po b/addons/l10n_de/i18n/it.po index f6b9cfee2ec..d9e594069f9 100644 --- a/addons/l10n_de/i18n/it.po +++ b/addons/l10n_de/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ko.po b/addons/l10n_de/i18n/ko.po index 9fdca3e920c..0042bef26a8 100644 --- a/addons/l10n_de/i18n/ko.po +++ b/addons/l10n_de/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/lt.po b/addons/l10n_de/i18n/lt.po index 7c28b6e725c..2dde738a664 100644 --- a/addons/l10n_de/i18n/lt.po +++ b/addons/l10n_de/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/nb.po b/addons/l10n_de/i18n/nb.po index e8e4453a07a..60f6fcea810 100644 --- a/addons/l10n_de/i18n/nb.po +++ b/addons/l10n_de/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/nl.po b/addons/l10n_de/i18n/nl.po index 2f31cf8261a..9615980908b 100644 --- a/addons/l10n_de/i18n/nl.po +++ b/addons/l10n_de/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pl.po b/addons/l10n_de/i18n/pl.po index 355a651ae0b..317cdf145fa 100644 --- a/addons/l10n_de/i18n/pl.po +++ b/addons/l10n_de/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pt.po b/addons/l10n_de/i18n/pt.po index 9ea8c642b10..0c229f1afea 100644 --- a/addons/l10n_de/i18n/pt.po +++ b/addons/l10n_de/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/pt_BR.po b/addons/l10n_de/i18n/pt_BR.po index 4d8e516d818..81b28f01f34 100644 --- a/addons/l10n_de/i18n/pt_BR.po +++ b/addons/l10n_de/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ro.po b/addons/l10n_de/i18n/ro.po index 6520534e219..7075ede169a 100644 --- a/addons/l10n_de/i18n/ro.po +++ b/addons/l10n_de/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/ru.po b/addons/l10n_de/i18n/ru.po index 9436d5a2ee1..2f8056c82b5 100644 --- a/addons/l10n_de/i18n/ru.po +++ b/addons/l10n_de/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sl.po b/addons/l10n_de/i18n/sl.po index 000f5c8f20d..10b0451df5d 100644 --- a/addons/l10n_de/i18n/sl.po +++ b/addons/l10n_de/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sr@latin.po b/addons/l10n_de/i18n/sr@latin.po index 1a844ff4d57..0dcd9fbef8b 100644 --- a/addons/l10n_de/i18n/sr@latin.po +++ b/addons/l10n_de/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/sv.po b/addons/l10n_de/i18n/sv.po index 68292ed33ab..f7b1d6622b2 100644 --- a/addons/l10n_de/i18n/sv.po +++ b/addons/l10n_de/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/tr.po b/addons/l10n_de/i18n/tr.po index 6edf16478d3..fc204c8b6c8 100644 --- a/addons/l10n_de/i18n/tr.po +++ b/addons/l10n_de/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/vi.po b/addons/l10n_de/i18n/vi.po index 4b235f40f82..a869e1e4f68 100644 --- a/addons/l10n_de/i18n/vi.po +++ b/addons/l10n_de/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/zh_CN.po b/addons/l10n_de/i18n/zh_CN.po index 923c9a570fa..17366a929a3 100644 --- a/addons/l10n_de/i18n/zh_CN.po +++ b/addons/l10n_de/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_de/i18n/zh_TW.po b/addons/l10n_de/i18n/zh_TW.po index 52f2aec9ffc..dd7825efe21 100644 --- a/addons/l10n_de/i18n/zh_TW.po +++ b/addons/l10n_de/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_de #: model:account.fiscal.position.template,name:l10n_de.fiscal_position_non_eu_sale_skr03 diff --git a/addons/l10n_ec/i18n/ar.po b/addons/l10n_ec/i18n/ar.po index d7c122323f8..80fab4ab091 100644 --- a/addons/l10n_ec/i18n/ar.po +++ b/addons/l10n_ec/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/ca.po b/addons/l10n_ec/i18n/ca.po index 7e58d6f70d8..618ecfe6d78 100644 --- a/addons/l10n_ec/i18n/ca.po +++ b/addons/l10n_ec/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/da.po b/addons/l10n_ec/i18n/da.po index 423664aac50..fd8cda515f4 100644 --- a/addons/l10n_ec/i18n/da.po +++ b/addons/l10n_ec/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es.po b/addons/l10n_ec/i18n/es.po index ff973d6a3e6..99a8f4ecb0b 100644 --- a/addons/l10n_ec/i18n/es.po +++ b/addons/l10n_ec/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_CR.po b/addons/l10n_ec/i18n/es_CR.po index bc8a4dea1ed..10374d8d3b2 100644 --- a/addons/l10n_ec/i18n/es_CR.po +++ b/addons/l10n_ec/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_EC.po b/addons/l10n_ec/i18n/es_EC.po index 8e6c65af0ec..b3f1e90476f 100644 --- a/addons/l10n_ec/i18n/es_EC.po +++ b/addons/l10n_ec/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/es_PY.po b/addons/l10n_ec/i18n/es_PY.po index 05bd586785e..e68b51dd7b3 100644 --- a/addons/l10n_ec/i18n/es_PY.po +++ b/addons/l10n_ec/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/fr.po b/addons/l10n_ec/i18n/fr.po index 51ce5fffaef..c98e6d41d3d 100644 --- a/addons/l10n_ec/i18n/fr.po +++ b/addons/l10n_ec/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/gl.po b/addons/l10n_ec/i18n/gl.po index d123314d3fd..28025d375fe 100644 --- a/addons/l10n_ec/i18n/gl.po +++ b/addons/l10n_ec/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/it.po b/addons/l10n_ec/i18n/it.po index 1c099aa2706..b4b351c8f46 100644 --- a/addons/l10n_ec/i18n/it.po +++ b/addons/l10n_ec/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/pt.po b/addons/l10n_ec/i18n/pt.po index 12e6bd20176..6edb7ef6b3a 100644 --- a/addons/l10n_ec/i18n/pt.po +++ b/addons/l10n_ec/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/pt_BR.po b/addons/l10n_ec/i18n/pt_BR.po index 4b4a09afb0c..b9a97c194d6 100644 --- a/addons/l10n_ec/i18n/pt_BR.po +++ b/addons/l10n_ec/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/sl.po b/addons/l10n_ec/i18n/sl.po index 2405b73dd72..c6ad5efb55d 100644 --- a/addons/l10n_ec/i18n/sl.po +++ b/addons/l10n_ec/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_ec/i18n/tr.po b/addons/l10n_ec/i18n/tr.po index a0324eccb6b..6aca53c818f 100644 --- a/addons/l10n_ec/i18n/tr.po +++ b/addons/l10n_ec/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ec #: model:account.account.type,name:l10n_ec.account_type_expense diff --git a/addons/l10n_es/i18n/ar.po b/addons/l10n_es/i18n/ar.po index 9471af4f2c4..837e876c6c1 100644 --- a/addons/l10n_es/i18n/ar.po +++ b/addons/l10n_es/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/ca.po b/addons/l10n_es/i18n/ca.po index 54315d2c4f9..fafd14ac9b6 100644 --- a/addons/l10n_es/i18n/ca.po +++ b/addons/l10n_es/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/da.po b/addons/l10n_es/i18n/da.po index d91cffd9dbc..48627e34ffa 100644 --- a/addons/l10n_es/i18n/da.po +++ b/addons/l10n_es/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/de.po b/addons/l10n_es/i18n/de.po index d21b528b7b8..0db1f666d15 100644 --- a/addons/l10n_es/i18n/de.po +++ b/addons/l10n_es/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es.po b/addons/l10n_es/i18n/es.po index 324d9cc099a..887e499a608 100644 --- a/addons/l10n_es/i18n/es.po +++ b/addons/l10n_es/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es_CR.po b/addons/l10n_es/i18n/es_CR.po index 2b0a81ec041..e6730eaaf96 100644 --- a/addons/l10n_es/i18n/es_CR.po +++ b/addons/l10n_es/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/es_PY.po b/addons/l10n_es/i18n/es_PY.po index a102d41aa34..414c14749dc 100644 --- a/addons/l10n_es/i18n/es_PY.po +++ b/addons/l10n_es/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/fr.po b/addons/l10n_es/i18n/fr.po index 6f2d419f52e..f09858460c1 100644 --- a/addons/l10n_es/i18n/fr.po +++ b/addons/l10n_es/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/gl.po b/addons/l10n_es/i18n/gl.po index ff90b64f142..454d4689806 100644 --- a/addons/l10n_es/i18n/gl.po +++ b/addons/l10n_es/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/hu.po b/addons/l10n_es/i18n/hu.po index a80ae317197..cf7de892978 100644 --- a/addons/l10n_es/i18n/hu.po +++ b/addons/l10n_es/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/it.po b/addons/l10n_es/i18n/it.po index 78da0f0a26a..ac58f81e302 100644 --- a/addons/l10n_es/i18n/it.po +++ b/addons/l10n_es/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/oc.po b/addons/l10n_es/i18n/oc.po index 6fcb144775d..bd5e859529e 100644 --- a/addons/l10n_es/i18n/oc.po +++ b/addons/l10n_es/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/pt.po b/addons/l10n_es/i18n/pt.po index adaba459b8b..3a037db27e6 100644 --- a/addons/l10n_es/i18n/pt.po +++ b/addons/l10n_es/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/pt_BR.po b/addons/l10n_es/i18n/pt_BR.po index 5d25a42f8dc..83a9f834b61 100644 --- a/addons/l10n_es/i18n/pt_BR.po +++ b/addons/l10n_es/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/sl.po b/addons/l10n_es/i18n/sl.po index 51b7b9586c6..9d93b89a167 100644 --- a/addons/l10n_es/i18n/sl.po +++ b/addons/l10n_es/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/sr@latin.po b/addons/l10n_es/i18n/sr@latin.po index 43bb75d7067..8b6348a2055 100644 --- a/addons/l10n_es/i18n/sr@latin.po +++ b/addons/l10n_es/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_es/i18n/tr.po b/addons/l10n_es/i18n/tr.po index d64948b594c..a84aa320d75 100644 --- a/addons/l10n_es/i18n/tr.po +++ b/addons/l10n_es/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_es #: model:account.account.type,name:l10n_es.inmo diff --git a/addons/l10n_fr/i18n/ar.po b/addons/l10n_fr/i18n/ar.po index a3c5a7ff0f8..5f9ed05b985 100644 --- a/addons/l10n_fr/i18n/ar.po +++ b/addons/l10n_fr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/bg.po b/addons/l10n_fr/i18n/bg.po index 065e82242c6..df83ea4dd3a 100644 --- a/addons/l10n_fr/i18n/bg.po +++ b/addons/l10n_fr/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/bs.po b/addons/l10n_fr/i18n/bs.po index ad226cbf194..7ba9ac09550 100644 --- a/addons/l10n_fr/i18n/bs.po +++ b/addons/l10n_fr/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ca.po b/addons/l10n_fr/i18n/ca.po index acfa271d0b8..b36ebf2fc20 100644 --- a/addons/l10n_fr/i18n/ca.po +++ b/addons/l10n_fr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/cs.po b/addons/l10n_fr/i18n/cs.po index 0d4bce2c238..5113224c737 100644 --- a/addons/l10n_fr/i18n/cs.po +++ b/addons/l10n_fr/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/da.po b/addons/l10n_fr/i18n/da.po index c89adfbcbce..237e3b797d3 100644 --- a/addons/l10n_fr/i18n/da.po +++ b/addons/l10n_fr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/de.po b/addons/l10n_fr/i18n/de.po index 108f3e9aa51..1626c689e01 100644 --- a/addons/l10n_fr/i18n/de.po +++ b/addons/l10n_fr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es.po b/addons/l10n_fr/i18n/es.po index 0385c472595..f6c0337f868 100644 --- a/addons/l10n_fr/i18n/es.po +++ b/addons/l10n_fr/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_AR.po b/addons/l10n_fr/i18n/es_AR.po index 2a6a0a5b9be..11ffaeecf2f 100644 --- a/addons/l10n_fr/i18n/es_AR.po +++ b/addons/l10n_fr/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_CR.po b/addons/l10n_fr/i18n/es_CR.po index 497a7b939de..d3a9f49f1e5 100644 --- a/addons/l10n_fr/i18n/es_CR.po +++ b/addons/l10n_fr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/es_PY.po b/addons/l10n_fr/i18n/es_PY.po index c89c2b09d54..4a9a88470ca 100644 --- a/addons/l10n_fr/i18n/es_PY.po +++ b/addons/l10n_fr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/et.po b/addons/l10n_fr/i18n/et.po index 870ea0aeb06..8dcfa187d06 100644 --- a/addons/l10n_fr/i18n/et.po +++ b/addons/l10n_fr/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/fr.po b/addons/l10n_fr/i18n/fr.po index 34567969e4a..d95f4c8abe9 100644 --- a/addons/l10n_fr/i18n/fr.po +++ b/addons/l10n_fr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/gl.po b/addons/l10n_fr/i18n/gl.po index fd9da9e3b2f..1b9c729a8b5 100644 --- a/addons/l10n_fr/i18n/gl.po +++ b/addons/l10n_fr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/hr.po b/addons/l10n_fr/i18n/hr.po index 8cb3c9731f0..6a94fcadfae 100644 --- a/addons/l10n_fr/i18n/hr.po +++ b/addons/l10n_fr/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/hu.po b/addons/l10n_fr/i18n/hu.po index 8c7e2b48dc7..b7896fbc586 100644 --- a/addons/l10n_fr/i18n/hu.po +++ b/addons/l10n_fr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/id.po b/addons/l10n_fr/i18n/id.po index 955d37c8c95..08d4dfd2035 100644 --- a/addons/l10n_fr/i18n/id.po +++ b/addons/l10n_fr/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/it.po b/addons/l10n_fr/i18n/it.po index 9e0333f9754..b5ada868ad9 100644 --- a/addons/l10n_fr/i18n/it.po +++ b/addons/l10n_fr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ko.po b/addons/l10n_fr/i18n/ko.po index e29b0472970..4e8b67ee17a 100644 --- a/addons/l10n_fr/i18n/ko.po +++ b/addons/l10n_fr/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/lt.po b/addons/l10n_fr/i18n/lt.po index 9959a327760..ffa424aa9e4 100644 --- a/addons/l10n_fr/i18n/lt.po +++ b/addons/l10n_fr/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/nl.po b/addons/l10n_fr/i18n/nl.po index 750a78db539..d27ea8595d3 100644 --- a/addons/l10n_fr/i18n/nl.po +++ b/addons/l10n_fr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/nl_BE.po b/addons/l10n_fr/i18n/nl_BE.po index 7b416197727..012157b6540 100644 --- a/addons/l10n_fr/i18n/nl_BE.po +++ b/addons/l10n_fr/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/oc.po b/addons/l10n_fr/i18n/oc.po index 64829a8a901..e3019c9660a 100644 --- a/addons/l10n_fr/i18n/oc.po +++ b/addons/l10n_fr/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pl.po b/addons/l10n_fr/i18n/pl.po index 1c9b56d2a59..f85dee920c3 100644 --- a/addons/l10n_fr/i18n/pl.po +++ b/addons/l10n_fr/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pt.po b/addons/l10n_fr/i18n/pt.po index 16bb00a0643..f0602221eb4 100644 --- a/addons/l10n_fr/i18n/pt.po +++ b/addons/l10n_fr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/pt_BR.po b/addons/l10n_fr/i18n/pt_BR.po index 9003702348a..310a2e71731 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ro.po b/addons/l10n_fr/i18n/ro.po index 783afe1e0eb..846441eb62a 100644 --- a/addons/l10n_fr/i18n/ro.po +++ b/addons/l10n_fr/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/ru.po b/addons/l10n_fr/i18n/ru.po index 35833300f90..f87e4b1cbda 100644 --- a/addons/l10n_fr/i18n/ru.po +++ b/addons/l10n_fr/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sl.po b/addons/l10n_fr/i18n/sl.po index ee80e273b63..942b63a8dc4 100644 --- a/addons/l10n_fr/i18n/sl.po +++ b/addons/l10n_fr/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sq.po b/addons/l10n_fr/i18n/sq.po index 4b524337f42..a1c463609b1 100644 --- a/addons/l10n_fr/i18n/sq.po +++ b/addons/l10n_fr/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sr@latin.po b/addons/l10n_fr/i18n/sr@latin.po index 9979554200c..eef131ba232 100644 --- a/addons/l10n_fr/i18n/sr@latin.po +++ b/addons/l10n_fr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/sv.po b/addons/l10n_fr/i18n/sv.po index cf4ff9c0dcf..949820d4a8e 100644 --- a/addons/l10n_fr/i18n/sv.po +++ b/addons/l10n_fr/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/tlh.po b/addons/l10n_fr/i18n/tlh.po index 4dd31743a9d..1457c51df45 100644 --- a/addons/l10n_fr/i18n/tlh.po +++ b/addons/l10n_fr/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/tr.po b/addons/l10n_fr/i18n/tr.po index 6dddaa7a55c..5e69ea2fd80 100644 --- a/addons/l10n_fr/i18n/tr.po +++ b/addons/l10n_fr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/uk.po b/addons/l10n_fr/i18n/uk.po index bbdf886df14..037dc6a9764 100644 --- a/addons/l10n_fr/i18n/uk.po +++ b/addons/l10n_fr/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/vi.po b/addons/l10n_fr/i18n/vi.po index 274057fd3eb..20f49a4a721 100644 --- a/addons/l10n_fr/i18n/vi.po +++ b/addons/l10n_fr/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/zh_CN.po b/addons/l10n_fr/i18n/zh_CN.po index 95d90fe4540..73da4e65e3c 100644 --- a/addons/l10n_fr/i18n/zh_CN.po +++ b/addons/l10n_fr/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr/i18n/zh_TW.po b/addons/l10n_fr/i18n/zh_TW.po index 88332278a3c..76352fc5991 100644 --- a/addons/l10n_fr/i18n/zh_TW.po +++ b/addons/l10n_fr/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr #: constraint:res.company:0 diff --git a/addons/l10n_fr_rib/i18n/ar.po b/addons/l10n_fr_rib/i18n/ar.po index f022d49065b..52de3e8bfbf 100644 --- a/addons/l10n_fr_rib/i18n/ar.po +++ b/addons/l10n_fr_rib/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es.po b/addons/l10n_fr_rib/i18n/es.po index 23d90dfadad..2c7e99cab22 100644 --- a/addons/l10n_fr_rib/i18n/es.po +++ b/addons/l10n_fr_rib/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/es_CR.po b/addons/l10n_fr_rib/i18n/es_CR.po index 76aaa1707ef..93a2fb85c79 100644 --- a/addons/l10n_fr_rib/i18n/es_CR.po +++ b/addons/l10n_fr_rib/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/fr.po b/addons/l10n_fr_rib/i18n/fr.po index 6288ae5651b..8c5734ac1c1 100644 --- a/addons/l10n_fr_rib/i18n/fr.po +++ b/addons/l10n_fr_rib/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt.po b/addons/l10n_fr_rib/i18n/pt.po index 9a37c1535d1..3c9020e249d 100644 --- a/addons/l10n_fr_rib/i18n/pt.po +++ b/addons/l10n_fr_rib/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/pt_BR.po b/addons/l10n_fr_rib/i18n/pt_BR.po index 01b70ec2c7f..c4d7f74f2bd 100644 --- a/addons/l10n_fr_rib/i18n/pt_BR.po +++ b/addons/l10n_fr_rib/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/sl.po b/addons/l10n_fr_rib/i18n/sl.po index fd6b9b764d2..d7e0cc4586a 100644 --- a/addons/l10n_fr_rib/i18n/sl.po +++ b/addons/l10n_fr_rib/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_fr_rib/i18n/tr.po b/addons/l10n_fr_rib/i18n/tr.po index 2277d3247f7..8d572c4f298 100644 --- a/addons/l10n_fr_rib/i18n/tr.po +++ b/addons/l10n_fr_rib/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_gr/i18n/ar.po b/addons/l10n_gr/i18n/ar.po index 146027e7291..16ac93edb1f 100644 --- a/addons/l10n_gr/i18n/ar.po +++ b/addons/l10n_gr/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/ca.po b/addons/l10n_gr/i18n/ca.po index ffa46dda7e6..508e803d052 100644 --- a/addons/l10n_gr/i18n/ca.po +++ b/addons/l10n_gr/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/da.po b/addons/l10n_gr/i18n/da.po index 71a079dda2a..e8858e93b25 100644 --- a/addons/l10n_gr/i18n/da.po +++ b/addons/l10n_gr/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/de.po b/addons/l10n_gr/i18n/de.po index 54506c71cb6..4c6cb257d6b 100644 --- a/addons/l10n_gr/i18n/de.po +++ b/addons/l10n_gr/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/el.po b/addons/l10n_gr/i18n/el.po index 7c7cc9e3599..fb2cdfdfef5 100644 --- a/addons/l10n_gr/i18n/el.po +++ b/addons/l10n_gr/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es.po b/addons/l10n_gr/i18n/es.po index e5969098602..5a1c0f26257 100644 --- a/addons/l10n_gr/i18n/es.po +++ b/addons/l10n_gr/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es_CR.po b/addons/l10n_gr/i18n/es_CR.po index 8f712d8601a..8f105016335 100644 --- a/addons/l10n_gr/i18n/es_CR.po +++ b/addons/l10n_gr/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/es_PY.po b/addons/l10n_gr/i18n/es_PY.po index 1a2b7472b24..333ccff7fb6 100644 --- a/addons/l10n_gr/i18n/es_PY.po +++ b/addons/l10n_gr/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/fr.po b/addons/l10n_gr/i18n/fr.po index 5750fe513d4..0425a7e8382 100644 --- a/addons/l10n_gr/i18n/fr.po +++ b/addons/l10n_gr/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/gl.po b/addons/l10n_gr/i18n/gl.po index 11bd7a8ef09..59f8976e9aa 100644 --- a/addons/l10n_gr/i18n/gl.po +++ b/addons/l10n_gr/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/hu.po b/addons/l10n_gr/i18n/hu.po index 3335d412d8a..23a15285137 100644 --- a/addons/l10n_gr/i18n/hu.po +++ b/addons/l10n_gr/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/it.po b/addons/l10n_gr/i18n/it.po index 7e24c10fb92..df4992ba948 100644 --- a/addons/l10n_gr/i18n/it.po +++ b/addons/l10n_gr/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/nl.po b/addons/l10n_gr/i18n/nl.po index 8ca235a875b..23b8416c352 100644 --- a/addons/l10n_gr/i18n/nl.po +++ b/addons/l10n_gr/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/pt.po b/addons/l10n_gr/i18n/pt.po index 9df12732d63..2a4b4a6f738 100644 --- a/addons/l10n_gr/i18n/pt.po +++ b/addons/l10n_gr/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/pt_BR.po b/addons/l10n_gr/i18n/pt_BR.po index 903878e91fd..c16b96f5e8f 100644 --- a/addons/l10n_gr/i18n/pt_BR.po +++ b/addons/l10n_gr/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/sl.po b/addons/l10n_gr/i18n/sl.po index 2b556a56ed1..6f2149824d6 100644 --- a/addons/l10n_gr/i18n/sl.po +++ b/addons/l10n_gr/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/sr@latin.po b/addons/l10n_gr/i18n/sr@latin.po index 6e4ca9b758c..0d514a1246a 100644 --- a/addons/l10n_gr/i18n/sr@latin.po +++ b/addons/l10n_gr/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gr/i18n/tr.po b/addons/l10n_gr/i18n/tr.po index ac46757e17a..1d0476b648f 100644 --- a/addons/l10n_gr/i18n/tr.po +++ b/addons/l10n_gr/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gr #: model:account.account.type,name:l10n_gr.account_type_cash diff --git a/addons/l10n_gt/i18n/ar.po b/addons/l10n_gt/i18n/ar.po index 4d7b4fee02e..0203834fbf4 100644 --- a/addons/l10n_gt/i18n/ar.po +++ b/addons/l10n_gt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/ca.po b/addons/l10n_gt/i18n/ca.po index a3b963a73ad..1d0eae3f125 100644 --- a/addons/l10n_gt/i18n/ca.po +++ b/addons/l10n_gt/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/da.po b/addons/l10n_gt/i18n/da.po index 2c02e683316..034565dee38 100644 --- a/addons/l10n_gt/i18n/da.po +++ b/addons/l10n_gt/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es.po b/addons/l10n_gt/i18n/es.po index 58202e13990..9d77231d694 100644 --- a/addons/l10n_gt/i18n/es.po +++ b/addons/l10n_gt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es_CR.po b/addons/l10n_gt/i18n/es_CR.po index ddc88ee2489..5c63f32989e 100644 --- a/addons/l10n_gt/i18n/es_CR.po +++ b/addons/l10n_gt/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/es_PY.po b/addons/l10n_gt/i18n/es_PY.po index 587b6145dec..2a77073e091 100644 --- a/addons/l10n_gt/i18n/es_PY.po +++ b/addons/l10n_gt/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/fr.po b/addons/l10n_gt/i18n/fr.po index ec26dbf06cf..22bff467523 100644 --- a/addons/l10n_gt/i18n/fr.po +++ b/addons/l10n_gt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/gl.po b/addons/l10n_gt/i18n/gl.po index e972b8e62ce..6c4656071e7 100644 --- a/addons/l10n_gt/i18n/gl.po +++ b/addons/l10n_gt/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/hu.po b/addons/l10n_gt/i18n/hu.po index 420f2e5daef..fc6dfa77c63 100644 --- a/addons/l10n_gt/i18n/hu.po +++ b/addons/l10n_gt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/it.po b/addons/l10n_gt/i18n/it.po index cd7ff2d7fdd..fb249f0809c 100644 --- a/addons/l10n_gt/i18n/it.po +++ b/addons/l10n_gt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/oc.po b/addons/l10n_gt/i18n/oc.po index 4a3e1991b20..97c8ad1abce 100644 --- a/addons/l10n_gt/i18n/oc.po +++ b/addons/l10n_gt/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/pt.po b/addons/l10n_gt/i18n/pt.po index 1fc0f8e9bf2..169ce980b9a 100644 --- a/addons/l10n_gt/i18n/pt.po +++ b/addons/l10n_gt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/pt_BR.po b/addons/l10n_gt/i18n/pt_BR.po index aecc961f5e9..f7cb5671d3e 100644 --- a/addons/l10n_gt/i18n/pt_BR.po +++ b/addons/l10n_gt/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/sl.po b/addons/l10n_gt/i18n/sl.po index e345f331816..721bcf3bb69 100644 --- a/addons/l10n_gt/i18n/sl.po +++ b/addons/l10n_gt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/sr@latin.po b/addons/l10n_gt/i18n/sr@latin.po index 903880e0627..6f6412997aa 100644 --- a/addons/l10n_gt/i18n/sr@latin.po +++ b/addons/l10n_gt/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_gt/i18n/tr.po b/addons/l10n_gt/i18n/tr.po index 3aaaef2c901..43c1e2ee963 100644 --- a/addons/l10n_gt/i18n/tr.po +++ b/addons/l10n_gt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_gt #: model:account.account.type,name:l10n_gt.cuenta_vista diff --git a/addons/l10n_hn/i18n/ca.po b/addons/l10n_hn/i18n/ca.po index 186443e9282..492a38c90b6 100644 --- a/addons/l10n_hn/i18n/ca.po +++ b/addons/l10n_hn/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/es.po b/addons/l10n_hn/i18n/es.po index aa829f9b9c5..1840eb9e492 100644 --- a/addons/l10n_hn/i18n/es.po +++ b/addons/l10n_hn/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/es_CR.po b/addons/l10n_hn/i18n/es_CR.po index 4b9cd6987c6..dc7466664b0 100644 --- a/addons/l10n_hn/i18n/es_CR.po +++ b/addons/l10n_hn/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/fr.po b/addons/l10n_hn/i18n/fr.po index 2682fa119a1..988c493b7ed 100644 --- a/addons/l10n_hn/i18n/fr.po +++ b/addons/l10n_hn/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/gl.po b/addons/l10n_hn/i18n/gl.po index cbf10a2f31f..e5996aacbb0 100644 --- a/addons/l10n_hn/i18n/gl.po +++ b/addons/l10n_hn/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/hu.po b/addons/l10n_hn/i18n/hu.po index 4c1c5ca9fba..063ec3b2da7 100644 --- a/addons/l10n_hn/i18n/hu.po +++ b/addons/l10n_hn/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/it.po b/addons/l10n_hn/i18n/it.po index 46cdab925aa..046025cb2b9 100644 --- a/addons/l10n_hn/i18n/it.po +++ b/addons/l10n_hn/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/pt.po b/addons/l10n_hn/i18n/pt.po index a693c92bda4..7063d1d5bcb 100644 --- a/addons/l10n_hn/i18n/pt.po +++ b/addons/l10n_hn/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/pt_BR.po b/addons/l10n_hn/i18n/pt_BR.po index ebf89d7e4e4..5cbdb681c00 100644 --- a/addons/l10n_hn/i18n/pt_BR.po +++ b/addons/l10n_hn/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/sl.po b/addons/l10n_hn/i18n/sl.po index 8527f398f7a..54ba2ec4d35 100644 --- a/addons/l10n_hn/i18n/sl.po +++ b/addons/l10n_hn/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/sr@latin.po b/addons/l10n_hn/i18n/sr@latin.po index 6ced81bf396..2ef458f5b10 100644 --- a/addons/l10n_hn/i18n/sr@latin.po +++ b/addons/l10n_hn/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_hn/i18n/tr.po b/addons/l10n_hn/i18n/tr.po index a948357c1cc..3f0b4e69dee 100644 --- a/addons/l10n_hn/i18n/tr.po +++ b/addons/l10n_hn/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_hn #: model:account.account.type,name:l10n_hn.cuenta_vista diff --git a/addons/l10n_in/i18n/ar.po b/addons/l10n_in/i18n/ar.po index 96341be24f4..2bc2bcf9053 100644 --- a/addons/l10n_in/i18n/ar.po +++ b/addons/l10n_in/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/br.po b/addons/l10n_in/i18n/br.po index f54d05d3593..2f9287f8cb9 100644 --- a/addons/l10n_in/i18n/br.po +++ b/addons/l10n_in/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/ca.po b/addons/l10n_in/i18n/ca.po index 9eac9b4093f..d35f196b6d8 100644 --- a/addons/l10n_in/i18n/ca.po +++ b/addons/l10n_in/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/da.po b/addons/l10n_in/i18n/da.po index 292d3d502a2..04ad6bdcff9 100644 --- a/addons/l10n_in/i18n/da.po +++ b/addons/l10n_in/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/de.po b/addons/l10n_in/i18n/de.po index 62a24f4187e..c1c62fdab85 100644 --- a/addons/l10n_in/i18n/de.po +++ b/addons/l10n_in/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es.po b/addons/l10n_in/i18n/es.po index 55358fc99fa..91b253b28ec 100644 --- a/addons/l10n_in/i18n/es.po +++ b/addons/l10n_in/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es_CR.po b/addons/l10n_in/i18n/es_CR.po index 2f294a8841d..c2e2133361c 100644 --- a/addons/l10n_in/i18n/es_CR.po +++ b/addons/l10n_in/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/es_PY.po b/addons/l10n_in/i18n/es_PY.po index 4e7a1f9c70b..c325e7f1fdb 100644 --- a/addons/l10n_in/i18n/es_PY.po +++ b/addons/l10n_in/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/et.po b/addons/l10n_in/i18n/et.po index 943fbc4aa2e..40e20a19d45 100644 --- a/addons/l10n_in/i18n/et.po +++ b/addons/l10n_in/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/fr.po b/addons/l10n_in/i18n/fr.po index 75530b7095b..3964a7bff75 100644 --- a/addons/l10n_in/i18n/fr.po +++ b/addons/l10n_in/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/gl.po b/addons/l10n_in/i18n/gl.po index 324a6da3746..8ca5c5a6778 100644 --- a/addons/l10n_in/i18n/gl.po +++ b/addons/l10n_in/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/hu.po b/addons/l10n_in/i18n/hu.po index 85c5cd6e17b..2f944b79c2d 100644 --- a/addons/l10n_in/i18n/hu.po +++ b/addons/l10n_in/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/it.po b/addons/l10n_in/i18n/it.po index 84b0fb2e03a..067fdb31432 100644 --- a/addons/l10n_in/i18n/it.po +++ b/addons/l10n_in/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/oc.po b/addons/l10n_in/i18n/oc.po index ab83a50b5fa..b42dab60977 100644 --- a/addons/l10n_in/i18n/oc.po +++ b/addons/l10n_in/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/pt.po b/addons/l10n_in/i18n/pt.po index fd9c834a591..98d86708a66 100644 --- a/addons/l10n_in/i18n/pt.po +++ b/addons/l10n_in/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/pt_BR.po b/addons/l10n_in/i18n/pt_BR.po index 685567d06c2..c5b3c6f9c6b 100644 --- a/addons/l10n_in/i18n/pt_BR.po +++ b/addons/l10n_in/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/ru.po b/addons/l10n_in/i18n/ru.po index 52bdec34364..42975a2344d 100644 --- a/addons/l10n_in/i18n/ru.po +++ b/addons/l10n_in/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sl.po b/addons/l10n_in/i18n/sl.po index 16ddb665e11..8fb33030710 100644 --- a/addons/l10n_in/i18n/sl.po +++ b/addons/l10n_in/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sr@latin.po b/addons/l10n_in/i18n/sr@latin.po index 445a6e1bc79..e0dbbb05919 100644 --- a/addons/l10n_in/i18n/sr@latin.po +++ b/addons/l10n_in/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/sv.po b/addons/l10n_in/i18n/sv.po index 07c18edceeb..364018bc07f 100644 --- a/addons/l10n_in/i18n/sv.po +++ b/addons/l10n_in/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in/i18n/tr.po b/addons/l10n_in/i18n/tr.po index c5d5109981b..768e0590e98 100644 --- a/addons/l10n_in/i18n/tr.po +++ b/addons/l10n_in/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in #: model:account.account.type,name:l10n_in.account_type_asset_view diff --git a/addons/l10n_in_hr_payroll/i18n/bn.po b/addons/l10n_in_hr_payroll/i18n/bn.po index 7dd5a6c1e82..c374d22e2ca 100644 --- a/addons/l10n_in_hr_payroll/i18n/bn.po +++ b/addons/l10n_in_hr_payroll/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/es.po b/addons/l10n_in_hr_payroll/i18n/es.po index b047f5e7f42..769ae89a813 100644 --- a/addons/l10n_in_hr_payroll/i18n/es.po +++ b/addons/l10n_in_hr_payroll/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/gu.po b/addons/l10n_in_hr_payroll/i18n/gu.po index 47522e625c0..0795aca8c1b 100644 --- a/addons/l10n_in_hr_payroll/i18n/gu.po +++ b/addons/l10n_in_hr_payroll/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/hi.po b/addons/l10n_in_hr_payroll/i18n/hi.po index 32f10fc1a97..0459cba6894 100644 --- a/addons/l10n_in_hr_payroll/i18n/hi.po +++ b/addons/l10n_in_hr_payroll/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pl.po b/addons/l10n_in_hr_payroll/i18n/pl.po index 2e140d0050b..0c75cbb6052 100644 --- a/addons/l10n_in_hr_payroll/i18n/pl.po +++ b/addons/l10n_in_hr_payroll/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt.po b/addons/l10n_in_hr_payroll/i18n/pt.po index 922b1021132..b5266305d03 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt.po +++ b/addons/l10n_in_hr_payroll/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-05 05:23+0000\n" -"X-Generator: Launchpad (build 16468)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/pt_BR.po b/addons/l10n_in_hr_payroll/i18n/pt_BR.po index c1a4b949eeb..4b25d270b51 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_in_hr_payroll/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/sl.po b/addons/l10n_in_hr_payroll/i18n/sl.po index 1e9014ba99d..664c07be23c 100644 --- a/addons/l10n_in_hr_payroll/i18n/sl.po +++ b/addons/l10n_in_hr_payroll/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/ta.po b/addons/l10n_in_hr_payroll/i18n/ta.po index 7c491d1ca67..7145741ecfc 100644 --- a/addons/l10n_in_hr_payroll/i18n/ta.po +++ b/addons/l10n_in_hr_payroll/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/te.po b/addons/l10n_in_hr_payroll/i18n/te.po index adfa3be60d5..3113187c37f 100644 --- a/addons/l10n_in_hr_payroll/i18n/te.po +++ b/addons/l10n_in_hr_payroll/i18n/te.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/tr.po b/addons/l10n_in_hr_payroll/i18n/tr.po index 8ba0e3a97d3..f2f17a0e45e 100644 --- a/addons/l10n_in_hr_payroll/i18n/tr.po +++ b/addons/l10n_in_hr_payroll/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_it/i18n/ar.po b/addons/l10n_it/i18n/ar.po index 2958a4b4816..21ad251073c 100644 --- a/addons/l10n_it/i18n/ar.po +++ b/addons/l10n_it/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/ca.po b/addons/l10n_it/i18n/ca.po index 93cbec561f2..f36dfa8432d 100644 --- a/addons/l10n_it/i18n/ca.po +++ b/addons/l10n_it/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/da.po b/addons/l10n_it/i18n/da.po index a7c7cbc6d37..87e4d8a32b1 100644 --- a/addons/l10n_it/i18n/da.po +++ b/addons/l10n_it/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es.po b/addons/l10n_it/i18n/es.po index 4fa2ce97cbe..288fb304c66 100644 --- a/addons/l10n_it/i18n/es.po +++ b/addons/l10n_it/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es_CR.po b/addons/l10n_it/i18n/es_CR.po index 1419cc57721..98006046a67 100644 --- a/addons/l10n_it/i18n/es_CR.po +++ b/addons/l10n_it/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/es_PY.po b/addons/l10n_it/i18n/es_PY.po index beff73fbcb1..344fa2c408e 100644 --- a/addons/l10n_it/i18n/es_PY.po +++ b/addons/l10n_it/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/fr.po b/addons/l10n_it/i18n/fr.po index ffe5f209c33..46f91bf0d26 100644 --- a/addons/l10n_it/i18n/fr.po +++ b/addons/l10n_it/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/gl.po b/addons/l10n_it/i18n/gl.po index 8f9d3fa259d..bc96b75b202 100644 --- a/addons/l10n_it/i18n/gl.po +++ b/addons/l10n_it/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/it.po b/addons/l10n_it/i18n/it.po index d93b7753748..d66636577fc 100644 --- a/addons/l10n_it/i18n/it.po +++ b/addons/l10n_it/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/pt_BR.po b/addons/l10n_it/i18n/pt_BR.po index e79adc36a68..755613a14bf 100644 --- a/addons/l10n_it/i18n/pt_BR.po +++ b/addons/l10n_it/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/sl.po b/addons/l10n_it/i18n/sl.po index 0f37622dc6a..2ff6c1261ba 100644 --- a/addons/l10n_it/i18n/sl.po +++ b/addons/l10n_it/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_it/i18n/tr.po b/addons/l10n_it/i18n/tr.po index c6e5fe37e21..36c0fde0f53 100644 --- a/addons/l10n_it/i18n/tr.po +++ b/addons/l10n_it/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_it #: model:account.account.type,name:l10n_it.account_type_cash diff --git a/addons/l10n_lu/i18n/ar.po b/addons/l10n_lu/i18n/ar.po index 11b065dc6ab..4ee83905e29 100644 --- a/addons/l10n_lu/i18n/ar.po +++ b/addons/l10n_lu/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/bg.po b/addons/l10n_lu/i18n/bg.po index 862b0c6575d..9da39185cb8 100644 --- a/addons/l10n_lu/i18n/bg.po +++ b/addons/l10n_lu/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/bs.po b/addons/l10n_lu/i18n/bs.po index f883a3cad48..1b43f37b617 100644 --- a/addons/l10n_lu/i18n/bs.po +++ b/addons/l10n_lu/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ca.po b/addons/l10n_lu/i18n/ca.po index d7a87f2a2a9..6ddb4d4fff1 100644 --- a/addons/l10n_lu/i18n/ca.po +++ b/addons/l10n_lu/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/cs.po b/addons/l10n_lu/i18n/cs.po index 52cde76e64d..7ee3a39b134 100644 --- a/addons/l10n_lu/i18n/cs.po +++ b/addons/l10n_lu/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/da.po b/addons/l10n_lu/i18n/da.po index c497e98dd7c..71e745be33b 100644 --- a/addons/l10n_lu/i18n/da.po +++ b/addons/l10n_lu/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/de.po b/addons/l10n_lu/i18n/de.po index 60620f0bae3..93794a501bb 100644 --- a/addons/l10n_lu/i18n/de.po +++ b/addons/l10n_lu/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es.po b/addons/l10n_lu/i18n/es.po index 179a9a2c7ee..a640cc59d7a 100644 --- a/addons/l10n_lu/i18n/es.po +++ b/addons/l10n_lu/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_AR.po b/addons/l10n_lu/i18n/es_AR.po index 42939747339..0a0b888f3de 100644 --- a/addons/l10n_lu/i18n/es_AR.po +++ b/addons/l10n_lu/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_CR.po b/addons/l10n_lu/i18n/es_CR.po index 7c435191cd0..3e69a61d24b 100644 --- a/addons/l10n_lu/i18n/es_CR.po +++ b/addons/l10n_lu/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/es_PY.po b/addons/l10n_lu/i18n/es_PY.po index 35530f68472..5a80e0bc8e1 100644 --- a/addons/l10n_lu/i18n/es_PY.po +++ b/addons/l10n_lu/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/et.po b/addons/l10n_lu/i18n/et.po index e56f59f381e..087c5afe5e7 100644 --- a/addons/l10n_lu/i18n/et.po +++ b/addons/l10n_lu/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/fr.po b/addons/l10n_lu/i18n/fr.po index 849b3458ee3..61a5ebd4f73 100644 --- a/addons/l10n_lu/i18n/fr.po +++ b/addons/l10n_lu/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/gl.po b/addons/l10n_lu/i18n/gl.po index 46ce5a91088..b0b3c7f4dde 100644 --- a/addons/l10n_lu/i18n/gl.po +++ b/addons/l10n_lu/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/hr.po b/addons/l10n_lu/i18n/hr.po index 20004d6943d..060e5dc8285 100644 --- a/addons/l10n_lu/i18n/hr.po +++ b/addons/l10n_lu/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/hu.po b/addons/l10n_lu/i18n/hu.po index 07ee6a35dc0..b5c1ce4d741 100644 --- a/addons/l10n_lu/i18n/hu.po +++ b/addons/l10n_lu/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/id.po b/addons/l10n_lu/i18n/id.po index 653315589c7..d64995bb0a5 100644 --- a/addons/l10n_lu/i18n/id.po +++ b/addons/l10n_lu/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/it.po b/addons/l10n_lu/i18n/it.po index 2735229e4b4..b16290d83cc 100644 --- a/addons/l10n_lu/i18n/it.po +++ b/addons/l10n_lu/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ko.po b/addons/l10n_lu/i18n/ko.po index 030dd76d538..98680e28ee9 100644 --- a/addons/l10n_lu/i18n/ko.po +++ b/addons/l10n_lu/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/lt.po b/addons/l10n_lu/i18n/lt.po index f5e65ee2afd..999bb6e70d2 100644 --- a/addons/l10n_lu/i18n/lt.po +++ b/addons/l10n_lu/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/nl.po b/addons/l10n_lu/i18n/nl.po index ac3c554e138..7acf97be16e 100644 --- a/addons/l10n_lu/i18n/nl.po +++ b/addons/l10n_lu/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/nl_BE.po b/addons/l10n_lu/i18n/nl_BE.po index 896e660652d..93f5233831b 100644 --- a/addons/l10n_lu/i18n/nl_BE.po +++ b/addons/l10n_lu/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/oc.po b/addons/l10n_lu/i18n/oc.po index 7c4e039dbcc..dcc93ae4c40 100644 --- a/addons/l10n_lu/i18n/oc.po +++ b/addons/l10n_lu/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pl.po b/addons/l10n_lu/i18n/pl.po index e5d95d65add..dbf8897115e 100644 --- a/addons/l10n_lu/i18n/pl.po +++ b/addons/l10n_lu/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pt.po b/addons/l10n_lu/i18n/pt.po index 3cb6a5abe6d..cc49f5f3484 100644 --- a/addons/l10n_lu/i18n/pt.po +++ b/addons/l10n_lu/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/pt_BR.po b/addons/l10n_lu/i18n/pt_BR.po index 5dee0bf92a0..93cbcfbceb8 100644 --- a/addons/l10n_lu/i18n/pt_BR.po +++ b/addons/l10n_lu/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ro.po b/addons/l10n_lu/i18n/ro.po index 0ddc7f43ed2..8605fc8f7b1 100644 --- a/addons/l10n_lu/i18n/ro.po +++ b/addons/l10n_lu/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/ru.po b/addons/l10n_lu/i18n/ru.po index 6532e1e0456..ecfc452a9d4 100644 --- a/addons/l10n_lu/i18n/ru.po +++ b/addons/l10n_lu/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sl.po b/addons/l10n_lu/i18n/sl.po index c325aeb9a54..6b3642d29fd 100644 --- a/addons/l10n_lu/i18n/sl.po +++ b/addons/l10n_lu/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sq.po b/addons/l10n_lu/i18n/sq.po index ab3dd1b9aa6..844222f9585 100644 --- a/addons/l10n_lu/i18n/sq.po +++ b/addons/l10n_lu/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sr@latin.po b/addons/l10n_lu/i18n/sr@latin.po index ceac0363cd5..be58304e628 100644 --- a/addons/l10n_lu/i18n/sr@latin.po +++ b/addons/l10n_lu/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/sv.po b/addons/l10n_lu/i18n/sv.po index 8326625c017..84f9ba0643d 100644 --- a/addons/l10n_lu/i18n/sv.po +++ b/addons/l10n_lu/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/tlh.po b/addons/l10n_lu/i18n/tlh.po index 17d8f9a1d23..d290bc1686f 100644 --- a/addons/l10n_lu/i18n/tlh.po +++ b/addons/l10n_lu/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/tr.po b/addons/l10n_lu/i18n/tr.po index 543155dcaaf..0e23032dffa 100644 --- a/addons/l10n_lu/i18n/tr.po +++ b/addons/l10n_lu/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/uk.po b/addons/l10n_lu/i18n/uk.po index daf155b2f29..ec051da70dc 100644 --- a/addons/l10n_lu/i18n/uk.po +++ b/addons/l10n_lu/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/vi.po b/addons/l10n_lu/i18n/vi.po index 0ba445693ea..1935fe95861 100644 --- a/addons/l10n_lu/i18n/vi.po +++ b/addons/l10n_lu/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/zh_CN.po b/addons/l10n_lu/i18n/zh_CN.po index 1525e7a8768..77f6d8d90da 100644 --- a/addons/l10n_lu/i18n/zh_CN.po +++ b/addons/l10n_lu/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_lu/i18n/zh_TW.po b/addons/l10n_lu/i18n/zh_TW.po index 530510cc18c..91f5607ef7a 100644 --- a/addons/l10n_lu/i18n/zh_TW.po +++ b/addons/l10n_lu/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_lu #: view:vat.declaration.report:0 diff --git a/addons/l10n_ma/i18n/ar.po b/addons/l10n_ma/i18n/ar.po index c42f7682e4e..525e3e40276 100644 --- a/addons/l10n_ma/i18n/ar.po +++ b/addons/l10n_ma/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/ca.po b/addons/l10n_ma/i18n/ca.po index c55b93655b4..6e7605c9bfe 100644 --- a/addons/l10n_ma/i18n/ca.po +++ b/addons/l10n_ma/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/da.po b/addons/l10n_ma/i18n/da.po index 7ebfaec3125..a71c87f7b9c 100644 --- a/addons/l10n_ma/i18n/da.po +++ b/addons/l10n_ma/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/de.po b/addons/l10n_ma/i18n/de.po index d208a007788..07d7ef41c8b 100644 --- a/addons/l10n_ma/i18n/de.po +++ b/addons/l10n_ma/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es.po b/addons/l10n_ma/i18n/es.po index d53b0c03e41..e223f1a7f5d 100644 --- a/addons/l10n_ma/i18n/es.po +++ b/addons/l10n_ma/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es_CR.po b/addons/l10n_ma/i18n/es_CR.po index 9156f38153a..e122ea206fe 100644 --- a/addons/l10n_ma/i18n/es_CR.po +++ b/addons/l10n_ma/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/es_PY.po b/addons/l10n_ma/i18n/es_PY.po index 64d8bd022a5..19dd60c0c3f 100644 --- a/addons/l10n_ma/i18n/es_PY.po +++ b/addons/l10n_ma/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/fr.po b/addons/l10n_ma/i18n/fr.po index ec818dd8e84..a0ef42ce42f 100644 --- a/addons/l10n_ma/i18n/fr.po +++ b/addons/l10n_ma/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:46+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/gl.po b/addons/l10n_ma/i18n/gl.po index 9a873b93993..67f61c342ae 100644 --- a/addons/l10n_ma/i18n/gl.po +++ b/addons/l10n_ma/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/hu.po b/addons/l10n_ma/i18n/hu.po index 790822d8aaf..f6dc9694fe6 100644 --- a/addons/l10n_ma/i18n/hu.po +++ b/addons/l10n_ma/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/it.po b/addons/l10n_ma/i18n/it.po index 492e73f5697..4960478c497 100644 --- a/addons/l10n_ma/i18n/it.po +++ b/addons/l10n_ma/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/pt.po b/addons/l10n_ma/i18n/pt.po index 769adf06baf..cbfe760546a 100644 --- a/addons/l10n_ma/i18n/pt.po +++ b/addons/l10n_ma/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/pt_BR.po b/addons/l10n_ma/i18n/pt_BR.po index 83de701db27..00bfe454f6d 100644 --- a/addons/l10n_ma/i18n/pt_BR.po +++ b/addons/l10n_ma/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/sl.po b/addons/l10n_ma/i18n/sl.po index ad6fca792bc..3fc5c155243 100644 --- a/addons/l10n_ma/i18n/sl.po +++ b/addons/l10n_ma/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/sr@latin.po b/addons/l10n_ma/i18n/sr@latin.po index a4248011c6e..bcfbb8d2a8e 100644 --- a/addons/l10n_ma/i18n/sr@latin.po +++ b/addons/l10n_ma/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_ma/i18n/tr.po b/addons/l10n_ma/i18n/tr.po index 5df81c93afa..ce3dcc6d597 100644 --- a/addons/l10n_ma/i18n/tr.po +++ b/addons/l10n_ma/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ma #: model:account.account.type,name:l10n_ma.cpt_type_imm diff --git a/addons/l10n_multilang/i18n/ar.po b/addons/l10n_multilang/i18n/ar.po index 1dfd5631337..7582b10f0e3 100644 --- a/addons/l10n_multilang/i18n/ar.po +++ b/addons/l10n_multilang/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/de.po b/addons/l10n_multilang/i18n/de.po index 48608620a59..a6736e0f52e 100644 --- a/addons/l10n_multilang/i18n/de.po +++ b/addons/l10n_multilang/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/es.po b/addons/l10n_multilang/i18n/es.po index 416486624ca..f6759c24af6 100644 --- a/addons/l10n_multilang/i18n/es.po +++ b/addons/l10n_multilang/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/es_CR.po b/addons/l10n_multilang/i18n/es_CR.po index 558996178f2..9fe458656d8 100644 --- a/addons/l10n_multilang/i18n/es_CR.po +++ b/addons/l10n_multilang/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/fr.po b/addons/l10n_multilang/i18n/fr.po index 3fcf78302d3..aff967a179a 100644 --- a/addons/l10n_multilang/i18n/fr.po +++ b/addons/l10n_multilang/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/hr.po b/addons/l10n_multilang/i18n/hr.po index a3c26e8d017..d70f0fb6016 100644 --- a/addons/l10n_multilang/i18n/hr.po +++ b/addons/l10n_multilang/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/hu.po b/addons/l10n_multilang/i18n/hu.po index fbee7e234db..8bff81b755c 100644 --- a/addons/l10n_multilang/i18n/hu.po +++ b/addons/l10n_multilang/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-01 05:39+0000\n" -"X-Generator: Launchpad (build 16514)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/mn.po b/addons/l10n_multilang/i18n/mn.po index ce942f5c3f7..bcfdae0772e 100644 --- a/addons/l10n_multilang/i18n/mn.po +++ b/addons/l10n_multilang/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/nl.po b/addons/l10n_multilang/i18n/nl.po index ad372c3a431..33becb22650 100644 --- a/addons/l10n_multilang/i18n/nl.po +++ b/addons/l10n_multilang/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pl.po b/addons/l10n_multilang/i18n/pl.po index dac81278f0c..8e08966262d 100644 --- a/addons/l10n_multilang/i18n/pl.po +++ b/addons/l10n_multilang/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pt.po b/addons/l10n_multilang/i18n/pt.po index 9b15edb0856..8d2635589fa 100644 --- a/addons/l10n_multilang/i18n/pt.po +++ b/addons/l10n_multilang/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/pt_BR.po b/addons/l10n_multilang/i18n/pt_BR.po index 86f2fba86fe..c915a23997a 100644 --- a/addons/l10n_multilang/i18n/pt_BR.po +++ b/addons/l10n_multilang/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/ro.po b/addons/l10n_multilang/i18n/ro.po index 417865b4fa6..1932993fb01 100644 --- a/addons/l10n_multilang/i18n/ro.po +++ b/addons/l10n_multilang/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/sl.po b/addons/l10n_multilang/i18n/sl.po index cdcac23fd2c..e54c7701171 100644 --- a/addons/l10n_multilang/i18n/sl.po +++ b/addons/l10n_multilang/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/tr.po b/addons/l10n_multilang/i18n/tr.po index 015a7931609..7efda4ba426 100644 --- a/addons/l10n_multilang/i18n/tr.po +++ b/addons/l10n_multilang/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-26 05:34+0000\n" -"X-Generator: Launchpad (build 16506)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_nl/i18n/ar.po b/addons/l10n_nl/i18n/ar.po index 3dcf33fb2c9..c34af9259de 100644 --- a/addons/l10n_nl/i18n/ar.po +++ b/addons/l10n_nl/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/ca.po b/addons/l10n_nl/i18n/ca.po index eea344a05b2..db0db755d0d 100644 --- a/addons/l10n_nl/i18n/ca.po +++ b/addons/l10n_nl/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/da.po b/addons/l10n_nl/i18n/da.po index 4a8ecc5904c..85ec0e24a3e 100644 --- a/addons/l10n_nl/i18n/da.po +++ b/addons/l10n_nl/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es.po b/addons/l10n_nl/i18n/es.po index 45307a43121..f57a765862c 100644 --- a/addons/l10n_nl/i18n/es.po +++ b/addons/l10n_nl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es_CR.po b/addons/l10n_nl/i18n/es_CR.po index aa6615645a8..560c9e68f68 100644 --- a/addons/l10n_nl/i18n/es_CR.po +++ b/addons/l10n_nl/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/es_PY.po b/addons/l10n_nl/i18n/es_PY.po index d5c6db2859c..ed4657f3909 100644 --- a/addons/l10n_nl/i18n/es_PY.po +++ b/addons/l10n_nl/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/gl.po b/addons/l10n_nl/i18n/gl.po index 613e4589812..858afcdcdd0 100644 --- a/addons/l10n_nl/i18n/gl.po +++ b/addons/l10n_nl/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/it.po b/addons/l10n_nl/i18n/it.po index a59d8a77b26..0b75d22640f 100644 --- a/addons/l10n_nl/i18n/it.po +++ b/addons/l10n_nl/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/mn.po b/addons/l10n_nl/i18n/mn.po index 09d9b6d5ee0..71df0f97ced 100644 --- a/addons/l10n_nl/i18n/mn.po +++ b/addons/l10n_nl/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-20 05:29+0000\n" -"X-Generator: Launchpad (build 16491)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/nl.po b/addons/l10n_nl/i18n/nl.po index ab44f0d8234..47ba287e780 100644 --- a/addons/l10n_nl/i18n/nl.po +++ b/addons/l10n_nl/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/pt_BR.po b/addons/l10n_nl/i18n/pt_BR.po index d228dd300a1..9222c7cdaa9 100644 --- a/addons/l10n_nl/i18n/pt_BR.po +++ b/addons/l10n_nl/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/sl.po b/addons/l10n_nl/i18n/sl.po index ea242ef8601..721270580e3 100644 --- a/addons/l10n_nl/i18n/sl.po +++ b/addons/l10n_nl/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/sr@latin.po b/addons/l10n_nl/i18n/sr@latin.po index c554ed1614f..da80505fbe5 100644 --- a/addons/l10n_nl/i18n/sr@latin.po +++ b/addons/l10n_nl/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_nl/i18n/tr.po b/addons/l10n_nl/i18n/tr.po index 95102abe398..c37199eb929 100644 --- a/addons/l10n_nl/i18n/tr.po +++ b/addons/l10n_nl/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_nl #: model:account.account.type,name:l10n_nl.user_type_equity diff --git a/addons/l10n_pe/i18n/ar.po b/addons/l10n_pe/i18n/ar.po index 6e2b12fd8d0..6cf1b266d3a 100644 --- a/addons/l10n_pe/i18n/ar.po +++ b/addons/l10n_pe/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/br.po b/addons/l10n_pe/i18n/br.po index 344cbf4d576..6872e80182e 100644 --- a/addons/l10n_pe/i18n/br.po +++ b/addons/l10n_pe/i18n/br.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/ca.po b/addons/l10n_pe/i18n/ca.po index 9e1d6419070..a71086ccab6 100644 --- a/addons/l10n_pe/i18n/ca.po +++ b/addons/l10n_pe/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/de.po b/addons/l10n_pe/i18n/de.po index 7cb14e84d99..401c049983a 100644 --- a/addons/l10n_pe/i18n/de.po +++ b/addons/l10n_pe/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/es.po b/addons/l10n_pe/i18n/es.po index 720198bcfb1..bf42b1dbd6b 100644 --- a/addons/l10n_pe/i18n/es.po +++ b/addons/l10n_pe/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/et.po b/addons/l10n_pe/i18n/et.po index 17aa39afddd..8e5a9b2c184 100644 --- a/addons/l10n_pe/i18n/et.po +++ b/addons/l10n_pe/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/fr.po b/addons/l10n_pe/i18n/fr.po index 6c5039b6bd3..296f19855ba 100644 --- a/addons/l10n_pe/i18n/fr.po +++ b/addons/l10n_pe/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/gl.po b/addons/l10n_pe/i18n/gl.po index e9f2e98f99b..43ccac8d806 100644 --- a/addons/l10n_pe/i18n/gl.po +++ b/addons/l10n_pe/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/hu.po b/addons/l10n_pe/i18n/hu.po index e81293a77a1..4c0db0c024f 100644 --- a/addons/l10n_pe/i18n/hu.po +++ b/addons/l10n_pe/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/it.po b/addons/l10n_pe/i18n/it.po index 494d84ee45d..97a08f85d45 100644 --- a/addons/l10n_pe/i18n/it.po +++ b/addons/l10n_pe/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/pt.po b/addons/l10n_pe/i18n/pt.po index a92f3359483..0a505bccbe2 100644 --- a/addons/l10n_pe/i18n/pt.po +++ b/addons/l10n_pe/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/pt_BR.po b/addons/l10n_pe/i18n/pt_BR.po index cd0cc7c1957..e960a138800 100644 --- a/addons/l10n_pe/i18n/pt_BR.po +++ b/addons/l10n_pe/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/ru.po b/addons/l10n_pe/i18n/ru.po index bcbfe21b0d6..58def908873 100644 --- a/addons/l10n_pe/i18n/ru.po +++ b/addons/l10n_pe/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sl.po b/addons/l10n_pe/i18n/sl.po index d65f93d49b8..809ae517c0d 100644 --- a/addons/l10n_pe/i18n/sl.po +++ b/addons/l10n_pe/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sr@latin.po b/addons/l10n_pe/i18n/sr@latin.po index 340a6ceb888..467dd6f9295 100644 --- a/addons/l10n_pe/i18n/sr@latin.po +++ b/addons/l10n_pe/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/sv.po b/addons/l10n_pe/i18n/sv.po index d5e3bc70989..0eb5a2ae44d 100644 --- a/addons/l10n_pe/i18n/sv.po +++ b/addons/l10n_pe/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pe/i18n/tr.po b/addons/l10n_pe/i18n/tr.po index 869c99775d7..064e9817766 100644 --- a/addons/l10n_pe/i18n/tr.po +++ b/addons/l10n_pe/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pe #: model:account.account.type,name:l10n_pe.account_account_type_EGP_FU_070 diff --git a/addons/l10n_pl/i18n/ar.po b/addons/l10n_pl/i18n/ar.po index a58a3191b5b..875f18e8625 100644 --- a/addons/l10n_pl/i18n/ar.po +++ b/addons/l10n_pl/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/ca.po b/addons/l10n_pl/i18n/ca.po index 1ecb7713a77..dc37abf0fab 100644 --- a/addons/l10n_pl/i18n/ca.po +++ b/addons/l10n_pl/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/da.po b/addons/l10n_pl/i18n/da.po index 70bec6640cb..f5fadad9511 100644 --- a/addons/l10n_pl/i18n/da.po +++ b/addons/l10n_pl/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es.po b/addons/l10n_pl/i18n/es.po index 89a8ece205e..fc28139f4eb 100644 --- a/addons/l10n_pl/i18n/es.po +++ b/addons/l10n_pl/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es_CR.po b/addons/l10n_pl/i18n/es_CR.po index f36a399f476..5a142db9031 100644 --- a/addons/l10n_pl/i18n/es_CR.po +++ b/addons/l10n_pl/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/es_PY.po b/addons/l10n_pl/i18n/es_PY.po index 05f2b35d7f5..01b49bc4e3c 100644 --- a/addons/l10n_pl/i18n/es_PY.po +++ b/addons/l10n_pl/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/gl.po b/addons/l10n_pl/i18n/gl.po index ec6e2b5b22e..ca88e1fa788 100644 --- a/addons/l10n_pl/i18n/gl.po +++ b/addons/l10n_pl/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/it.po b/addons/l10n_pl/i18n/it.po index 2d70edaa818..2d31c8f7a2d 100644 --- a/addons/l10n_pl/i18n/it.po +++ b/addons/l10n_pl/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/pt_BR.po b/addons/l10n_pl/i18n/pt_BR.po index be3b3421085..e4c267cb1bc 100644 --- a/addons/l10n_pl/i18n/pt_BR.po +++ b/addons/l10n_pl/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/sl.po b/addons/l10n_pl/i18n/sl.po index 4615fc12a59..debd318faf2 100644 --- a/addons/l10n_pl/i18n/sl.po +++ b/addons/l10n_pl/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/sr@latin.po b/addons/l10n_pl/i18n/sr@latin.po index 6b6f31b794d..1bd351c1592 100644 --- a/addons/l10n_pl/i18n/sr@latin.po +++ b/addons/l10n_pl/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_pl/i18n/tr.po b/addons/l10n_pl/i18n/tr.po index b65a8afe4b3..95fbc5be8da 100644 --- a/addons/l10n_pl/i18n/tr.po +++ b/addons/l10n_pl/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_pl #: model:account.account.type,name:l10n_pl.account_type_view diff --git a/addons/l10n_syscohada/i18n/ar.po b/addons/l10n_syscohada/i18n/ar.po index df6567b0669..0ac72e42de0 100644 --- a/addons/l10n_syscohada/i18n/ar.po +++ b/addons/l10n_syscohada/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/ca.po b/addons/l10n_syscohada/i18n/ca.po index a093f18a58f..070aa0d6080 100644 --- a/addons/l10n_syscohada/i18n/ca.po +++ b/addons/l10n_syscohada/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/es.po b/addons/l10n_syscohada/i18n/es.po index a5cd52c54ec..f3d45923ae2 100644 --- a/addons/l10n_syscohada/i18n/es.po +++ b/addons/l10n_syscohada/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/es_CR.po b/addons/l10n_syscohada/i18n/es_CR.po index cc42f188c11..ca87b6a6df3 100644 --- a/addons/l10n_syscohada/i18n/es_CR.po +++ b/addons/l10n_syscohada/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/fr.po b/addons/l10n_syscohada/i18n/fr.po index 0a324cb97a6..8900b8be5f6 100644 --- a/addons/l10n_syscohada/i18n/fr.po +++ b/addons/l10n_syscohada/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/pt.po b/addons/l10n_syscohada/i18n/pt.po index 4f16aa3530d..08db8793ff0 100644 --- a/addons/l10n_syscohada/i18n/pt.po +++ b/addons/l10n_syscohada/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/pt_BR.po b/addons/l10n_syscohada/i18n/pt_BR.po index 4194e6a4a32..ae427a10d6f 100644 --- a/addons/l10n_syscohada/i18n/pt_BR.po +++ b/addons/l10n_syscohada/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/ro.po b/addons/l10n_syscohada/i18n/ro.po index afc2a35693f..5b69b6bc28c 100644 --- a/addons/l10n_syscohada/i18n/ro.po +++ b/addons/l10n_syscohada/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/sl.po b/addons/l10n_syscohada/i18n/sl.po index 9aae1016499..1f9123514d9 100644 --- a/addons/l10n_syscohada/i18n/sl.po +++ b/addons/l10n_syscohada/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_syscohada/i18n/tr.po b/addons/l10n_syscohada/i18n/tr.po index 20b2d97f4f3..bfec9fc152c 100644 --- a/addons/l10n_syscohada/i18n/tr.po +++ b/addons/l10n_syscohada/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_syscohada #: model:account.account.type,name:l10n_syscohada.account_type_receivable diff --git a/addons/l10n_th/i18n/ar.po b/addons/l10n_th/i18n/ar.po index d4c365cb3f6..51536f5e62e 100644 --- a/addons/l10n_th/i18n/ar.po +++ b/addons/l10n_th/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/ca.po b/addons/l10n_th/i18n/ca.po index 7f1bd0859fe..87fe21fd318 100644 --- a/addons/l10n_th/i18n/ca.po +++ b/addons/l10n_th/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/da.po b/addons/l10n_th/i18n/da.po index 645cbfdda53..253cd8dd1c0 100644 --- a/addons/l10n_th/i18n/da.po +++ b/addons/l10n_th/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es.po b/addons/l10n_th/i18n/es.po index c88531c3e16..1cbf24f95df 100644 --- a/addons/l10n_th/i18n/es.po +++ b/addons/l10n_th/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es_CR.po b/addons/l10n_th/i18n/es_CR.po index 53d02e8aedc..585cdff645b 100644 --- a/addons/l10n_th/i18n/es_CR.po +++ b/addons/l10n_th/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/es_PY.po b/addons/l10n_th/i18n/es_PY.po index 96322669ced..620db768a81 100644 --- a/addons/l10n_th/i18n/es_PY.po +++ b/addons/l10n_th/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/gl.po b/addons/l10n_th/i18n/gl.po index 08116467643..1e748f6e467 100644 --- a/addons/l10n_th/i18n/gl.po +++ b/addons/l10n_th/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/it.po b/addons/l10n_th/i18n/it.po index 86391dd0ed5..0f6a8ce4968 100644 --- a/addons/l10n_th/i18n/it.po +++ b/addons/l10n_th/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/nb.po b/addons/l10n_th/i18n/nb.po index 9a048f629d2..003e02fe369 100644 --- a/addons/l10n_th/i18n/nb.po +++ b/addons/l10n_th/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/pt.po b/addons/l10n_th/i18n/pt.po index bc1d039ea22..8713ae0c0ee 100644 --- a/addons/l10n_th/i18n/pt.po +++ b/addons/l10n_th/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/pt_BR.po b/addons/l10n_th/i18n/pt_BR.po index 8eb0b44f098..9c1f2b7666a 100644 --- a/addons/l10n_th/i18n/pt_BR.po +++ b/addons/l10n_th/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/sl.po b/addons/l10n_th/i18n/sl.po index c9b769dcaa1..73466ae7ef8 100644 --- a/addons/l10n_th/i18n/sl.po +++ b/addons/l10n_th/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/sr@latin.po b/addons/l10n_th/i18n/sr@latin.po index 0f7b78e66a5..f496d102a7e 100644 --- a/addons/l10n_th/i18n/sr@latin.po +++ b/addons/l10n_th/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/th.po b/addons/l10n_th/i18n/th.po index 243d15c4a63..3f4fe45fd34 100644 --- a/addons/l10n_th/i18n/th.po +++ b/addons/l10n_th/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_th/i18n/tr.po b/addons/l10n_th/i18n/tr.po index 828129d4334..936cf81fa5e 100644 --- a/addons/l10n_th/i18n/tr.po +++ b/addons/l10n_th/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_th #: model:account.account.type,name:l10n_th.acc_type_reconciled diff --git a/addons/l10n_uk/i18n/ar.po b/addons/l10n_uk/i18n/ar.po index 20d648af793..7f4b3c2ef57 100644 --- a/addons/l10n_uk/i18n/ar.po +++ b/addons/l10n_uk/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/bg.po b/addons/l10n_uk/i18n/bg.po index f50b391b82f..d05cdbb6545 100644 --- a/addons/l10n_uk/i18n/bg.po +++ b/addons/l10n_uk/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/bs.po b/addons/l10n_uk/i18n/bs.po index de56f636fcb..a43548c5a28 100644 --- a/addons/l10n_uk/i18n/bs.po +++ b/addons/l10n_uk/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ca.po b/addons/l10n_uk/i18n/ca.po index 05ee36a0cbe..1fdcf8213a9 100644 --- a/addons/l10n_uk/i18n/ca.po +++ b/addons/l10n_uk/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/cs.po b/addons/l10n_uk/i18n/cs.po index 1d5e243772f..7c2f789859c 100644 --- a/addons/l10n_uk/i18n/cs.po +++ b/addons/l10n_uk/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/da.po b/addons/l10n_uk/i18n/da.po index bf383d2e1f0..97d20a323ab 100644 --- a/addons/l10n_uk/i18n/da.po +++ b/addons/l10n_uk/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/de.po b/addons/l10n_uk/i18n/de.po index 525dbaede5f..8742cc6c2f2 100644 --- a/addons/l10n_uk/i18n/de.po +++ b/addons/l10n_uk/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es.po b/addons/l10n_uk/i18n/es.po index 9ae8542be80..57fc0466ccb 100644 --- a/addons/l10n_uk/i18n/es.po +++ b/addons/l10n_uk/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es_CR.po b/addons/l10n_uk/i18n/es_CR.po index 19ed2f07386..28a7bc0f6a9 100644 --- a/addons/l10n_uk/i18n/es_CR.po +++ b/addons/l10n_uk/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/es_PY.po b/addons/l10n_uk/i18n/es_PY.po index 47328c8de60..4fcb14fbd0d 100644 --- a/addons/l10n_uk/i18n/es_PY.po +++ b/addons/l10n_uk/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/et.po b/addons/l10n_uk/i18n/et.po index a5b5da43684..e5c2465c124 100644 --- a/addons/l10n_uk/i18n/et.po +++ b/addons/l10n_uk/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/fr.po b/addons/l10n_uk/i18n/fr.po index 7516971f2ea..e9a6da365b1 100644 --- a/addons/l10n_uk/i18n/fr.po +++ b/addons/l10n_uk/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/gl.po b/addons/l10n_uk/i18n/gl.po index 71f9e12490d..0ca2a4c4712 100644 --- a/addons/l10n_uk/i18n/gl.po +++ b/addons/l10n_uk/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/hr.po b/addons/l10n_uk/i18n/hr.po index 40d60fcbfb4..a12189c3ea4 100644 --- a/addons/l10n_uk/i18n/hr.po +++ b/addons/l10n_uk/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/hu.po b/addons/l10n_uk/i18n/hu.po index 62059fe4d32..1facf3dfc74 100644 --- a/addons/l10n_uk/i18n/hu.po +++ b/addons/l10n_uk/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/id.po b/addons/l10n_uk/i18n/id.po index 11643542508..1961055340b 100644 --- a/addons/l10n_uk/i18n/id.po +++ b/addons/l10n_uk/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/it.po b/addons/l10n_uk/i18n/it.po index ae3c5ac1727..2472b8bc3f3 100644 --- a/addons/l10n_uk/i18n/it.po +++ b/addons/l10n_uk/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ko.po b/addons/l10n_uk/i18n/ko.po index b1082c45e82..526f37ede16 100644 --- a/addons/l10n_uk/i18n/ko.po +++ b/addons/l10n_uk/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/lt.po b/addons/l10n_uk/i18n/lt.po index 72750fbc769..c0458078921 100644 --- a/addons/l10n_uk/i18n/lt.po +++ b/addons/l10n_uk/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/nl.po b/addons/l10n_uk/i18n/nl.po index 2019721d03c..37d0bec42b1 100644 --- a/addons/l10n_uk/i18n/nl.po +++ b/addons/l10n_uk/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/oc.po b/addons/l10n_uk/i18n/oc.po index 72490010d01..cc039d7520f 100644 --- a/addons/l10n_uk/i18n/oc.po +++ b/addons/l10n_uk/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pl.po b/addons/l10n_uk/i18n/pl.po index 273f6690be9..8dcb4bacf4b 100644 --- a/addons/l10n_uk/i18n/pl.po +++ b/addons/l10n_uk/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pt.po b/addons/l10n_uk/i18n/pt.po index a7ee2315534..1584baed41a 100644 --- a/addons/l10n_uk/i18n/pt.po +++ b/addons/l10n_uk/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/pt_BR.po b/addons/l10n_uk/i18n/pt_BR.po index f9f01144c21..2ef75ba819a 100644 --- a/addons/l10n_uk/i18n/pt_BR.po +++ b/addons/l10n_uk/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ro.po b/addons/l10n_uk/i18n/ro.po index 0f9384c6a8c..a3775033d00 100644 --- a/addons/l10n_uk/i18n/ro.po +++ b/addons/l10n_uk/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/ru.po b/addons/l10n_uk/i18n/ru.po index 53166329493..b3a05096593 100644 --- a/addons/l10n_uk/i18n/ru.po +++ b/addons/l10n_uk/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sl.po b/addons/l10n_uk/i18n/sl.po index c7c4d885d05..200b1eb494a 100644 --- a/addons/l10n_uk/i18n/sl.po +++ b/addons/l10n_uk/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sq.po b/addons/l10n_uk/i18n/sq.po index bddda4ebf4c..e618675897c 100644 --- a/addons/l10n_uk/i18n/sq.po +++ b/addons/l10n_uk/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:51+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sr@latin.po b/addons/l10n_uk/i18n/sr@latin.po index 89f6df9d9be..fb47d8ffac5 100644 --- a/addons/l10n_uk/i18n/sr@latin.po +++ b/addons/l10n_uk/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/sv.po b/addons/l10n_uk/i18n/sv.po index 0069d4c4e4b..24cc75d0e2b 100644 --- a/addons/l10n_uk/i18n/sv.po +++ b/addons/l10n_uk/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/tlh.po b/addons/l10n_uk/i18n/tlh.po index bc80dddd855..4cf63baa047 100644 --- a/addons/l10n_uk/i18n/tlh.po +++ b/addons/l10n_uk/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/tr.po b/addons/l10n_uk/i18n/tr.po index 25d949dce5e..29b686b05e6 100644 --- a/addons/l10n_uk/i18n/tr.po +++ b/addons/l10n_uk/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-26 05:34+0000\n" -"X-Generator: Launchpad (build 16506)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/uk.po b/addons/l10n_uk/i18n/uk.po index bfda4cbce5d..87d38eee78d 100644 --- a/addons/l10n_uk/i18n/uk.po +++ b/addons/l10n_uk/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/vi.po b/addons/l10n_uk/i18n/vi.po index 16c87f62ae0..3bcc7660329 100644 --- a/addons/l10n_uk/i18n/vi.po +++ b/addons/l10n_uk/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/zh_CN.po b/addons/l10n_uk/i18n/zh_CN.po index 380941b4f7e..feebba84911 100644 --- a/addons/l10n_uk/i18n/zh_CN.po +++ b/addons/l10n_uk/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_uk/i18n/zh_TW.po b/addons/l10n_uk/i18n/zh_TW.po index f54a5edca99..eeb157ff0fb 100644 --- a/addons/l10n_uk/i18n/zh_TW.po +++ b/addons/l10n_uk/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-31 05:17+0000\n" -"X-Generator: Launchpad (build 16455)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_uk #: model:account.account.type,name:l10n_uk.account_type_receivable diff --git a/addons/l10n_ve/i18n/ar.po b/addons/l10n_ve/i18n/ar.po index 4e0c2d14b58..9ecda91795c 100644 --- a/addons/l10n_ve/i18n/ar.po +++ b/addons/l10n_ve/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/ca.po b/addons/l10n_ve/i18n/ca.po index 640983f8377..ad5a1fc2db2 100644 --- a/addons/l10n_ve/i18n/ca.po +++ b/addons/l10n_ve/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/da.po b/addons/l10n_ve/i18n/da.po index e8adf9afe9f..514ed986c58 100644 --- a/addons/l10n_ve/i18n/da.po +++ b/addons/l10n_ve/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/de.po b/addons/l10n_ve/i18n/de.po index 4aaacbda572..80c35a08f25 100644 --- a/addons/l10n_ve/i18n/de.po +++ b/addons/l10n_ve/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es.po b/addons/l10n_ve/i18n/es.po index afcaf06ee56..2a0a24b6e33 100644 --- a/addons/l10n_ve/i18n/es.po +++ b/addons/l10n_ve/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es_CR.po b/addons/l10n_ve/i18n/es_CR.po index fa4d59dec4b..94baf734d2c 100644 --- a/addons/l10n_ve/i18n/es_CR.po +++ b/addons/l10n_ve/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/es_PY.po b/addons/l10n_ve/i18n/es_PY.po index ad765683e30..aa4ba8ffdd5 100644 --- a/addons/l10n_ve/i18n/es_PY.po +++ b/addons/l10n_ve/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/gl.po b/addons/l10n_ve/i18n/gl.po index 11c3d8078e4..f6b81e26da7 100644 --- a/addons/l10n_ve/i18n/gl.po +++ b/addons/l10n_ve/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/it.po b/addons/l10n_ve/i18n/it.po index 3fe4f9560b8..14c9c3a762d 100644 --- a/addons/l10n_ve/i18n/it.po +++ b/addons/l10n_ve/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/pt.po b/addons/l10n_ve/i18n/pt.po index 27b5da52d42..2a3bac204ab 100644 --- a/addons/l10n_ve/i18n/pt.po +++ b/addons/l10n_ve/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-19 06:37+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/pt_BR.po b/addons/l10n_ve/i18n/pt_BR.po index 89a38243cf4..96d5518aab9 100644 --- a/addons/l10n_ve/i18n/pt_BR.po +++ b/addons/l10n_ve/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-28 05:58+0000\n" -"X-Generator: Launchpad (build 16451)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/ro.po b/addons/l10n_ve/i18n/ro.po index 6a9c5d7c1af..dc37bf034e8 100644 --- a/addons/l10n_ve/i18n/ro.po +++ b/addons/l10n_ve/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/sl.po b/addons/l10n_ve/i18n/sl.po index 0ea2eb7e24c..c79ffd4a41c 100644 --- a/addons/l10n_ve/i18n/sl.po +++ b/addons/l10n_ve/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/sr@latin.po b/addons/l10n_ve/i18n/sr@latin.po index b3fb3adf599..c825dfd36bf 100644 --- a/addons/l10n_ve/i18n/sr@latin.po +++ b/addons/l10n_ve/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:52+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/l10n_ve/i18n/tr.po b/addons/l10n_ve/i18n/tr.po index 891379e491e..303513c3f9e 100644 --- a/addons/l10n_ve/i18n/tr.po +++ b/addons/l10n_ve/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-07 05:41+0000\n" -"X-Generator: Launchpad (build 16477)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: l10n_ve #: model:account.account.type,name:l10n_ve.account_type_receivable diff --git a/addons/lunch/i18n/ar.po b/addons/lunch/i18n/ar.po index cc115560c33..dc307dbb6d0 100644 --- a/addons/lunch/i18n/ar.po +++ b/addons/lunch/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/bg.po b/addons/lunch/i18n/bg.po index acad07701de..2786d33edd2 100644 --- a/addons/lunch/i18n/bg.po +++ b/addons/lunch/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ca.po b/addons/lunch/i18n/ca.po index 8cf7b384d32..735cc0649cb 100644 --- a/addons/lunch/i18n/ca.po +++ b/addons/lunch/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/cs.po b/addons/lunch/i18n/cs.po index c3dcbcc986d..2997264ae64 100644 --- a/addons/lunch/i18n/cs.po +++ b/addons/lunch/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/da.po b/addons/lunch/i18n/da.po index c5c53c53ea2..aa21dcb3dfe 100644 --- a/addons/lunch/i18n/da.po +++ b/addons/lunch/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/de.po b/addons/lunch/i18n/de.po index 3d7a341e740..4f14592d66d 100644 --- a/addons/lunch/i18n/de.po +++ b/addons/lunch/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/es.po b/addons/lunch/i18n/es.po index e308be961ed..bef1510643f 100644 --- a/addons/lunch/i18n/es.po +++ b/addons/lunch/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/es_CR.po b/addons/lunch/i18n/es_CR.po index 12eda81e295..b8179347f25 100644 --- a/addons/lunch/i18n/es_CR.po +++ b/addons/lunch/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/es_PY.po b/addons/lunch/i18n/es_PY.po index 15ce090e79b..e9f514d3fc7 100644 --- a/addons/lunch/i18n/es_PY.po +++ b/addons/lunch/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/fi.po b/addons/lunch/i18n/fi.po index 6d58ae07881..c981d176851 100644 --- a/addons/lunch/i18n/fi.po +++ b/addons/lunch/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/fr.po b/addons/lunch/i18n/fr.po index e88bac55b4c..a48bc901676 100644 --- a/addons/lunch/i18n/fr.po +++ b/addons/lunch/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/gl.po b/addons/lunch/i18n/gl.po index f8500b20eb4..b4bbfe1a950 100644 --- a/addons/lunch/i18n/gl.po +++ b/addons/lunch/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/hr.po b/addons/lunch/i18n/hr.po index a7da5e6ef11..68e403709f0 100644 --- a/addons/lunch/i18n/hr.po +++ b/addons/lunch/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/hu.po b/addons/lunch/i18n/hu.po index ce25ef515af..2d28c0d94d8 100644 --- a/addons/lunch/i18n/hu.po +++ b/addons/lunch/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/it.po b/addons/lunch/i18n/it.po index 3bce37a4f28..83429a58f5e 100644 --- a/addons/lunch/i18n/it.po +++ b/addons/lunch/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ja.po b/addons/lunch/i18n/ja.po index cc71ccc9e8f..3869684c7c9 100644 --- a/addons/lunch/i18n/ja.po +++ b/addons/lunch/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/mk.po b/addons/lunch/i18n/mk.po index 76aa64eb28b..f1598b775a2 100644 --- a/addons/lunch/i18n/mk.po +++ b/addons/lunch/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/mn.po b/addons/lunch/i18n/mn.po index f768c9641b3..e519b3aa2cb 100644 --- a/addons/lunch/i18n/mn.po +++ b/addons/lunch/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/nl.po b/addons/lunch/i18n/nl.po index 7db83ec121a..26122a6a184 100644 --- a/addons/lunch/i18n/nl.po +++ b/addons/lunch/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/pt.po b/addons/lunch/i18n/pt.po index 1c09474bc12..b6cac5f76f1 100644 --- a/addons/lunch/i18n/pt.po +++ b/addons/lunch/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/pt_BR.po b/addons/lunch/i18n/pt_BR.po index 6cc46c01924..d9a932606fe 100644 --- a/addons/lunch/i18n/pt_BR.po +++ b/addons/lunch/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ro.po b/addons/lunch/i18n/ro.po index 55d321a4438..89c36538e9c 100644 --- a/addons/lunch/i18n/ro.po +++ b/addons/lunch/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/ru.po b/addons/lunch/i18n/ru.po index 3e754b41c65..7520087668d 100644 --- a/addons/lunch/i18n/ru.po +++ b/addons/lunch/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/sl.po b/addons/lunch/i18n/sl.po index 6016b265e53..3ffc97e37a5 100644 --- a/addons/lunch/i18n/sl.po +++ b/addons/lunch/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/sr@latin.po b/addons/lunch/i18n/sr@latin.po index bdeaa6bb55f..f09851f7475 100644 --- a/addons/lunch/i18n/sr@latin.po +++ b/addons/lunch/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/sv.po b/addons/lunch/i18n/sv.po index 77e8b8df933..2d94fb6aa94 100644 --- a/addons/lunch/i18n/sv.po +++ b/addons/lunch/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:47+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/tr.po b/addons/lunch/i18n/tr.po index 84273686aea..b970fb02391 100644 --- a/addons/lunch/i18n/tr.po +++ b/addons/lunch/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/zh_CN.po b/addons/lunch/i18n/zh_CN.po index a9f254713e5..81604aec6c8 100644 --- a/addons/lunch/i18n/zh_CN.po +++ b/addons/lunch/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/lunch/i18n/zh_TW.po b/addons/lunch/i18n/zh_TW.po index 1b237e163d8..4fd74af45fd 100644 --- a/addons/lunch/i18n/zh_TW.po +++ b/addons/lunch/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: lunch #: field:lunch.product,category_id:0 diff --git a/addons/mail/i18n/ar.po b/addons/mail/i18n/ar.po index 773a9c41b28..6f5eeaec76a 100644 --- a/addons/mail/i18n/ar.po +++ b/addons/mail/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/bg.po b/addons/mail/i18n/bg.po index 2cea703d227..f7dab1fb10e 100644 --- a/addons/mail/i18n/bg.po +++ b/addons/mail/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ca.po b/addons/mail/i18n/ca.po index 3247e1fd299..8c54422e8b2 100644 --- a/addons/mail/i18n/ca.po +++ b/addons/mail/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/cs.po b/addons/mail/i18n/cs.po index 164e398bb54..e0cc6cc5169 100644 --- a/addons/mail/i18n/cs.po +++ b/addons/mail/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/da.po b/addons/mail/i18n/da.po index 70d767ffc47..7f96ab16556 100644 --- a/addons/mail/i18n/da.po +++ b/addons/mail/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/de.po b/addons/mail/i18n/de.po index 505e287549d..d61aafab979 100644 --- a/addons/mail/i18n/de.po +++ b/addons/mail/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:22+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es.po b/addons/mail/i18n/es.po index 3383fb11a7e..6d71d327b5d 100644 --- a/addons/mail/i18n/es.po +++ b/addons/mail/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es_CR.po b/addons/mail/i18n/es_CR.po index 0217b9d3c12..1551b4f736c 100644 --- a/addons/mail/i18n/es_CR.po +++ b/addons/mail/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es_MX.po b/addons/mail/i18n/es_MX.po index a4d63232c3f..b148cfbac75 100644 --- a/addons/mail/i18n/es_MX.po +++ b/addons/mail/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/es_PY.po b/addons/mail/i18n/es_PY.po index 05c9b0f84f4..3863838cf39 100644 --- a/addons/mail/i18n/es_PY.po +++ b/addons/mail/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/et.po b/addons/mail/i18n/et.po index 11b21731c74..c9284a9f86a 100644 --- a/addons/mail/i18n/et.po +++ b/addons/mail/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/fi.po b/addons/mail/i18n/fi.po index 7e96d190488..8000962d2f5 100644 --- a/addons/mail/i18n/fi.po +++ b/addons/mail/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/fr.po b/addons/mail/i18n/fr.po index ab1d896d5d1..ce67a7dd9d4 100644 --- a/addons/mail/i18n/fr.po +++ b/addons/mail/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/gl.po b/addons/mail/i18n/gl.po index 5ef7c8ef8f4..3b36c28f265 100644 --- a/addons/mail/i18n/gl.po +++ b/addons/mail/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/hr.po b/addons/mail/i18n/hr.po index 82f48b348d1..16dab04bd89 100644 --- a/addons/mail/i18n/hr.po +++ b/addons/mail/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/hu.po b/addons/mail/i18n/hu.po index 2a01c276cbd..7a6fbf3b42c 100644 --- a/addons/mail/i18n/hu.po +++ b/addons/mail/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/it.po b/addons/mail/i18n/it.po index c49e6bbb9d1..dfd650fadfc 100644 --- a/addons/mail/i18n/it.po +++ b/addons/mail/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ja.po b/addons/mail/i18n/ja.po index 3519a2e8631..a4a541349ea 100644 --- a/addons/mail/i18n/ja.po +++ b/addons/mail/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/lt.po b/addons/mail/i18n/lt.po index 6d9a039926e..96937ff7fdb 100644 --- a/addons/mail/i18n/lt.po +++ b/addons/mail/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/lv.po b/addons/mail/i18n/lv.po index 9adfa9d05bf..b9dcba8ef41 100644 --- a/addons/mail/i18n/lv.po +++ b/addons/mail/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/mk.po b/addons/mail/i18n/mk.po index 04bcd5762bd..5fe9ac549bd 100644 --- a/addons/mail/i18n/mk.po +++ b/addons/mail/i18n/mk.po @@ -15,8 +15,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: mail diff --git a/addons/mail/i18n/mn.po b/addons/mail/i18n/mn.po index 28e2661c6bb..24d2dc1cfac 100644 --- a/addons/mail/i18n/mn.po +++ b/addons/mail/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index d185e2e6b04..600d02c78e7 100644 --- a/addons/mail/i18n/nl.po +++ b/addons/mail/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pl.po b/addons/mail/i18n/pl.po index 599f641a4a5..fd260fec232 100644 --- a/addons/mail/i18n/pl.po +++ b/addons/mail/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pt.po b/addons/mail/i18n/pt.po index e0a35d6aca6..a2e366b4f87 100644 --- a/addons/mail/i18n/pt.po +++ b/addons/mail/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/pt_BR.po b/addons/mail/i18n/pt_BR.po index bf2d6733266..7ae03202a0e 100644 --- a/addons/mail/i18n/pt_BR.po +++ b/addons/mail/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ro.po b/addons/mail/i18n/ro.po index bd8da5346d2..7e243ef9989 100644 --- a/addons/mail/i18n/ro.po +++ b/addons/mail/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index 48ea0688e28..c5007780e30 100644 --- a/addons/mail/i18n/ru.po +++ b/addons/mail/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/sl.po b/addons/mail/i18n/sl.po index 27d3f952dc2..95d6ff72c17 100644 --- a/addons/mail/i18n/sl.po +++ b/addons/mail/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/sr@latin.po b/addons/mail/i18n/sr@latin.po index 25d199361ec..68fe212ce5a 100644 --- a/addons/mail/i18n/sr@latin.po +++ b/addons/mail/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/sv.po b/addons/mail/i18n/sv.po index 8cf889d3cc9..9c5fad53cf6 100644 --- a/addons/mail/i18n/sv.po +++ b/addons/mail/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/tr.po b/addons/mail/i18n/tr.po index 667488c48fc..dd0016f8d5d 100644 --- a/addons/mail/i18n/tr.po +++ b/addons/mail/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-19 06:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/zh_CN.po b/addons/mail/i18n/zh_CN.po index 223e8738fb8..0ac020777e6 100644 --- a/addons/mail/i18n/zh_CN.po +++ b/addons/mail/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/zh_TW.po b/addons/mail/i18n/zh_TW.po index 99324586c12..d3ee9358328 100644 --- a/addons/mail/i18n/zh_TW.po +++ b/addons/mail/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/marketing/i18n/ar.po b/addons/marketing/i18n/ar.po index 55fa676d78a..39fe5ad795b 100644 --- a/addons/marketing/i18n/ar.po +++ b/addons/marketing/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/bg.po b/addons/marketing/i18n/bg.po index 594c0f58c9a..09287c0c5df 100644 --- a/addons/marketing/i18n/bg.po +++ b/addons/marketing/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ca.po b/addons/marketing/i18n/ca.po index eaa3afd7a48..a1cfb01cf38 100644 --- a/addons/marketing/i18n/ca.po +++ b/addons/marketing/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/cs.po b/addons/marketing/i18n/cs.po index e136251caac..1201e656f81 100644 --- a/addons/marketing/i18n/cs.po +++ b/addons/marketing/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/da.po b/addons/marketing/i18n/da.po index 33f26b2cbfd..2723f276990 100644 --- a/addons/marketing/i18n/da.po +++ b/addons/marketing/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/de.po b/addons/marketing/i18n/de.po index a2b2f98ff0d..e9b35a2f366 100644 --- a/addons/marketing/i18n/de.po +++ b/addons/marketing/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/el.po b/addons/marketing/i18n/el.po index 431f64535e7..6aa90453add 100644 --- a/addons/marketing/i18n/el.po +++ b/addons/marketing/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/es.po b/addons/marketing/i18n/es.po index 8c5ef63ce9b..dedd8d66779 100644 --- a/addons/marketing/i18n/es.po +++ b/addons/marketing/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/es_CR.po b/addons/marketing/i18n/es_CR.po index fea9e8c4f3d..b8585ee9494 100644 --- a/addons/marketing/i18n/es_CR.po +++ b/addons/marketing/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/fi.po b/addons/marketing/i18n/fi.po index e406534a622..eb32e13e61b 100644 --- a/addons/marketing/i18n/fi.po +++ b/addons/marketing/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/fr.po b/addons/marketing/i18n/fr.po index f0ca036f202..6ecd244b42e 100644 --- a/addons/marketing/i18n/fr.po +++ b/addons/marketing/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/gl.po b/addons/marketing/i18n/gl.po index de8f30f24f4..16d2d5e2e3e 100644 --- a/addons/marketing/i18n/gl.po +++ b/addons/marketing/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/hr.po b/addons/marketing/i18n/hr.po index 3c5e5c8a080..ce4a40a57e6 100644 --- a/addons/marketing/i18n/hr.po +++ b/addons/marketing/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/hu.po b/addons/marketing/i18n/hu.po index a6b96f40abe..2b6eaa18447 100644 --- a/addons/marketing/i18n/hu.po +++ b/addons/marketing/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/id.po b/addons/marketing/i18n/id.po index d89e625b3f1..3c4a7348de8 100644 --- a/addons/marketing/i18n/id.po +++ b/addons/marketing/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/it.po b/addons/marketing/i18n/it.po index 86600710984..2e19c6028c6 100644 --- a/addons/marketing/i18n/it.po +++ b/addons/marketing/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ja.po b/addons/marketing/i18n/ja.po index 90ad168e381..6041260e90e 100644 --- a/addons/marketing/i18n/ja.po +++ b/addons/marketing/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/lt.po b/addons/marketing/i18n/lt.po index 2725054248a..0a6fe07c255 100644 --- a/addons/marketing/i18n/lt.po +++ b/addons/marketing/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/lv.po b/addons/marketing/i18n/lv.po index 72ef4be2830..1a582394c2d 100644 --- a/addons/marketing/i18n/lv.po +++ b/addons/marketing/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/mk.po b/addons/marketing/i18n/mk.po index 8f47c372399..1c81c4e86c6 100644 --- a/addons/marketing/i18n/mk.po +++ b/addons/marketing/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/mn.po b/addons/marketing/i18n/mn.po index 1141e086340..90848b54856 100644 --- a/addons/marketing/i18n/mn.po +++ b/addons/marketing/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/nb.po b/addons/marketing/i18n/nb.po index 85770ffe7e8..7d0dd907366 100644 --- a/addons/marketing/i18n/nb.po +++ b/addons/marketing/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/nl.po b/addons/marketing/i18n/nl.po index ecffee3a8e2..410b2d14b73 100644 --- a/addons/marketing/i18n/nl.po +++ b/addons/marketing/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pl.po b/addons/marketing/i18n/pl.po index b6f899352af..0b86c269f45 100644 --- a/addons/marketing/i18n/pl.po +++ b/addons/marketing/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pt.po b/addons/marketing/i18n/pt.po index f0919388243..aba742d1820 100644 --- a/addons/marketing/i18n/pt.po +++ b/addons/marketing/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/pt_BR.po b/addons/marketing/i18n/pt_BR.po index 2c0730a96d7..91773bf6541 100644 --- a/addons/marketing/i18n/pt_BR.po +++ b/addons/marketing/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ro.po b/addons/marketing/i18n/ro.po index f670a3829bb..001e429bf4f 100644 --- a/addons/marketing/i18n/ro.po +++ b/addons/marketing/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/ru.po b/addons/marketing/i18n/ru.po index 466520fe423..7da60591fb6 100644 --- a/addons/marketing/i18n/ru.po +++ b/addons/marketing/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sk.po b/addons/marketing/i18n/sk.po index ae41c7f13a3..2db72cc0e45 100644 --- a/addons/marketing/i18n/sk.po +++ b/addons/marketing/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sl.po b/addons/marketing/i18n/sl.po index ff03dee0c05..13ea8e28c35 100644 --- a/addons/marketing/i18n/sl.po +++ b/addons/marketing/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sr.po b/addons/marketing/i18n/sr.po index 9990e6bf7f9..07d8c8e6d31 100644 --- a/addons/marketing/i18n/sr.po +++ b/addons/marketing/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sr@latin.po b/addons/marketing/i18n/sr@latin.po index aaa34f205e1..2cf02348c03 100644 --- a/addons/marketing/i18n/sr@latin.po +++ b/addons/marketing/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/sv.po b/addons/marketing/i18n/sv.po index dc07d5f112c..4e6d7fd41df 100644 --- a/addons/marketing/i18n/sv.po +++ b/addons/marketing/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/th.po b/addons/marketing/i18n/th.po index cf97f6269e8..2d3da27a25c 100644 --- a/addons/marketing/i18n/th.po +++ b/addons/marketing/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/tr.po b/addons/marketing/i18n/tr.po index 4daaef613e8..b689bfbf47e 100644 --- a/addons/marketing/i18n/tr.po +++ b/addons/marketing/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: marketing diff --git a/addons/marketing/i18n/zh_CN.po b/addons/marketing/i18n/zh_CN.po index edcd09db8d7..eb2828b61ad 100644 --- a/addons/marketing/i18n/zh_CN.po +++ b/addons/marketing/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/zh_TW.po b/addons/marketing/i18n/zh_TW.po index 4249a158543..d97110b872f 100644 --- a/addons/marketing/i18n/zh_TW.po +++ b/addons/marketing/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing_campaign/i18n/ar.po b/addons/marketing_campaign/i18n/ar.po index 8dc14c348a4..b986c372638 100644 --- a/addons/marketing_campaign/i18n/ar.po +++ b/addons/marketing_campaign/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/bg.po b/addons/marketing_campaign/i18n/bg.po index 8c88db76714..9215db72cf7 100644 --- a/addons/marketing_campaign/i18n/bg.po +++ b/addons/marketing_campaign/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ca.po b/addons/marketing_campaign/i18n/ca.po index be61c3ced62..7daf3e1e789 100644 --- a/addons/marketing_campaign/i18n/ca.po +++ b/addons/marketing_campaign/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/cs.po b/addons/marketing_campaign/i18n/cs.po index 6130625868a..191c58806ef 100644 --- a/addons/marketing_campaign/i18n/cs.po +++ b/addons/marketing_campaign/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/da.po b/addons/marketing_campaign/i18n/da.po index 2b1b9a9a50c..f49c1792b41 100644 --- a/addons/marketing_campaign/i18n/da.po +++ b/addons/marketing_campaign/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/de.po b/addons/marketing_campaign/i18n/de.po index a2eb79ccc11..250ac55b994 100644 --- a/addons/marketing_campaign/i18n/de.po +++ b/addons/marketing_campaign/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/el.po b/addons/marketing_campaign/i18n/el.po index 165dc8923f7..0fbf645e6fe 100644 --- a/addons/marketing_campaign/i18n/el.po +++ b/addons/marketing_campaign/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/es.po b/addons/marketing_campaign/i18n/es.po index c03bcf96595..2a093307196 100644 --- a/addons/marketing_campaign/i18n/es.po +++ b/addons/marketing_campaign/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/es_CR.po b/addons/marketing_campaign/i18n/es_CR.po index 7df0ff80159..ef1c22be428 100644 --- a/addons/marketing_campaign/i18n/es_CR.po +++ b/addons/marketing_campaign/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/fi.po b/addons/marketing_campaign/i18n/fi.po index ad63ea1ab78..36284ed3f38 100644 --- a/addons/marketing_campaign/i18n/fi.po +++ b/addons/marketing_campaign/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/fr.po b/addons/marketing_campaign/i18n/fr.po index 835b00677c8..c37fe3269c3 100644 --- a/addons/marketing_campaign/i18n/fr.po +++ b/addons/marketing_campaign/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hi.po b/addons/marketing_campaign/i18n/hi.po index ca591255d56..878fa7489c1 100644 --- a/addons/marketing_campaign/i18n/hi.po +++ b/addons/marketing_campaign/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hr.po b/addons/marketing_campaign/i18n/hr.po index 46398aa1ec2..ec9ed397068 100644 --- a/addons/marketing_campaign/i18n/hr.po +++ b/addons/marketing_campaign/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/hu.po b/addons/marketing_campaign/i18n/hu.po index 7bf204fb78d..b01f75a28cd 100644 --- a/addons/marketing_campaign/i18n/hu.po +++ b/addons/marketing_campaign/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/it.po b/addons/marketing_campaign/i18n/it.po index 35c5f8face6..51c52710213 100644 --- a/addons/marketing_campaign/i18n/it.po +++ b/addons/marketing_campaign/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ja.po b/addons/marketing_campaign/i18n/ja.po index bdc4ec31829..4ee8e5db8dd 100644 --- a/addons/marketing_campaign/i18n/ja.po +++ b/addons/marketing_campaign/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/lv.po b/addons/marketing_campaign/i18n/lv.po index a80d4310c08..f9180cfabc2 100644 --- a/addons/marketing_campaign/i18n/lv.po +++ b/addons/marketing_campaign/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/mk.po b/addons/marketing_campaign/i18n/mk.po index afe894ff4a6..b3494e664a6 100644 --- a/addons/marketing_campaign/i18n/mk.po +++ b/addons/marketing_campaign/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/mn.po b/addons/marketing_campaign/i18n/mn.po index ed8c986c698..c2191545c95 100644 --- a/addons/marketing_campaign/i18n/mn.po +++ b/addons/marketing_campaign/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/nl.po b/addons/marketing_campaign/i18n/nl.po index 2daca58a051..98812e44fac 100644 --- a/addons/marketing_campaign/i18n/nl.po +++ b/addons/marketing_campaign/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/pl.po b/addons/marketing_campaign/i18n/pl.po index adf52c43caa..cb55fab2570 100644 --- a/addons/marketing_campaign/i18n/pl.po +++ b/addons/marketing_campaign/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/pt.po b/addons/marketing_campaign/i18n/pt.po index d758f7aefad..fe0e15eec35 100644 --- a/addons/marketing_campaign/i18n/pt.po +++ b/addons/marketing_campaign/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/pt_BR.po b/addons/marketing_campaign/i18n/pt_BR.po index 68b069786a3..c2828ae693d 100644 --- a/addons/marketing_campaign/i18n/pt_BR.po +++ b/addons/marketing_campaign/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ro.po b/addons/marketing_campaign/i18n/ro.po index 3a9e72e2ff8..fe1c43a38db 100644 --- a/addons/marketing_campaign/i18n/ro.po +++ b/addons/marketing_campaign/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/ru.po b/addons/marketing_campaign/i18n/ru.po index a432f7190a3..c6ea8731a84 100644 --- a/addons/marketing_campaign/i18n/ru.po +++ b/addons/marketing_campaign/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/sl.po b/addons/marketing_campaign/i18n/sl.po index 42422012789..489197e3dd3 100644 --- a/addons/marketing_campaign/i18n/sl.po +++ b/addons/marketing_campaign/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/sr@latin.po b/addons/marketing_campaign/i18n/sr@latin.po index f8cb44ca2d2..ed7d58431ea 100644 --- a/addons/marketing_campaign/i18n/sr@latin.po +++ b/addons/marketing_campaign/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/sv.po b/addons/marketing_campaign/i18n/sv.po index abeac3322f5..29eed7ac4ae 100644 --- a/addons/marketing_campaign/i18n/sv.po +++ b/addons/marketing_campaign/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:48+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/tr.po b/addons/marketing_campaign/i18n/tr.po index 18716b3dc80..e4212a96372 100644 --- a/addons/marketing_campaign/i18n/tr.po +++ b/addons/marketing_campaign/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/zh_CN.po b/addons/marketing_campaign/i18n/zh_CN.po index 294fababdfd..10dbc78817c 100644 --- a/addons/marketing_campaign/i18n/zh_CN.po +++ b/addons/marketing_campaign/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign_crm_demo/i18n/ar.po b/addons/marketing_campaign_crm_demo/i18n/ar.po index 5322c6c654b..37161dbdba8 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ar.po +++ b/addons/marketing_campaign_crm_demo/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/bg.po b/addons/marketing_campaign_crm_demo/i18n/bg.po index 1792da75ea1..af423d15f23 100644 --- a/addons/marketing_campaign_crm_demo/i18n/bg.po +++ b/addons/marketing_campaign_crm_demo/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ca.po b/addons/marketing_campaign_crm_demo/i18n/ca.po index e656c6d1b52..35bd3fd2f51 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ca.po +++ b/addons/marketing_campaign_crm_demo/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/da.po b/addons/marketing_campaign_crm_demo/i18n/da.po index 6de9b58c8bc..f8670d9227e 100644 --- a/addons/marketing_campaign_crm_demo/i18n/da.po +++ b/addons/marketing_campaign_crm_demo/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/de.po b/addons/marketing_campaign_crm_demo/i18n/de.po index f3bcc76adbf..6d80fa4edc0 100644 --- a/addons/marketing_campaign_crm_demo/i18n/de.po +++ b/addons/marketing_campaign_crm_demo/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/es.po b/addons/marketing_campaign_crm_demo/i18n/es.po index 92742d9db74..a75cf3fd6ea 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es.po +++ b/addons/marketing_campaign_crm_demo/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/es_CR.po b/addons/marketing_campaign_crm_demo/i18n/es_CR.po index f52e24cc8f0..01a20993d93 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es_CR.po +++ b/addons/marketing_campaign_crm_demo/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/fr.po b/addons/marketing_campaign_crm_demo/i18n/fr.po index ea13a3dbbae..7d505924bab 100644 --- a/addons/marketing_campaign_crm_demo/i18n/fr.po +++ b/addons/marketing_campaign_crm_demo/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/gl.po b/addons/marketing_campaign_crm_demo/i18n/gl.po index 98dff3ec8b8..d9e41236657 100644 --- a/addons/marketing_campaign_crm_demo/i18n/gl.po +++ b/addons/marketing_campaign_crm_demo/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/hr.po b/addons/marketing_campaign_crm_demo/i18n/hr.po index 201c14a9a8c..003865944bd 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hr.po +++ b/addons/marketing_campaign_crm_demo/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/hu.po b/addons/marketing_campaign_crm_demo/i18n/hu.po index 1339b10da16..50700fbf2cb 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hu.po +++ b/addons/marketing_campaign_crm_demo/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/it.po b/addons/marketing_campaign_crm_demo/i18n/it.po index dac99f0d55e..f3b95fe3746 100644 --- a/addons/marketing_campaign_crm_demo/i18n/it.po +++ b/addons/marketing_campaign_crm_demo/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ja.po b/addons/marketing_campaign_crm_demo/i18n/ja.po index bfb3835108d..f39d36f6907 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ja.po +++ b/addons/marketing_campaign_crm_demo/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/mk.po b/addons/marketing_campaign_crm_demo/i18n/mk.po index 9b823ff971b..8f992747901 100644 --- a/addons/marketing_campaign_crm_demo/i18n/mk.po +++ b/addons/marketing_campaign_crm_demo/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/nb.po b/addons/marketing_campaign_crm_demo/i18n/nb.po index f8d8ddeae05..dc21f90c721 100644 --- a/addons/marketing_campaign_crm_demo/i18n/nb.po +++ b/addons/marketing_campaign_crm_demo/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/nl.po b/addons/marketing_campaign_crm_demo/i18n/nl.po index 22bd8aa2edb..0420680cbaa 100644 --- a/addons/marketing_campaign_crm_demo/i18n/nl.po +++ b/addons/marketing_campaign_crm_demo/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/pt.po b/addons/marketing_campaign_crm_demo/i18n/pt.po index 17d4743752b..9d992dfc395 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt.po +++ b/addons/marketing_campaign_crm_demo/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po b/addons/marketing_campaign_crm_demo/i18n/pt_BR.po index 5462a8c26df..0eb56dda238 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po +++ b/addons/marketing_campaign_crm_demo/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ro.po b/addons/marketing_campaign_crm_demo/i18n/ro.po index 48a72f93866..1f401f283be 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ro.po +++ b/addons/marketing_campaign_crm_demo/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/ru.po b/addons/marketing_campaign_crm_demo/i18n/ru.po index 1b9c9539de8..0ddd6abbe3e 100644 --- a/addons/marketing_campaign_crm_demo/i18n/ru.po +++ b/addons/marketing_campaign_crm_demo/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/sl.po b/addons/marketing_campaign_crm_demo/i18n/sl.po index 1b2dd5f1050..3ff3464579c 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sl.po +++ b/addons/marketing_campaign_crm_demo/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/sr.po b/addons/marketing_campaign_crm_demo/i18n/sr.po index facaab159d2..4d02e141c44 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sr.po +++ b/addons/marketing_campaign_crm_demo/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/sr@latin.po b/addons/marketing_campaign_crm_demo/i18n/sr@latin.po index ae9c486f57a..c91942df08c 100644 --- a/addons/marketing_campaign_crm_demo/i18n/sr@latin.po +++ b/addons/marketing_campaign_crm_demo/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/tr.po b/addons/marketing_campaign_crm_demo/i18n/tr.po index be205155c16..8d6f38c224a 100644 --- a/addons/marketing_campaign_crm_demo/i18n/tr.po +++ b/addons/marketing_campaign_crm_demo/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/marketing_campaign_crm_demo/i18n/zh_CN.po b/addons/marketing_campaign_crm_demo/i18n/zh_CN.po index 15c459e6195..f2b4d755481 100644 --- a/addons/marketing_campaign_crm_demo/i18n/zh_CN.po +++ b/addons/marketing_campaign_crm_demo/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 diff --git a/addons/membership/i18n/ar.po b/addons/membership/i18n/ar.po index 8234ac46f58..3f496d9e230 100644 --- a/addons/membership/i18n/ar.po +++ b/addons/membership/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/bg.po b/addons/membership/i18n/bg.po index 125fcb46bab..267b590e1b7 100644 --- a/addons/membership/i18n/bg.po +++ b/addons/membership/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/bs.po b/addons/membership/i18n/bs.po index babc03ee08b..4ea8cf2a52b 100644 --- a/addons/membership/i18n/bs.po +++ b/addons/membership/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ca.po b/addons/membership/i18n/ca.po index bfa39fbc9c1..c75c8bbcebb 100644 --- a/addons/membership/i18n/ca.po +++ b/addons/membership/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/cs.po b/addons/membership/i18n/cs.po index 49a045288e4..9b8646c090f 100644 --- a/addons/membership/i18n/cs.po +++ b/addons/membership/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/da.po b/addons/membership/i18n/da.po index 89c75159db9..8f06a2ae1c8 100644 --- a/addons/membership/i18n/da.po +++ b/addons/membership/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/de.po b/addons/membership/i18n/de.po index 267d0f918ba..382fab6a667 100644 --- a/addons/membership/i18n/de.po +++ b/addons/membership/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/es.po b/addons/membership/i18n/es.po index c403c8a9402..de80d682005 100644 --- a/addons/membership/i18n/es.po +++ b/addons/membership/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/es_AR.po b/addons/membership/i18n/es_AR.po index 60c599b21ce..ec94b3844a5 100644 --- a/addons/membership/i18n/es_AR.po +++ b/addons/membership/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/es_CR.po b/addons/membership/i18n/es_CR.po index f30cf16c778..bccdca94125 100644 --- a/addons/membership/i18n/es_CR.po +++ b/addons/membership/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/et.po b/addons/membership/i18n/et.po index 35c1ba9e3b5..be3bd96cf2c 100644 --- a/addons/membership/i18n/et.po +++ b/addons/membership/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/fi.po b/addons/membership/i18n/fi.po index f991985ccf6..539eb4886f1 100644 --- a/addons/membership/i18n/fi.po +++ b/addons/membership/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/fr.po b/addons/membership/i18n/fr.po index d9ff330a619..ebfaa4f6e8a 100644 --- a/addons/membership/i18n/fr.po +++ b/addons/membership/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/gl.po b/addons/membership/i18n/gl.po index ba753763712..4130de9ba4f 100644 --- a/addons/membership/i18n/gl.po +++ b/addons/membership/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/hr.po b/addons/membership/i18n/hr.po index 0255ee459e2..76f9e81c7d6 100644 --- a/addons/membership/i18n/hr.po +++ b/addons/membership/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/hu.po b/addons/membership/i18n/hu.po index a8d3e01adff..4ee60cc1252 100644 --- a/addons/membership/i18n/hu.po +++ b/addons/membership/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/id.po b/addons/membership/i18n/id.po index cbf1a8c0785..839970843a7 100644 --- a/addons/membership/i18n/id.po +++ b/addons/membership/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/it.po b/addons/membership/i18n/it.po index 4a204b0c973..34ff8751f5b 100644 --- a/addons/membership/i18n/it.po +++ b/addons/membership/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ja.po b/addons/membership/i18n/ja.po index b7eadcae2d0..1e974848db1 100644 --- a/addons/membership/i18n/ja.po +++ b/addons/membership/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ko.po b/addons/membership/i18n/ko.po index 243f8253d3f..ef29159bc17 100644 --- a/addons/membership/i18n/ko.po +++ b/addons/membership/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/lt.po b/addons/membership/i18n/lt.po index c9190dc3701..7afefa57d3e 100644 --- a/addons/membership/i18n/lt.po +++ b/addons/membership/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/mk.po b/addons/membership/i18n/mk.po index eb4b35cafb2..1e2e6bd9e4f 100644 --- a/addons/membership/i18n/mk.po +++ b/addons/membership/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/mn.po b/addons/membership/i18n/mn.po index 6e411d9a769..b594ed4da0a 100644 --- a/addons/membership/i18n/mn.po +++ b/addons/membership/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/nl.po b/addons/membership/i18n/nl.po index 2cef46a03ff..bd992d8648d 100644 --- a/addons/membership/i18n/nl.po +++ b/addons/membership/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/nl_BE.po b/addons/membership/i18n/nl_BE.po index 10fdf8d9336..997caaf7fa1 100644 --- a/addons/membership/i18n/nl_BE.po +++ b/addons/membership/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pl.po b/addons/membership/i18n/pl.po index 38577ac6b3c..74788e51d46 100644 --- a/addons/membership/i18n/pl.po +++ b/addons/membership/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pt.po b/addons/membership/i18n/pt.po index 8a7d7c8b132..55dac92365d 100644 --- a/addons/membership/i18n/pt.po +++ b/addons/membership/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/pt_BR.po b/addons/membership/i18n/pt_BR.po index d1f324ef04c..df2d0becc12 100644 --- a/addons/membership/i18n/pt_BR.po +++ b/addons/membership/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ro.po b/addons/membership/i18n/ro.po index ab5e538ad73..7a6aac74803 100644 --- a/addons/membership/i18n/ro.po +++ b/addons/membership/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/ru.po b/addons/membership/i18n/ru.po index c31c48c0286..5e65273c3d4 100644 --- a/addons/membership/i18n/ru.po +++ b/addons/membership/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sk.po b/addons/membership/i18n/sk.po index 07dfcd5459f..46e9750533f 100644 --- a/addons/membership/i18n/sk.po +++ b/addons/membership/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sl.po b/addons/membership/i18n/sl.po index c9d65507f15..0eb4e1e3ba2 100644 --- a/addons/membership/i18n/sl.po +++ b/addons/membership/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sq.po b/addons/membership/i18n/sq.po index c04060510c8..0fdb327f44c 100644 --- a/addons/membership/i18n/sq.po +++ b/addons/membership/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sr@latin.po b/addons/membership/i18n/sr@latin.po index dbf24500a6e..e21c5a8744e 100644 --- a/addons/membership/i18n/sr@latin.po +++ b/addons/membership/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/sv.po b/addons/membership/i18n/sv.po index c5925f93352..d64e2cf819a 100644 --- a/addons/membership/i18n/sv.po +++ b/addons/membership/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/tlh.po b/addons/membership/i18n/tlh.po index 1309016d317..55d129c08ab 100644 --- a/addons/membership/i18n/tlh.po +++ b/addons/membership/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/tr.po b/addons/membership/i18n/tr.po index 7db674bbf97..96f37127bd2 100644 --- a/addons/membership/i18n/tr.po +++ b/addons/membership/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/uk.po b/addons/membership/i18n/uk.po index 861de559b9b..be427694a5f 100644 --- a/addons/membership/i18n/uk.po +++ b/addons/membership/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/vi.po b/addons/membership/i18n/vi.po index 75e740ca02d..f2736889890 100644 --- a/addons/membership/i18n/vi.po +++ b/addons/membership/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/zh_CN.po b/addons/membership/i18n/zh_CN.po index 80f84192ba4..e7ac79897d2 100644 --- a/addons/membership/i18n/zh_CN.po +++ b/addons/membership/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/membership/i18n/zh_TW.po b/addons/membership/i18n/zh_TW.po index 69b74e75996..25bb208de58 100644 --- a/addons/membership/i18n/zh_TW.po +++ b/addons/membership/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 diff --git a/addons/mrp/i18n/ar.po b/addons/mrp/i18n/ar.po index 4ad7992c2bf..62ac7290e76 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/mrp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index 6afc8158854..b0f17c5e9bf 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/mrp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index dab40436a32..afca4f8a427 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/mrp/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index 2364da7f73e..77a4e92b65a 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index c67d864f944..cb640ea173f 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/mrp/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/da.po b/addons/mrp/i18n/da.po index a898decdd5f..1e132447491 100644 --- a/addons/mrp/i18n/da.po +++ b/addons/mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/de.po b/addons/mrp/i18n/de.po index 75f80aedaf5..0fcc79ff148 100644 --- a/addons/mrp/i18n/de.po +++ b/addons/mrp/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index f5b85c1c48f..3aa2602deb8 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es.po b/addons/mrp/i18n/es.po index e46807ec04e..b872a4a61a5 100644 --- a/addons/mrp/i18n/es.po +++ b/addons/mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index a077e2e88a2..5cb77537c47 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_CL.po b/addons/mrp/i18n/es_CL.po index f0bd05cb338..0da159e46f8 100644 --- a/addons/mrp/i18n/es_CL.po +++ b/addons/mrp/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_CR.po b/addons/mrp/i18n/es_CR.po index ce47b81db55..6b7083957a5 100644 --- a/addons/mrp/i18n/es_CR.po +++ b/addons/mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index 11eef67fc3a..e2e5b0b15c6 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/es_MX.po b/addons/mrp/i18n/es_MX.po index 6960c83fd80..90a4004e033 100644 --- a/addons/mrp/i18n/es_MX.po +++ b/addons/mrp/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-24 05:11+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index 3ef375146ea..49a86bc0c77 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index 3990f31d5e2..68046baa2f8 100644 --- a/addons/mrp/i18n/fi.po +++ b/addons/mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/fr.po b/addons/mrp/i18n/fr.po index 3a02fc3ae98..8ac5d7e4be3 100644 --- a/addons/mrp/i18n/fr.po +++ b/addons/mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/gl.po b/addons/mrp/i18n/gl.po index a6c266da663..ef0919edf97 100644 --- a/addons/mrp/i18n/gl.po +++ b/addons/mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index 6bf67093fb7..c4bc87a2459 100644 --- a/addons/mrp/i18n/hi.po +++ b/addons/mrp/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index 4f8ef3643b2..b523c7bc063 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index 552b6baf573..82dbb81def2 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index 628f217ca9e..685347bdaba 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/it.po b/addons/mrp/i18n/it.po index 2a80133fdf6..29b99bdd69e 100644 --- a/addons/mrp/i18n/it.po +++ b/addons/mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ja.po b/addons/mrp/i18n/ja.po index c433144a3b6..bd2c8268c71 100644 --- a/addons/mrp/i18n/ja.po +++ b/addons/mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index eb63f3ea846..0089a72006c 100644 --- a/addons/mrp/i18n/ko.po +++ b/addons/mrp/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index a3fe39b4d23..2df0818359c 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/lv.po b/addons/mrp/i18n/lv.po index 5c913831206..062a4f9fbab 100644 --- a/addons/mrp/i18n/lv.po +++ b/addons/mrp/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/mk.po b/addons/mrp/i18n/mk.po index 40f6c40b5db..213acee6478 100644 --- a/addons/mrp/i18n/mk.po +++ b/addons/mrp/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: mrp diff --git a/addons/mrp/i18n/mn.po b/addons/mrp/i18n/mn.po index ad32c3b8edf..395541a5049 100644 --- a/addons/mrp/i18n/mn.po +++ b/addons/mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/nb.po b/addons/mrp/i18n/nb.po index 891c7be626b..0d2e138feb7 100644 --- a/addons/mrp/i18n/nb.po +++ b/addons/mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index 6d6e2c58014..4ece56919f5 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index 7cdb47e9286..dc59f540e4a 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index 00638e27511..a565a57d27b 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/pt.po b/addons/mrp/i18n/pt.po index a1f220edaf6..3135ae399fa 100644 --- a/addons/mrp/i18n/pt.po +++ b/addons/mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index 31aa5e25c24..a1001f260ef 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/mrp/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index 985013c1d7b..11ce1cdbd2e 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index 104ec0b4f0e..711132b8fba 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index faf8f4b89e5..da0ef06dccb 100644 --- a/addons/mrp/i18n/sk.po +++ b/addons/mrp/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 5a68282d21a..1b22525ea84 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index 2de635498db..743da60a5bf 100644 --- a/addons/mrp/i18n/sq.po +++ b/addons/mrp/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:49+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sr@latin.po b/addons/mrp/i18n/sr@latin.po index f545dca208a..e777381e806 100644 --- a/addons/mrp/i18n/sr@latin.po +++ b/addons/mrp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index e2f95379c30..d2e6c59078d 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index 9523d15e4da..326e80f11ff 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index 0eb8bcd49f7..547dee9ce86 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index 0c68417a50f..bf824b8db33 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index c9f64bb3294..2d2cbb812d4 100644 --- a/addons/mrp/i18n/vi.po +++ b/addons/mrp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 50647353899..0957d82eb1b 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_HK.po b/addons/mrp/i18n/zh_HK.po index 3b1f9ff2c0f..07980a35ce9 100644 --- a/addons/mrp/i18n/zh_HK.po +++ b/addons/mrp/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index c4d17fef842..1e09c97e122 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 diff --git a/addons/mrp_byproduct/i18n/ab.po b/addons/mrp_byproduct/i18n/ab.po index d1f68b09942..e114461bc82 100644 --- a/addons/mrp_byproduct/i18n/ab.po +++ b/addons/mrp_byproduct/i18n/ab.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ar.po b/addons/mrp_byproduct/i18n/ar.po index 9d0cfed12eb..70149c871e5 100644 --- a/addons/mrp_byproduct/i18n/ar.po +++ b/addons/mrp_byproduct/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/bg.po b/addons/mrp_byproduct/i18n/bg.po index 3661d8afe85..33d8e405415 100644 --- a/addons/mrp_byproduct/i18n/bg.po +++ b/addons/mrp_byproduct/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/bs.po b/addons/mrp_byproduct/i18n/bs.po index d4cff0e5835..88a07b88a57 100644 --- a/addons/mrp_byproduct/i18n/bs.po +++ b/addons/mrp_byproduct/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ca.po b/addons/mrp_byproduct/i18n/ca.po index ce94c2a8aa1..e67912ea2a6 100644 --- a/addons/mrp_byproduct/i18n/ca.po +++ b/addons/mrp_byproduct/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/cs.po b/addons/mrp_byproduct/i18n/cs.po index ccebe9590f3..f095ae9df56 100644 --- a/addons/mrp_byproduct/i18n/cs.po +++ b/addons/mrp_byproduct/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/da.po b/addons/mrp_byproduct/i18n/da.po index 079516de5f4..f63bf2550f9 100644 --- a/addons/mrp_byproduct/i18n/da.po +++ b/addons/mrp_byproduct/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/de.po b/addons/mrp_byproduct/i18n/de.po index c036d24cd71..f76041f6b2b 100644 --- a/addons/mrp_byproduct/i18n/de.po +++ b/addons/mrp_byproduct/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es.po b/addons/mrp_byproduct/i18n/es.po index 9486f86fec6..cdda71ab6cc 100644 --- a/addons/mrp_byproduct/i18n/es.po +++ b/addons/mrp_byproduct/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_AR.po b/addons/mrp_byproduct/i18n/es_AR.po index 64ea17e7309..d4328df8fb4 100644 --- a/addons/mrp_byproduct/i18n/es_AR.po +++ b/addons/mrp_byproduct/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_CR.po b/addons/mrp_byproduct/i18n/es_CR.po index 0ae9a899564..80235d80aab 100644 --- a/addons/mrp_byproduct/i18n/es_CR.po +++ b/addons/mrp_byproduct/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/es_EC.po b/addons/mrp_byproduct/i18n/es_EC.po index 081c365d735..a72bb440382 100644 --- a/addons/mrp_byproduct/i18n/es_EC.po +++ b/addons/mrp_byproduct/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/et.po b/addons/mrp_byproduct/i18n/et.po index 32829cb24d1..70f9d8cdaa2 100644 --- a/addons/mrp_byproduct/i18n/et.po +++ b/addons/mrp_byproduct/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/fi.po b/addons/mrp_byproduct/i18n/fi.po index 37ad64030db..c102a10c3e2 100644 --- a/addons/mrp_byproduct/i18n/fi.po +++ b/addons/mrp_byproduct/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/fr.po b/addons/mrp_byproduct/i18n/fr.po index a9802abbe1a..b228fa12022 100644 --- a/addons/mrp_byproduct/i18n/fr.po +++ b/addons/mrp_byproduct/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/gl.po b/addons/mrp_byproduct/i18n/gl.po index 9162f2fda6f..4eeb0569070 100644 --- a/addons/mrp_byproduct/i18n/gl.po +++ b/addons/mrp_byproduct/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/hr.po b/addons/mrp_byproduct/i18n/hr.po index 3d6ec6f7871..6e58ec37c36 100644 --- a/addons/mrp_byproduct/i18n/hr.po +++ b/addons/mrp_byproduct/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/hu.po b/addons/mrp_byproduct/i18n/hu.po index 878e3e42fca..747af8f0426 100644 --- a/addons/mrp_byproduct/i18n/hu.po +++ b/addons/mrp_byproduct/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/id.po b/addons/mrp_byproduct/i18n/id.po index 7f131a9b8dc..f29cfde3e90 100644 --- a/addons/mrp_byproduct/i18n/id.po +++ b/addons/mrp_byproduct/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/it.po b/addons/mrp_byproduct/i18n/it.po index a11c8ec786e..e75b58930f1 100644 --- a/addons/mrp_byproduct/i18n/it.po +++ b/addons/mrp_byproduct/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ja.po b/addons/mrp_byproduct/i18n/ja.po index f3c87b0c02d..cceeaa730a5 100644 --- a/addons/mrp_byproduct/i18n/ja.po +++ b/addons/mrp_byproduct/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ko.po b/addons/mrp_byproduct/i18n/ko.po index 982e27b6e31..0bf2cf0dfb2 100644 --- a/addons/mrp_byproduct/i18n/ko.po +++ b/addons/mrp_byproduct/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/lt.po b/addons/mrp_byproduct/i18n/lt.po index d8cd4abfc46..8155e65be99 100644 --- a/addons/mrp_byproduct/i18n/lt.po +++ b/addons/mrp_byproduct/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/lv.po b/addons/mrp_byproduct/i18n/lv.po index 9ca970ac8b5..e701bb708f0 100644 --- a/addons/mrp_byproduct/i18n/lv.po +++ b/addons/mrp_byproduct/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/mk.po b/addons/mrp_byproduct/i18n/mk.po index e503bcefc7d..49498911fe2 100644 --- a/addons/mrp_byproduct/i18n/mk.po +++ b/addons/mrp_byproduct/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/mn.po b/addons/mrp_byproduct/i18n/mn.po index f002b04c49b..a7f53a9fa47 100644 --- a/addons/mrp_byproduct/i18n/mn.po +++ b/addons/mrp_byproduct/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nb.po b/addons/mrp_byproduct/i18n/nb.po index 17b24a16c18..51daad8dd15 100644 --- a/addons/mrp_byproduct/i18n/nb.po +++ b/addons/mrp_byproduct/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nl.po b/addons/mrp_byproduct/i18n/nl.po index b31d2c3566a..e63996ab571 100644 --- a/addons/mrp_byproduct/i18n/nl.po +++ b/addons/mrp_byproduct/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nl_BE.po b/addons/mrp_byproduct/i18n/nl_BE.po index 4830f238b58..0255e9fd1fc 100644 --- a/addons/mrp_byproduct/i18n/nl_BE.po +++ b/addons/mrp_byproduct/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/oc.po b/addons/mrp_byproduct/i18n/oc.po index cc532e1368d..17e0c132b1f 100644 --- a/addons/mrp_byproduct/i18n/oc.po +++ b/addons/mrp_byproduct/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pl.po b/addons/mrp_byproduct/i18n/pl.po index a16290019af..a41c95c5be4 100644 --- a/addons/mrp_byproduct/i18n/pl.po +++ b/addons/mrp_byproduct/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pt.po b/addons/mrp_byproduct/i18n/pt.po index 9b93c19a567..523ec06ea62 100644 --- a/addons/mrp_byproduct/i18n/pt.po +++ b/addons/mrp_byproduct/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/pt_BR.po b/addons/mrp_byproduct/i18n/pt_BR.po index 27a854e6a52..8fc6e0d1fcf 100644 --- a/addons/mrp_byproduct/i18n/pt_BR.po +++ b/addons/mrp_byproduct/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ro.po b/addons/mrp_byproduct/i18n/ro.po index 1be41d61730..d98c983b745 100644 --- a/addons/mrp_byproduct/i18n/ro.po +++ b/addons/mrp_byproduct/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/ru.po b/addons/mrp_byproduct/i18n/ru.po index 449a472cc3b..f50ca970540 100644 --- a/addons/mrp_byproduct/i18n/ru.po +++ b/addons/mrp_byproduct/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sk.po b/addons/mrp_byproduct/i18n/sk.po index 6d5c9102004..ab78ffe360c 100644 --- a/addons/mrp_byproduct/i18n/sk.po +++ b/addons/mrp_byproduct/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sl.po b/addons/mrp_byproduct/i18n/sl.po index b1c23ff4b15..9b52883117d 100644 --- a/addons/mrp_byproduct/i18n/sl.po +++ b/addons/mrp_byproduct/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sq.po b/addons/mrp_byproduct/i18n/sq.po index c1dfedd0c6a..d58c7c305b2 100644 --- a/addons/mrp_byproduct/i18n/sq.po +++ b/addons/mrp_byproduct/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sr.po b/addons/mrp_byproduct/i18n/sr.po index 6893cbb86f3..29f1849ca2c 100644 --- a/addons/mrp_byproduct/i18n/sr.po +++ b/addons/mrp_byproduct/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sr@latin.po b/addons/mrp_byproduct/i18n/sr@latin.po index eea66101adf..b249c2e5361 100644 --- a/addons/mrp_byproduct/i18n/sr@latin.po +++ b/addons/mrp_byproduct/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/sv.po b/addons/mrp_byproduct/i18n/sv.po index abe40899d70..49f4b2133c5 100644 --- a/addons/mrp_byproduct/i18n/sv.po +++ b/addons/mrp_byproduct/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/tlh.po b/addons/mrp_byproduct/i18n/tlh.po index 734a6c4be52..464b4982b00 100644 --- a/addons/mrp_byproduct/i18n/tlh.po +++ b/addons/mrp_byproduct/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/tr.po b/addons/mrp_byproduct/i18n/tr.po index 2bcf10deed9..969faf0361b 100644 --- a/addons/mrp_byproduct/i18n/tr.po +++ b/addons/mrp_byproduct/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/uk.po b/addons/mrp_byproduct/i18n/uk.po index 69dc765577b..19b5269aa88 100644 --- a/addons/mrp_byproduct/i18n/uk.po +++ b/addons/mrp_byproduct/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/vi.po b/addons/mrp_byproduct/i18n/vi.po index 11278da8f53..a7718e18c58 100644 --- a/addons/mrp_byproduct/i18n/vi.po +++ b/addons/mrp_byproduct/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/zh_CN.po b/addons/mrp_byproduct/i18n/zh_CN.po index 4221ae6f672..e773da065ca 100644 --- a/addons/mrp_byproduct/i18n/zh_CN.po +++ b/addons/mrp_byproduct/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/zh_TW.po b/addons/mrp_byproduct/i18n/zh_TW.po index b4fd2327f93..a292e4e3990 100644 --- a/addons/mrp_byproduct/i18n/zh_TW.po +++ b/addons/mrp_byproduct/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_jit/i18n/ar.po b/addons/mrp_jit/i18n/ar.po index 0c1ae57f064..ea62d83f002 100644 --- a/addons/mrp_jit/i18n/ar.po +++ b/addons/mrp_jit/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/bg.po b/addons/mrp_jit/i18n/bg.po index 70aff9b7751..86578bd5a35 100644 --- a/addons/mrp_jit/i18n/bg.po +++ b/addons/mrp_jit/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/bs.po b/addons/mrp_jit/i18n/bs.po index 70e9ceaad57..572abd9dfed 100644 --- a/addons/mrp_jit/i18n/bs.po +++ b/addons/mrp_jit/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ca.po b/addons/mrp_jit/i18n/ca.po index 90cbbc9a16d..c85189c6e05 100644 --- a/addons/mrp_jit/i18n/ca.po +++ b/addons/mrp_jit/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/cs.po b/addons/mrp_jit/i18n/cs.po index 9ce2d6f8128..5147d4b59f6 100644 --- a/addons/mrp_jit/i18n/cs.po +++ b/addons/mrp_jit/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/da.po b/addons/mrp_jit/i18n/da.po index 77d37ee63ec..7b0d15c18db 100644 --- a/addons/mrp_jit/i18n/da.po +++ b/addons/mrp_jit/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/de.po b/addons/mrp_jit/i18n/de.po index 0cc885c965f..c898f5a37f0 100644 --- a/addons/mrp_jit/i18n/de.po +++ b/addons/mrp_jit/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/el.po b/addons/mrp_jit/i18n/el.po index 9520f1a5bca..dc6cfb48277 100644 --- a/addons/mrp_jit/i18n/el.po +++ b/addons/mrp_jit/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es.po b/addons/mrp_jit/i18n/es.po index 38f7bc7564f..06d90173bb4 100644 --- a/addons/mrp_jit/i18n/es.po +++ b/addons/mrp_jit/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_AR.po b/addons/mrp_jit/i18n/es_AR.po index bfa41394f79..b5c5eeb6c55 100644 --- a/addons/mrp_jit/i18n/es_AR.po +++ b/addons/mrp_jit/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_CR.po b/addons/mrp_jit/i18n/es_CR.po index a73889e5b17..2bcab833014 100644 --- a/addons/mrp_jit/i18n/es_CR.po +++ b/addons/mrp_jit/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/es_EC.po b/addons/mrp_jit/i18n/es_EC.po index 2d76825513f..1b84dff6336 100644 --- a/addons/mrp_jit/i18n/es_EC.po +++ b/addons/mrp_jit/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/et.po b/addons/mrp_jit/i18n/et.po index 05275033691..1c60266c431 100644 --- a/addons/mrp_jit/i18n/et.po +++ b/addons/mrp_jit/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/fi.po b/addons/mrp_jit/i18n/fi.po index 80e62fc5546..4c4eff67770 100644 --- a/addons/mrp_jit/i18n/fi.po +++ b/addons/mrp_jit/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/fr.po b/addons/mrp_jit/i18n/fr.po index a5580038b00..972f035b544 100644 --- a/addons/mrp_jit/i18n/fr.po +++ b/addons/mrp_jit/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/gl.po b/addons/mrp_jit/i18n/gl.po index 804bad3ff94..424f504f788 100644 --- a/addons/mrp_jit/i18n/gl.po +++ b/addons/mrp_jit/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/hr.po b/addons/mrp_jit/i18n/hr.po index b4cf0336908..dae51bcd33e 100644 --- a/addons/mrp_jit/i18n/hr.po +++ b/addons/mrp_jit/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/hu.po b/addons/mrp_jit/i18n/hu.po index 9e45010391d..d10e69f30dc 100644 --- a/addons/mrp_jit/i18n/hu.po +++ b/addons/mrp_jit/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/id.po b/addons/mrp_jit/i18n/id.po index 185932649a9..23f9bd3d28f 100644 --- a/addons/mrp_jit/i18n/id.po +++ b/addons/mrp_jit/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/it.po b/addons/mrp_jit/i18n/it.po index 2e60d27540f..866e1991f7a 100644 --- a/addons/mrp_jit/i18n/it.po +++ b/addons/mrp_jit/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ja.po b/addons/mrp_jit/i18n/ja.po index 6ca50042d2a..add5b2443f5 100644 --- a/addons/mrp_jit/i18n/ja.po +++ b/addons/mrp_jit/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/kab.po b/addons/mrp_jit/i18n/kab.po index cba2114ea42..97d7ac1ef93 100644 --- a/addons/mrp_jit/i18n/kab.po +++ b/addons/mrp_jit/i18n/kab.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ko.po b/addons/mrp_jit/i18n/ko.po index 1b2b71f4d01..9a53263afb7 100644 --- a/addons/mrp_jit/i18n/ko.po +++ b/addons/mrp_jit/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/lt.po b/addons/mrp_jit/i18n/lt.po index 36363d70d46..344e55492b8 100644 --- a/addons/mrp_jit/i18n/lt.po +++ b/addons/mrp_jit/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/mk.po b/addons/mrp_jit/i18n/mk.po index a3a229a7155..ee755f78277 100644 --- a/addons/mrp_jit/i18n/mk.po +++ b/addons/mrp_jit/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ml.po b/addons/mrp_jit/i18n/ml.po index 812303b4a34..8524d6eb8ad 100644 --- a/addons/mrp_jit/i18n/ml.po +++ b/addons/mrp_jit/i18n/ml.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/mn.po b/addons/mrp_jit/i18n/mn.po index c6ca1c0851d..86e877729aa 100644 --- a/addons/mrp_jit/i18n/mn.po +++ b/addons/mrp_jit/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nb.po b/addons/mrp_jit/i18n/nb.po index ee86209f3fb..fd7762e279d 100644 --- a/addons/mrp_jit/i18n/nb.po +++ b/addons/mrp_jit/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nl.po b/addons/mrp_jit/i18n/nl.po index e981b4bed72..0537cef3f13 100644 --- a/addons/mrp_jit/i18n/nl.po +++ b/addons/mrp_jit/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/nl_BE.po b/addons/mrp_jit/i18n/nl_BE.po index d8436e0ea82..d4655501a11 100644 --- a/addons/mrp_jit/i18n/nl_BE.po +++ b/addons/mrp_jit/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/oc.po b/addons/mrp_jit/i18n/oc.po index 23917a22e6c..28d3c6f2f7e 100644 --- a/addons/mrp_jit/i18n/oc.po +++ b/addons/mrp_jit/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pl.po b/addons/mrp_jit/i18n/pl.po index f734720630f..9be94010f5b 100644 --- a/addons/mrp_jit/i18n/pl.po +++ b/addons/mrp_jit/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pt.po b/addons/mrp_jit/i18n/pt.po index b7f9081134c..de5b8577806 100644 --- a/addons/mrp_jit/i18n/pt.po +++ b/addons/mrp_jit/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/pt_BR.po b/addons/mrp_jit/i18n/pt_BR.po index 7dc8523020f..adb48320ae8 100644 --- a/addons/mrp_jit/i18n/pt_BR.po +++ b/addons/mrp_jit/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ro.po b/addons/mrp_jit/i18n/ro.po index 60caa9e58de..b6c6d240b5a 100644 --- a/addons/mrp_jit/i18n/ro.po +++ b/addons/mrp_jit/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ru.po b/addons/mrp_jit/i18n/ru.po index 0c946cdaaba..8b07066eac7 100644 --- a/addons/mrp_jit/i18n/ru.po +++ b/addons/mrp_jit/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sk.po b/addons/mrp_jit/i18n/sk.po index 70e5fbc98fe..8dbab3854c8 100644 --- a/addons/mrp_jit/i18n/sk.po +++ b/addons/mrp_jit/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sl.po b/addons/mrp_jit/i18n/sl.po index 7d4f168363e..16c72eb028a 100644 --- a/addons/mrp_jit/i18n/sl.po +++ b/addons/mrp_jit/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sq.po b/addons/mrp_jit/i18n/sq.po index 083102d0e78..6afb37d8bb6 100644 --- a/addons/mrp_jit/i18n/sq.po +++ b/addons/mrp_jit/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sr.po b/addons/mrp_jit/i18n/sr.po index 527ff85ca6d..4ace4ca19e6 100644 --- a/addons/mrp_jit/i18n/sr.po +++ b/addons/mrp_jit/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sr@latin.po b/addons/mrp_jit/i18n/sr@latin.po index 6a38c4bdeb2..1ff715b175c 100644 --- a/addons/mrp_jit/i18n/sr@latin.po +++ b/addons/mrp_jit/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/sv.po b/addons/mrp_jit/i18n/sv.po index f96f303235c..a2597595988 100644 --- a/addons/mrp_jit/i18n/sv.po +++ b/addons/mrp_jit/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/ta.po b/addons/mrp_jit/i18n/ta.po index efc4fa75e59..4c6fb34ce21 100644 --- a/addons/mrp_jit/i18n/ta.po +++ b/addons/mrp_jit/i18n/ta.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/tr.po b/addons/mrp_jit/i18n/tr.po index 3adee9ddeb6..c02c5b7509a 100644 --- a/addons/mrp_jit/i18n/tr.po +++ b/addons/mrp_jit/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/uk.po b/addons/mrp_jit/i18n/uk.po index 3c18b2227a2..a6d6d87ec14 100644 --- a/addons/mrp_jit/i18n/uk.po +++ b/addons/mrp_jit/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/vi.po b/addons/mrp_jit/i18n/vi.po index c1f53294955..793cb0fa8d9 100644 --- a/addons/mrp_jit/i18n/vi.po +++ b/addons/mrp_jit/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/zh_CN.po b/addons/mrp_jit/i18n/zh_CN.po index 52abcd24b90..ac624c9370b 100644 --- a/addons/mrp_jit/i18n/zh_CN.po +++ b/addons/mrp_jit/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/zh_TW.po b/addons/mrp_jit/i18n/zh_TW.po index 6a9aec3e118..437d2e88c12 100644 --- a/addons/mrp_jit/i18n/zh_TW.po +++ b/addons/mrp_jit/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-18 06:54+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information diff --git a/addons/mrp_operations/i18n/ar.po b/addons/mrp_operations/i18n/ar.po index 7675f0e8896..0313a3231d8 100644 --- a/addons/mrp_operations/i18n/ar.po +++ b/addons/mrp_operations/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/bg.po b/addons/mrp_operations/i18n/bg.po index ae8c7eba68c..147e04c5646 100644 --- a/addons/mrp_operations/i18n/bg.po +++ b/addons/mrp_operations/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/bs.po b/addons/mrp_operations/i18n/bs.po index 80fb28ca2c3..ec3e907643c 100644 --- a/addons/mrp_operations/i18n/bs.po +++ b/addons/mrp_operations/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ca.po b/addons/mrp_operations/i18n/ca.po index b56ac970bb4..d5609561c4c 100644 --- a/addons/mrp_operations/i18n/ca.po +++ b/addons/mrp_operations/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/cs.po b/addons/mrp_operations/i18n/cs.po index 2a573b2d879..d50167c3121 100644 --- a/addons/mrp_operations/i18n/cs.po +++ b/addons/mrp_operations/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/da.po b/addons/mrp_operations/i18n/da.po index c5a0caf849d..77ed4fea8f1 100644 --- a/addons/mrp_operations/i18n/da.po +++ b/addons/mrp_operations/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/de.po b/addons/mrp_operations/i18n/de.po index b68ba3cae77..cae9028fe30 100644 --- a/addons/mrp_operations/i18n/de.po +++ b/addons/mrp_operations/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es.po b/addons/mrp_operations/i18n/es.po index e4b593242aa..bb3744e7566 100644 --- a/addons/mrp_operations/i18n/es.po +++ b/addons/mrp_operations/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es_AR.po b/addons/mrp_operations/i18n/es_AR.po index e3ee998e28d..69c4a569491 100644 --- a/addons/mrp_operations/i18n/es_AR.po +++ b/addons/mrp_operations/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es_CR.po b/addons/mrp_operations/i18n/es_CR.po index 0804821d6c3..30c4fc62ddd 100644 --- a/addons/mrp_operations/i18n/es_CR.po +++ b/addons/mrp_operations/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/es_EC.po b/addons/mrp_operations/i18n/es_EC.po index ef3ce96e54a..76462fb6892 100644 --- a/addons/mrp_operations/i18n/es_EC.po +++ b/addons/mrp_operations/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/et.po b/addons/mrp_operations/i18n/et.po index f271d211bad..e9b2cc0d689 100644 --- a/addons/mrp_operations/i18n/et.po +++ b/addons/mrp_operations/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/fi.po b/addons/mrp_operations/i18n/fi.po index 0fad176b90c..22b06f3c70a 100644 --- a/addons/mrp_operations/i18n/fi.po +++ b/addons/mrp_operations/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/fr.po b/addons/mrp_operations/i18n/fr.po index c8c3f819e08..9e40d63d8ed 100644 --- a/addons/mrp_operations/i18n/fr.po +++ b/addons/mrp_operations/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hi.po b/addons/mrp_operations/i18n/hi.po index 97375fa4438..c534b0393cb 100644 --- a/addons/mrp_operations/i18n/hi.po +++ b/addons/mrp_operations/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hr.po b/addons/mrp_operations/i18n/hr.po index 31543ea15e0..5ccf608c353 100644 --- a/addons/mrp_operations/i18n/hr.po +++ b/addons/mrp_operations/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/hu.po b/addons/mrp_operations/i18n/hu.po index 1225c4f3cab..f4620dff13c 100644 --- a/addons/mrp_operations/i18n/hu.po +++ b/addons/mrp_operations/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/id.po b/addons/mrp_operations/i18n/id.po index ab4fbd221ea..9993112d155 100644 --- a/addons/mrp_operations/i18n/id.po +++ b/addons/mrp_operations/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/it.po b/addons/mrp_operations/i18n/it.po index 12887df46dd..a5aef5f49d1 100644 --- a/addons/mrp_operations/i18n/it.po +++ b/addons/mrp_operations/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ja.po b/addons/mrp_operations/i18n/ja.po index 4e4b9401397..3c535628485 100644 --- a/addons/mrp_operations/i18n/ja.po +++ b/addons/mrp_operations/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ko.po b/addons/mrp_operations/i18n/ko.po index 9c60a379af6..a7230cb0499 100644 --- a/addons/mrp_operations/i18n/ko.po +++ b/addons/mrp_operations/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/lt.po b/addons/mrp_operations/i18n/lt.po index 630f77c8a4f..196bcd52e72 100644 --- a/addons/mrp_operations/i18n/lt.po +++ b/addons/mrp_operations/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/lv.po b/addons/mrp_operations/i18n/lv.po index 900a455998a..9159cfb2efb 100644 --- a/addons/mrp_operations/i18n/lv.po +++ b/addons/mrp_operations/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-19 06:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/mk.po b/addons/mrp_operations/i18n/mk.po index dfdf65de7b1..524e8077bb5 100644 --- a/addons/mrp_operations/i18n/mk.po +++ b/addons/mrp_operations/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/mn.po b/addons/mrp_operations/i18n/mn.po index a6b3358869f..011b46fb78a 100644 --- a/addons/mrp_operations/i18n/mn.po +++ b/addons/mrp_operations/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/nl.po b/addons/mrp_operations/i18n/nl.po index f0201ad5ec8..d671f16e67d 100644 --- a/addons/mrp_operations/i18n/nl.po +++ b/addons/mrp_operations/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/nl_BE.po b/addons/mrp_operations/i18n/nl_BE.po index f9e96ef20d7..01c71d54305 100644 --- a/addons/mrp_operations/i18n/nl_BE.po +++ b/addons/mrp_operations/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pl.po b/addons/mrp_operations/i18n/pl.po index c368bb329f3..0725a10b42d 100644 --- a/addons/mrp_operations/i18n/pl.po +++ b/addons/mrp_operations/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pt.po b/addons/mrp_operations/i18n/pt.po index f98300a9a1e..15fd46aaab2 100644 --- a/addons/mrp_operations/i18n/pt.po +++ b/addons/mrp_operations/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/pt_BR.po b/addons/mrp_operations/i18n/pt_BR.po index fbfa76106c6..bf1d1da235e 100644 --- a/addons/mrp_operations/i18n/pt_BR.po +++ b/addons/mrp_operations/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ro.po b/addons/mrp_operations/i18n/ro.po index 3fd990eb9e9..b87b59d86d9 100644 --- a/addons/mrp_operations/i18n/ro.po +++ b/addons/mrp_operations/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/ru.po b/addons/mrp_operations/i18n/ru.po index 7a9aab5a849..17576254eeb 100644 --- a/addons/mrp_operations/i18n/ru.po +++ b/addons/mrp_operations/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index af26a91602a..61f383655c1 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sq.po b/addons/mrp_operations/i18n/sq.po index 36bc41de622..53fe604065c 100644 --- a/addons/mrp_operations/i18n/sq.po +++ b/addons/mrp_operations/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sr.po b/addons/mrp_operations/i18n/sr.po index f5c6e5de27f..5f32a65fd11 100644 --- a/addons/mrp_operations/i18n/sr.po +++ b/addons/mrp_operations/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sr@latin.po b/addons/mrp_operations/i18n/sr@latin.po index 4c3fe3c0f84..a5678a08eed 100644 --- a/addons/mrp_operations/i18n/sr@latin.po +++ b/addons/mrp_operations/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/sv.po b/addons/mrp_operations/i18n/sv.po index d5d8555bc48..4f52eed2e15 100644 --- a/addons/mrp_operations/i18n/sv.po +++ b/addons/mrp_operations/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/tlh.po b/addons/mrp_operations/i18n/tlh.po index 77b88841b76..a47eb276458 100644 --- a/addons/mrp_operations/i18n/tlh.po +++ b/addons/mrp_operations/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/tr.po b/addons/mrp_operations/i18n/tr.po index 8587e0e1e5c..2e66f86f63e 100644 --- a/addons/mrp_operations/i18n/tr.po +++ b/addons/mrp_operations/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:22+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/uk.po b/addons/mrp_operations/i18n/uk.po index 3b05adfa971..81bb4cb2308 100644 --- a/addons/mrp_operations/i18n/uk.po +++ b/addons/mrp_operations/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:50+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/vi.po b/addons/mrp_operations/i18n/vi.po index 9f98162d253..a633c645915 100644 --- a/addons/mrp_operations/i18n/vi.po +++ b/addons/mrp_operations/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/zh_CN.po b/addons/mrp_operations/i18n/zh_CN.po index a4b27c4b1c2..5799c0c58b5 100644 --- a/addons/mrp_operations/i18n/zh_CN.po +++ b/addons/mrp_operations/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_operations/i18n/zh_TW.po b/addons/mrp_operations/i18n/zh_TW.po index b304758e986..e35569026f9 100644 --- a/addons/mrp_operations/i18n/zh_TW.po +++ b/addons/mrp_operations/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form diff --git a/addons/mrp_repair/i18n/ar.po b/addons/mrp_repair/i18n/ar.po index b6ce036ed0f..e7b52256b11 100644 --- a/addons/mrp_repair/i18n/ar.po +++ b/addons/mrp_repair/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/bg.po b/addons/mrp_repair/i18n/bg.po index c17e1f970d4..f80c52544d4 100644 --- a/addons/mrp_repair/i18n/bg.po +++ b/addons/mrp_repair/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/bs.po b/addons/mrp_repair/i18n/bs.po index c9f214962ee..c823f7641ee 100644 --- a/addons/mrp_repair/i18n/bs.po +++ b/addons/mrp_repair/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ca.po b/addons/mrp_repair/i18n/ca.po index 0f190c97d2e..33f4ad9873d 100644 --- a/addons/mrp_repair/i18n/ca.po +++ b/addons/mrp_repair/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/cs.po b/addons/mrp_repair/i18n/cs.po index 45cc43b7fd5..57620cbcd2a 100644 --- a/addons/mrp_repair/i18n/cs.po +++ b/addons/mrp_repair/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/da.po b/addons/mrp_repair/i18n/da.po index 45564449ee4..3f4e1df4bd0 100644 --- a/addons/mrp_repair/i18n/da.po +++ b/addons/mrp_repair/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/de.po b/addons/mrp_repair/i18n/de.po index 6b4cce54566..8dbda64823d 100644 --- a/addons/mrp_repair/i18n/de.po +++ b/addons/mrp_repair/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es.po b/addons/mrp_repair/i18n/es.po index f7731ce8481..46c659e8edd 100644 --- a/addons/mrp_repair/i18n/es.po +++ b/addons/mrp_repair/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_AR.po b/addons/mrp_repair/i18n/es_AR.po index 5efd6598b82..80df86d593c 100644 --- a/addons/mrp_repair/i18n/es_AR.po +++ b/addons/mrp_repair/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_CR.po b/addons/mrp_repair/i18n/es_CR.po index 9dbcd1b8eb0..e17ffb7fad6 100644 --- a/addons/mrp_repair/i18n/es_CR.po +++ b/addons/mrp_repair/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/es_EC.po b/addons/mrp_repair/i18n/es_EC.po index f0264ab3fcc..f8799f8b4b4 100644 --- a/addons/mrp_repair/i18n/es_EC.po +++ b/addons/mrp_repair/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/et.po b/addons/mrp_repair/i18n/et.po index aa346be3ec8..99d3d6472fb 100644 --- a/addons/mrp_repair/i18n/et.po +++ b/addons/mrp_repair/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/fi.po b/addons/mrp_repair/i18n/fi.po index 419e97f4f9a..a6dad78b3cd 100644 --- a/addons/mrp_repair/i18n/fi.po +++ b/addons/mrp_repair/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/fr.po b/addons/mrp_repair/i18n/fr.po index da24afd8171..44a2ed0e5c3 100644 --- a/addons/mrp_repair/i18n/fr.po +++ b/addons/mrp_repair/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hi.po b/addons/mrp_repair/i18n/hi.po index 6c367c2f65b..d11ec3fda82 100644 --- a/addons/mrp_repair/i18n/hi.po +++ b/addons/mrp_repair/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hr.po b/addons/mrp_repair/i18n/hr.po index 99b2ae78d1c..ab8a4c65575 100644 --- a/addons/mrp_repair/i18n/hr.po +++ b/addons/mrp_repair/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/hu.po b/addons/mrp_repair/i18n/hu.po index d424564afdb..caaa9fa3a95 100644 --- a/addons/mrp_repair/i18n/hu.po +++ b/addons/mrp_repair/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/id.po b/addons/mrp_repair/i18n/id.po index 3f96faabf5e..ddf384c5e50 100644 --- a/addons/mrp_repair/i18n/id.po +++ b/addons/mrp_repair/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/it.po b/addons/mrp_repair/i18n/it.po index 24324157cf8..9e8924b3101 100644 --- a/addons/mrp_repair/i18n/it.po +++ b/addons/mrp_repair/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ja.po b/addons/mrp_repair/i18n/ja.po index acf8a50565c..ae984d55265 100644 --- a/addons/mrp_repair/i18n/ja.po +++ b/addons/mrp_repair/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ko.po b/addons/mrp_repair/i18n/ko.po index 06057cfcf76..fbff631c7e6 100644 --- a/addons/mrp_repair/i18n/ko.po +++ b/addons/mrp_repair/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/lt.po b/addons/mrp_repair/i18n/lt.po index 66a559eb978..7d51166b8a9 100644 --- a/addons/mrp_repair/i18n/lt.po +++ b/addons/mrp_repair/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/lv.po b/addons/mrp_repair/i18n/lv.po index a77f01bd778..7101d1b4a23 100644 --- a/addons/mrp_repair/i18n/lv.po +++ b/addons/mrp_repair/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:24+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/mk.po b/addons/mrp_repair/i18n/mk.po index 95c5c1ead3a..5215884a8b8 100644 --- a/addons/mrp_repair/i18n/mk.po +++ b/addons/mrp_repair/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/mn.po b/addons/mrp_repair/i18n/mn.po index 042dfab62c6..6d1eff2ac0f 100644 --- a/addons/mrp_repair/i18n/mn.po +++ b/addons/mrp_repair/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/nl.po b/addons/mrp_repair/i18n/nl.po index a5c48d6cffb..2318ca8bb02 100644 --- a/addons/mrp_repair/i18n/nl.po +++ b/addons/mrp_repair/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/nl_BE.po b/addons/mrp_repair/i18n/nl_BE.po index f069c9d65c0..27ab72a0159 100644 --- a/addons/mrp_repair/i18n/nl_BE.po +++ b/addons/mrp_repair/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pl.po b/addons/mrp_repair/i18n/pl.po index 91d96fe8337..e56d1828c69 100644 --- a/addons/mrp_repair/i18n/pl.po +++ b/addons/mrp_repair/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pt.po b/addons/mrp_repair/i18n/pt.po index f2759df28b3..42bb1757249 100644 --- a/addons/mrp_repair/i18n/pt.po +++ b/addons/mrp_repair/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/pt_BR.po b/addons/mrp_repair/i18n/pt_BR.po index 42baba03fa8..9dad7d43e35 100644 --- a/addons/mrp_repair/i18n/pt_BR.po +++ b/addons/mrp_repair/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ro.po b/addons/mrp_repair/i18n/ro.po index 78564eb2087..dc847a68b26 100644 --- a/addons/mrp_repair/i18n/ro.po +++ b/addons/mrp_repair/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/ru.po b/addons/mrp_repair/i18n/ru.po index ad30389bec5..4a091226eb2 100644 --- a/addons/mrp_repair/i18n/ru.po +++ b/addons/mrp_repair/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sl.po b/addons/mrp_repair/i18n/sl.po index c3035f69c8e..4148df1b114 100644 --- a/addons/mrp_repair/i18n/sl.po +++ b/addons/mrp_repair/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sq.po b/addons/mrp_repair/i18n/sq.po index c9ec46fe774..5c8692fe217 100644 --- a/addons/mrp_repair/i18n/sq.po +++ b/addons/mrp_repair/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sr.po b/addons/mrp_repair/i18n/sr.po index 7b311763645..65c18b25c54 100644 --- a/addons/mrp_repair/i18n/sr.po +++ b/addons/mrp_repair/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sr@latin.po b/addons/mrp_repair/i18n/sr@latin.po index e9158543e16..1d33ac7c241 100644 --- a/addons/mrp_repair/i18n/sr@latin.po +++ b/addons/mrp_repair/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/sv.po b/addons/mrp_repair/i18n/sv.po index 36bfd8cd333..b5cca8e9b24 100644 --- a/addons/mrp_repair/i18n/sv.po +++ b/addons/mrp_repair/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/tlh.po b/addons/mrp_repair/i18n/tlh.po index 962fc25dcc7..e2fcbac96ab 100644 --- a/addons/mrp_repair/i18n/tlh.po +++ b/addons/mrp_repair/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/tr.po b/addons/mrp_repair/i18n/tr.po index 3a929b5819a..bdb19c831ad 100644 --- a/addons/mrp_repair/i18n/tr.po +++ b/addons/mrp_repair/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/uk.po b/addons/mrp_repair/i18n/uk.po index 16839b5f317..ce5dbd83739 100644 --- a/addons/mrp_repair/i18n/uk.po +++ b/addons/mrp_repair/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/vi.po b/addons/mrp_repair/i18n/vi.po index c576780af21..38f619ca271 100644 --- a/addons/mrp_repair/i18n/vi.po +++ b/addons/mrp_repair/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/zh_CN.po b/addons/mrp_repair/i18n/zh_CN.po index 9933f478eed..04cf8a324a0 100644 --- a/addons/mrp_repair/i18n/zh_CN.po +++ b/addons/mrp_repair/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/mrp_repair/i18n/zh_TW.po b/addons/mrp_repair/i18n/zh_TW.po index 0db5d6f4447..c654c5fa5a0 100644 --- a/addons/mrp_repair/i18n/zh_TW.po +++ b/addons/mrp_repair/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 diff --git a/addons/multi_company/i18n/ar.po b/addons/multi_company/i18n/ar.po index d277f54476d..fe516950386 100644 --- a/addons/multi_company/i18n/ar.po +++ b/addons/multi_company/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/bg.po b/addons/multi_company/i18n/bg.po index d4a59fe5ff8..2b5993a39ec 100644 --- a/addons/multi_company/i18n/bg.po +++ b/addons/multi_company/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/bs.po b/addons/multi_company/i18n/bs.po index 723f7a57eee..d145c3f1ef2 100644 --- a/addons/multi_company/i18n/bs.po +++ b/addons/multi_company/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ca.po b/addons/multi_company/i18n/ca.po index bd7ede1e8c8..fe3ddf8cbe7 100644 --- a/addons/multi_company/i18n/ca.po +++ b/addons/multi_company/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/cs.po b/addons/multi_company/i18n/cs.po index f9613e0f346..6d0b0343013 100644 --- a/addons/multi_company/i18n/cs.po +++ b/addons/multi_company/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/da.po b/addons/multi_company/i18n/da.po index f39115ba675..71de9b1ed69 100644 --- a/addons/multi_company/i18n/da.po +++ b/addons/multi_company/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:50+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/de.po b/addons/multi_company/i18n/de.po index f2140383d88..f0e862e3af9 100644 --- a/addons/multi_company/i18n/de.po +++ b/addons/multi_company/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es.po b/addons/multi_company/i18n/es.po index 13e15253d1b..5c3359a723d 100644 --- a/addons/multi_company/i18n/es.po +++ b/addons/multi_company/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es_CR.po b/addons/multi_company/i18n/es_CR.po index 666b42ba834..584dd9c84e1 100644 --- a/addons/multi_company/i18n/es_CR.po +++ b/addons/multi_company/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/es_EC.po b/addons/multi_company/i18n/es_EC.po index 8b32cec6e2f..6a4090ba6e4 100644 --- a/addons/multi_company/i18n/es_EC.po +++ b/addons/multi_company/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/et.po b/addons/multi_company/i18n/et.po index 27c2f4ef7cd..b6e0cc53585 100644 --- a/addons/multi_company/i18n/et.po +++ b/addons/multi_company/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/fi.po b/addons/multi_company/i18n/fi.po index 90dfa4aaf93..325551fb341 100644 --- a/addons/multi_company/i18n/fi.po +++ b/addons/multi_company/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/fr.po b/addons/multi_company/i18n/fr.po index 30e53ec0efa..68b8f923cab 100644 --- a/addons/multi_company/i18n/fr.po +++ b/addons/multi_company/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/gl.po b/addons/multi_company/i18n/gl.po index ee1af713356..d0b714a7c23 100644 --- a/addons/multi_company/i18n/gl.po +++ b/addons/multi_company/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/hr.po b/addons/multi_company/i18n/hr.po index 2e1d943d094..5c76e52a285 100644 --- a/addons/multi_company/i18n/hr.po +++ b/addons/multi_company/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/hu.po b/addons/multi_company/i18n/hu.po index e41b07d3b97..003a9263f7b 100644 --- a/addons/multi_company/i18n/hu.po +++ b/addons/multi_company/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/id.po b/addons/multi_company/i18n/id.po index 56bfe5fa9c0..564d376606e 100644 --- a/addons/multi_company/i18n/id.po +++ b/addons/multi_company/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/it.po b/addons/multi_company/i18n/it.po index 5b2fef8ecd3..849178831bd 100644 --- a/addons/multi_company/i18n/it.po +++ b/addons/multi_company/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ja.po b/addons/multi_company/i18n/ja.po index 744bc2fb52f..43a454365f1 100644 --- a/addons/multi_company/i18n/ja.po +++ b/addons/multi_company/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lo.po b/addons/multi_company/i18n/lo.po index 806cd96f85a..793a60ead32 100644 --- a/addons/multi_company/i18n/lo.po +++ b/addons/multi_company/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lt.po b/addons/multi_company/i18n/lt.po index eb90e1ec083..e860ef7facd 100644 --- a/addons/multi_company/i18n/lt.po +++ b/addons/multi_company/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/lv.po b/addons/multi_company/i18n/lv.po index 0596bcde069..5281221e36d 100644 --- a/addons/multi_company/i18n/lv.po +++ b/addons/multi_company/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/mk.po b/addons/multi_company/i18n/mk.po index b077b666761..ad580b70532 100644 --- a/addons/multi_company/i18n/mk.po +++ b/addons/multi_company/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/mn.po b/addons/multi_company/i18n/mn.po index 1fcc7db98a1..50f31a300e9 100644 --- a/addons/multi_company/i18n/mn.po +++ b/addons/multi_company/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/nb.po b/addons/multi_company/i18n/nb.po index de12afce269..62a125a8e25 100644 --- a/addons/multi_company/i18n/nb.po +++ b/addons/multi_company/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/nl.po b/addons/multi_company/i18n/nl.po index b4bee53d2cf..3b9774063f1 100644 --- a/addons/multi_company/i18n/nl.po +++ b/addons/multi_company/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/oc.po b/addons/multi_company/i18n/oc.po index f7a82bedbe3..032a30b44af 100644 --- a/addons/multi_company/i18n/oc.po +++ b/addons/multi_company/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pl.po b/addons/multi_company/i18n/pl.po index 20361b0f5d7..ddb670d0e3f 100644 --- a/addons/multi_company/i18n/pl.po +++ b/addons/multi_company/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pt.po b/addons/multi_company/i18n/pt.po index 5afb4e6fd52..577fad3c741 100644 --- a/addons/multi_company/i18n/pt.po +++ b/addons/multi_company/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/pt_BR.po b/addons/multi_company/i18n/pt_BR.po index f49d3dc2b48..4f4ae81772c 100644 --- a/addons/multi_company/i18n/pt_BR.po +++ b/addons/multi_company/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ro.po b/addons/multi_company/i18n/ro.po index 7eab8891512..d456c9a70fb 100644 --- a/addons/multi_company/i18n/ro.po +++ b/addons/multi_company/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/ru.po b/addons/multi_company/i18n/ru.po index 32d932ce26a..85afdfc29fd 100644 --- a/addons/multi_company/i18n/ru.po +++ b/addons/multi_company/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sl.po b/addons/multi_company/i18n/sl.po index 75dcb807389..f40ef7d52d3 100644 --- a/addons/multi_company/i18n/sl.po +++ b/addons/multi_company/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sr.po b/addons/multi_company/i18n/sr.po index ee4b1e0c548..74fc88d6f2b 100644 --- a/addons/multi_company/i18n/sr.po +++ b/addons/multi_company/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sr@latin.po b/addons/multi_company/i18n/sr@latin.po index 9bc8c99810f..91c8702d5bd 100644 --- a/addons/multi_company/i18n/sr@latin.po +++ b/addons/multi_company/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/sv.po b/addons/multi_company/i18n/sv.po index 07fb41c120c..b5f8af67b6b 100644 --- a/addons/multi_company/i18n/sv.po +++ b/addons/multi_company/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/tr.po b/addons/multi_company/i18n/tr.po index 1b68c7fe098..9be2d5fe3e1 100644 --- a/addons/multi_company/i18n/tr.po +++ b/addons/multi_company/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/uk.po b/addons/multi_company/i18n/uk.po index 0f23591ebd1..2fb79ed215c 100644 --- a/addons/multi_company/i18n/uk.po +++ b/addons/multi_company/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/vi.po b/addons/multi_company/i18n/vi.po index bc6e6b92611..39f62f4809f 100644 --- a/addons/multi_company/i18n/vi.po +++ b/addons/multi_company/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/zh_CN.po b/addons/multi_company/i18n/zh_CN.po index c9a71b9f3e5..b7ae1d42ae7 100644 --- a/addons/multi_company/i18n/zh_CN.po +++ b/addons/multi_company/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/multi_company/i18n/zh_TW.po b/addons/multi_company/i18n/zh_TW.po index f6eb6c1df36..c1668806634 100644 --- a/addons/multi_company/i18n/zh_TW.po +++ b/addons/multi_company/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/note/i18n/cs.po b/addons/note/i18n/cs.po new file mode 100644 index 00000000000..6896e7f1275 --- /dev/null +++ b/addons/note/i18n/cs.po @@ -0,0 +1,279 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-27 09:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: note +#: field:note.note,memo:0 +msgid "Note Content" +msgstr "" + +#. module: note +#: view:note.stage:0 +msgid "Stages of Notes" +msgstr "" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_04 +#: model:note.stage,name:note.note_stage_02 +msgid "This Week" +msgstr "" + +#. module: note +#: model:ir.model,name:note.model_base_config_settings +msgid "base.config.settings" +msgstr "" + +#. module: note +#: model:ir.model,name:note.model_note_tag +msgid "Note Tag" +msgstr "" + +#. module: note +#: model:res.groups,name:note.group_note_fancy +msgid "Notes / Fancy mode" +msgstr "" + +#. module: note +#: model:ir.model,name:note.model_note_note +#: view:note.note:0 +msgid "Note" +msgstr "" + +#. module: note +#: view:note.note:0 +msgid "Group By..." +msgstr "" + +#. module: note +#: field:note.note,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: note +#: model:ir.actions.act_window,help:note.action_note_note +msgid "" +"

\n" +" Click to add a personal note.\n" +"

\n" +" Use notes to organize personal tasks or notes. All\n" +" notes are private; no one else will be able to see them. " +"However\n" +" you can share some notes with other people by inviting " +"followers\n" +" on the note. (Useful for meeting minutes, especially if\n" +" you activate the pad feature for collaborative writings).\n" +"

\n" +" You can customize how you process your notes/tasks by adding,\n" +" removing or modifying columns.\n" +"

\n" +" " +msgstr "" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_01 +#: model:note.stage,name:note.note_stage_01 +msgid "Today" +msgstr "" + +#. module: note +#: model:ir.model,name:note.model_res_users +msgid "Users" +msgstr "" + +#. module: note +#: view:note.note:0 +msgid "í" +msgstr "" + +#. module: note +#: view:note.stage:0 +msgid "Stage of Notes" +msgstr "" + +#. module: note +#: field:note.note,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: note +#: view:note.note:0 +msgid "By sticky note Category" +msgstr "" + +#. module: note +#: help:note.note,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: note +#: field:note.stage,name:0 +msgid "Stage Name" +msgstr "" + +#. module: note +#: field:note.note,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_02 +msgid "Tomorrow" +msgstr "" + +#. module: note +#: view:note.note:0 +#: field:note.note,open:0 +msgid "Active" +msgstr "" + +#. module: note +#: help:note.stage,user_id:0 +msgid "Owner of the note stage." +msgstr "" + +#. module: note +#: model:ir.ui.menu,name:note.menu_notes_stage +msgid "Categories" +msgstr "" + +#. module: note +#: view:note.note:0 +#: field:note.note,stage_id:0 +msgid "Stage" +msgstr "" + +#. module: note +#: field:note.tag,name:0 +msgid "Tag Name" +msgstr "" + +#. module: note +#: field:note.note,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: note +#: view:base.config.settings:0 +#: model:ir.actions.act_window,name:note.action_note_note +#: model:ir.ui.menu,name:note.menu_note_notes +#: view:note.note:0 +#: model:note.stage,name:note.note_stage_04 +msgid "Notes" +msgstr "" + +#. module: note +#: model:note.stage,name:note.demo_note_stage_03 +#: model:note.stage,name:note.note_stage_03 +msgid "Later" +msgstr "" + +#. module: note +#: model:ir.model,name:note.model_note_stage +msgid "Note Stage" +msgstr "" + +#. module: note +#: field:note.note,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: note +#: field:note.note,stage_ids:0 +msgid "Stages of Users" +msgstr "" + +#. module: note +#: field:note.note,name:0 +msgid "Note Summary" +msgstr "" + +#. module: note +#: model:ir.actions.act_window,name:note.action_note_stage +#: view:note.note:0 +msgid "Stages" +msgstr "" + +#. module: note +#: help:note.note,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: note +#: view:note.note:0 +msgid "Delete" +msgstr "" + +#. module: note +#: field:note.note,color:0 +msgid "Color Index" +msgstr "" + +#. module: note +#: field:note.note,sequence:0 +#: field:note.stage,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: note +#: view:note.note:0 +#: field:note.note,tag_ids:0 +msgid "Tags" +msgstr "" + +#. module: note +#: view:note.note:0 +msgid "Archive" +msgstr "" + +#. module: note +#: field:base.config.settings,module_note_pad:0 +msgid "Use collaborative pads (etherpad)" +msgstr "" + +#. module: note +#: help:note.note,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: note +#: field:base.config.settings,group_note_fancy:0 +msgid "Use fancy layouts for notes" +msgstr "" + +#. module: note +#: field:note.note,current_partner_id:0 +#: field:note.stage,user_id:0 +msgid "Owner" +msgstr "" + +#. module: note +#: help:note.stage,sequence:0 +msgid "Used to order the note stages" +msgstr "" + +#. module: note +#: field:note.note,date_done:0 +msgid "Date done" +msgstr "" + +#. module: note +#: field:note.stage,fold:0 +msgid "Folded by Default" +msgstr "" diff --git a/addons/note/i18n/de.po b/addons/note/i18n/de.po index d8d0301c37e..601dd2d9b1a 100644 --- a/addons/note/i18n/de.po +++ b/addons/note/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/es.po b/addons/note/i18n/es.po index a590c61d16e..fd774f096cf 100644 --- a/addons/note/i18n/es.po +++ b/addons/note/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/fr.po b/addons/note/i18n/fr.po index a682e4e2b86..cdae55729f9 100644 --- a/addons/note/i18n/fr.po +++ b/addons/note/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/hr.po b/addons/note/i18n/hr.po index 96d1a056d4d..d0182d91adc 100644 --- a/addons/note/i18n/hr.po +++ b/addons/note/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/hu.po b/addons/note/i18n/hu.po index 224cd59a723..e4d23dcb0c5 100644 --- a/addons/note/i18n/hu.po +++ b/addons/note/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/id.po b/addons/note/i18n/id.po index e40676b9c6d..d3046143c0b 100644 --- a/addons/note/i18n/id.po +++ b/addons/note/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/it.po b/addons/note/i18n/it.po index d20807bc32c..83ce7720793 100644 --- a/addons/note/i18n/it.po +++ b/addons/note/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/mk.po b/addons/note/i18n/mk.po index b0af09c8fd8..f1a0b6e9b21 100644 --- a/addons/note/i18n/mk.po +++ b/addons/note/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: note diff --git a/addons/note/i18n/mn.po b/addons/note/i18n/mn.po index 013e1e4d24c..26a3f3b72ad 100644 --- a/addons/note/i18n/mn.po +++ b/addons/note/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/nl.po b/addons/note/i18n/nl.po index 92c9ad3ad2a..ea651a37aa4 100644 --- a/addons/note/i18n/nl.po +++ b/addons/note/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pl.po b/addons/note/i18n/pl.po index f0e7e906a4f..bdc08f2d2de 100644 --- a/addons/note/i18n/pl.po +++ b/addons/note/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pt.po b/addons/note/i18n/pt.po index 1c24d651859..f930fcba88b 100644 --- a/addons/note/i18n/pt.po +++ b/addons/note/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pt_BR.po b/addons/note/i18n/pt_BR.po index 917b5f4f993..b32fd16c759 100644 --- a/addons/note/i18n/pt_BR.po +++ b/addons/note/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/ro.po b/addons/note/i18n/ro.po index 5f24d1c316b..82646e26c63 100644 --- a/addons/note/i18n/ro.po +++ b/addons/note/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/sl.po b/addons/note/i18n/sl.po index b183fd98e85..a12a867d70a 100644 --- a/addons/note/i18n/sl.po +++ b/addons/note/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/sv.po b/addons/note/i18n/sv.po index 65cbd3eb9b2..18f7e391434 100644 --- a/addons/note/i18n/sv.po +++ b/addons/note/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/tr.po b/addons/note/i18n/tr.po index f689e37a444..505fba449c9 100644 --- a/addons/note/i18n/tr.po +++ b/addons/note/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:22+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/zh_CN.po b/addons/note/i18n/zh_CN.po index 7b4dbf3e9e9..fa490cc00b5 100644 --- a/addons/note/i18n/zh_CN.po +++ b/addons/note/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note_pad/i18n/de.po b/addons/note_pad/i18n/de.po index eb9f609ad01..dd78b431f67 100644 --- a/addons/note_pad/i18n/de.po +++ b/addons/note_pad/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/es.po b/addons/note_pad/i18n/es.po index 9fbab54a5cc..8ff49f93b3d 100644 --- a/addons/note_pad/i18n/es.po +++ b/addons/note_pad/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/fr.po b/addons/note_pad/i18n/fr.po index 7996a19edec..5409ab734d7 100644 --- a/addons/note_pad/i18n/fr.po +++ b/addons/note_pad/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/hr.po b/addons/note_pad/i18n/hr.po index 0c518c18301..112f08779d8 100644 --- a/addons/note_pad/i18n/hr.po +++ b/addons/note_pad/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/hu.po b/addons/note_pad/i18n/hu.po index 764a2df3e01..a9709c1fe5c 100644 --- a/addons/note_pad/i18n/hu.po +++ b/addons/note_pad/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/it.po b/addons/note_pad/i18n/it.po index d5297ce1c27..161a00ac07c 100644 --- a/addons/note_pad/i18n/it.po +++ b/addons/note_pad/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/mk.po b/addons/note_pad/i18n/mk.po index 2e9c7a54ff7..be1d2eac14a 100644 --- a/addons/note_pad/i18n/mk.po +++ b/addons/note_pad/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/mn.po b/addons/note_pad/i18n/mn.po index 6190ac34315..113c9241d59 100644 --- a/addons/note_pad/i18n/mn.po +++ b/addons/note_pad/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/nl.po b/addons/note_pad/i18n/nl.po index 5b41c9fe7c0..22d456dc7c9 100644 --- a/addons/note_pad/i18n/nl.po +++ b/addons/note_pad/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pl.po b/addons/note_pad/i18n/pl.po index e7ab81ffeee..8f765d7a240 100644 --- a/addons/note_pad/i18n/pl.po +++ b/addons/note_pad/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pt.po b/addons/note_pad/i18n/pt.po index dfdeecb921b..db681aa0706 100644 --- a/addons/note_pad/i18n/pt.po +++ b/addons/note_pad/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/pt_BR.po b/addons/note_pad/i18n/pt_BR.po index 595872857f8..6ec35a79a73 100644 --- a/addons/note_pad/i18n/pt_BR.po +++ b/addons/note_pad/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/ro.po b/addons/note_pad/i18n/ro.po index a7a4a78eb6d..09f4fa61c47 100644 --- a/addons/note_pad/i18n/ro.po +++ b/addons/note_pad/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/ru.po b/addons/note_pad/i18n/ru.po index aea13f785d8..3a1053775fd 100644 --- a/addons/note_pad/i18n/ru.po +++ b/addons/note_pad/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/sl.po b/addons/note_pad/i18n/sl.po index a51ded4f656..aa0d45d018f 100644 --- a/addons/note_pad/i18n/sl.po +++ b/addons/note_pad/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/sv.po b/addons/note_pad/i18n/sv.po index fc35dfc48e0..4bcca07a0a8 100644 --- a/addons/note_pad/i18n/sv.po +++ b/addons/note_pad/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/tr.po b/addons/note_pad/i18n/tr.po index d437a08b677..a98b6d228ec 100644 --- a/addons/note_pad/i18n/tr.po +++ b/addons/note_pad/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/zh_CN.po b/addons/note_pad/i18n/zh_CN.po index ca55fc70636..8b0469f369d 100644 --- a/addons/note_pad/i18n/zh_CN.po +++ b/addons/note_pad/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/pad/i18n/ar.po b/addons/pad/i18n/ar.po index a7e13e446f5..41a0e5848ed 100644 --- a/addons/pad/i18n/ar.po +++ b/addons/pad/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/bg.po b/addons/pad/i18n/bg.po index b80e28dabdf..5eae83b0a9f 100644 --- a/addons/pad/i18n/bg.po +++ b/addons/pad/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ca.po b/addons/pad/i18n/ca.po index c4f52659046..8bf1fe43bc7 100644 --- a/addons/pad/i18n/ca.po +++ b/addons/pad/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/cs.po b/addons/pad/i18n/cs.po index 395c4345a5c..3e3f78441cf 100644 --- a/addons/pad/i18n/cs.po +++ b/addons/pad/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/da.po b/addons/pad/i18n/da.po index 565254107d6..922b0ad489d 100644 --- a/addons/pad/i18n/da.po +++ b/addons/pad/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/de.po b/addons/pad/i18n/de.po index f6bd8d4b8e4..5f63647bea4 100644 --- a/addons/pad/i18n/de.po +++ b/addons/pad/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/es.po b/addons/pad/i18n/es.po index 982c3b99ae7..389b374a129 100644 --- a/addons/pad/i18n/es.po +++ b/addons/pad/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/es_CR.po b/addons/pad/i18n/es_CR.po index d047c46366e..dbf199d35ce 100644 --- a/addons/pad/i18n/es_CR.po +++ b/addons/pad/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/fi.po b/addons/pad/i18n/fi.po index 88ff802fecd..19d4ef76009 100644 --- a/addons/pad/i18n/fi.po +++ b/addons/pad/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/fr.po b/addons/pad/i18n/fr.po index ee018c68ae1..7fe5e668e84 100644 --- a/addons/pad/i18n/fr.po +++ b/addons/pad/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/gl.po b/addons/pad/i18n/gl.po index 04945dc58cb..7df71645dc2 100644 --- a/addons/pad/i18n/gl.po +++ b/addons/pad/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/hr.po b/addons/pad/i18n/hr.po index d68aa93a5d8..9c9d66d31cd 100644 --- a/addons/pad/i18n/hr.po +++ b/addons/pad/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/hu.po b/addons/pad/i18n/hu.po index 2da0bf928fd..a771032ca6d 100644 --- a/addons/pad/i18n/hu.po +++ b/addons/pad/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/it.po b/addons/pad/i18n/it.po index 80a13bf9481..62d42f9fa8e 100644 --- a/addons/pad/i18n/it.po +++ b/addons/pad/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ja.po b/addons/pad/i18n/ja.po index b6c6a6249ee..335bd7bbb96 100644 --- a/addons/pad/i18n/ja.po +++ b/addons/pad/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/mk.po b/addons/pad/i18n/mk.po index 22c0abc574d..16eaa572bb5 100644 --- a/addons/pad/i18n/mk.po +++ b/addons/pad/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/mn.po b/addons/pad/i18n/mn.po index 3a95646bb2d..e5b70a6886e 100644 --- a/addons/pad/i18n/mn.po +++ b/addons/pad/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/nb.po b/addons/pad/i18n/nb.po index 7b47300d85d..75320f83b69 100644 --- a/addons/pad/i18n/nb.po +++ b/addons/pad/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/nl.po b/addons/pad/i18n/nl.po index 9a464a47016..f81d6f02f33 100644 --- a/addons/pad/i18n/nl.po +++ b/addons/pad/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pl.po b/addons/pad/i18n/pl.po index 4197e9a7b1d..0898073de5a 100644 --- a/addons/pad/i18n/pl.po +++ b/addons/pad/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pt.po b/addons/pad/i18n/pt.po index b8be20821e3..476a29fa3f9 100644 --- a/addons/pad/i18n/pt.po +++ b/addons/pad/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/pt_BR.po b/addons/pad/i18n/pt_BR.po index df6a2f4d5e9..da6f27ffa28 100644 --- a/addons/pad/i18n/pt_BR.po +++ b/addons/pad/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ro.po b/addons/pad/i18n/ro.po index dad50413466..09c387f4dfa 100644 --- a/addons/pad/i18n/ro.po +++ b/addons/pad/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/ru.po b/addons/pad/i18n/ru.po index 85a8083675a..d587cd1fad6 100644 --- a/addons/pad/i18n/ru.po +++ b/addons/pad/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/sl.po b/addons/pad/i18n/sl.po index 8c43c809a30..85c75e365b5 100644 --- a/addons/pad/i18n/sl.po +++ b/addons/pad/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/sr@latin.po b/addons/pad/i18n/sr@latin.po index 0713d0331d9..9aacec70405 100644 --- a/addons/pad/i18n/sr@latin.po +++ b/addons/pad/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/sv.po b/addons/pad/i18n/sv.po index 8ed909c7b8f..e2e0c818d7a 100644 --- a/addons/pad/i18n/sv.po +++ b/addons/pad/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/tr.po b/addons/pad/i18n/tr.po index cb3dfb8b969..dabd26ec246 100644 --- a/addons/pad/i18n/tr.po +++ b/addons/pad/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:22+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad/i18n/zh_CN.po b/addons/pad/i18n/zh_CN.po index b6d662169f9..43c0305a19a 100644 --- a/addons/pad/i18n/zh_CN.po +++ b/addons/pad/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad #. openerp-web diff --git a/addons/pad_project/i18n/ar.po b/addons/pad_project/i18n/ar.po index 27c881137a4..b7e72a63061 100644 --- a/addons/pad_project/i18n/ar.po +++ b/addons/pad_project/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/cs.po b/addons/pad_project/i18n/cs.po index 38a2a45960e..1c7f47db15c 100644 --- a/addons/pad_project/i18n/cs.po +++ b/addons/pad_project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/de.po b/addons/pad_project/i18n/de.po index 6c59d3eefd8..d5f123d29ff 100644 --- a/addons/pad_project/i18n/de.po +++ b/addons/pad_project/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/es.po b/addons/pad_project/i18n/es.po index c2f32b9539b..0b995c3d1c9 100644 --- a/addons/pad_project/i18n/es.po +++ b/addons/pad_project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/es_CR.po b/addons/pad_project/i18n/es_CR.po index 5ec70a68a1a..3559f2da9bb 100644 --- a/addons/pad_project/i18n/es_CR.po +++ b/addons/pad_project/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/fi.po b/addons/pad_project/i18n/fi.po index b76df96b5b7..f63d415b2c3 100644 --- a/addons/pad_project/i18n/fi.po +++ b/addons/pad_project/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/fr.po b/addons/pad_project/i18n/fr.po index 14e119b1bad..44ebb61ebec 100644 --- a/addons/pad_project/i18n/fr.po +++ b/addons/pad_project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/hr.po b/addons/pad_project/i18n/hr.po index 37be44f2e5d..0c97419d474 100644 --- a/addons/pad_project/i18n/hr.po +++ b/addons/pad_project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/hu.po b/addons/pad_project/i18n/hu.po index e0bc4194c22..e27ab55af1b 100644 --- a/addons/pad_project/i18n/hu.po +++ b/addons/pad_project/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/it.po b/addons/pad_project/i18n/it.po index e19ae626933..8c6073288c8 100644 --- a/addons/pad_project/i18n/it.po +++ b/addons/pad_project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ja.po b/addons/pad_project/i18n/ja.po index c0458d3b242..50141ee06e4 100644 --- a/addons/pad_project/i18n/ja.po +++ b/addons/pad_project/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/mk.po b/addons/pad_project/i18n/mk.po index 7a08de2a35b..ffda8035a27 100644 --- a/addons/pad_project/i18n/mk.po +++ b/addons/pad_project/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/mn.po b/addons/pad_project/i18n/mn.po index 5efff984543..79e300dd7bd 100644 --- a/addons/pad_project/i18n/mn.po +++ b/addons/pad_project/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/nb.po b/addons/pad_project/i18n/nb.po index adb5107a1bf..7b9880f564c 100644 --- a/addons/pad_project/i18n/nb.po +++ b/addons/pad_project/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/nl.po b/addons/pad_project/i18n/nl.po index 59707278341..77889c52165 100644 --- a/addons/pad_project/i18n/nl.po +++ b/addons/pad_project/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pl.po b/addons/pad_project/i18n/pl.po index 90862995ac4..688c05f1a93 100644 --- a/addons/pad_project/i18n/pl.po +++ b/addons/pad_project/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pt.po b/addons/pad_project/i18n/pt.po index fc97a609978..9bcecf61a08 100644 --- a/addons/pad_project/i18n/pt.po +++ b/addons/pad_project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/pt_BR.po b/addons/pad_project/i18n/pt_BR.po index e9bdec3493c..5b4a50d7f0e 100644 --- a/addons/pad_project/i18n/pt_BR.po +++ b/addons/pad_project/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ro.po b/addons/pad_project/i18n/ro.po index 7c72c9079fc..57fb9572699 100644 --- a/addons/pad_project/i18n/ro.po +++ b/addons/pad_project/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/ru.po b/addons/pad_project/i18n/ru.po index e19480cab98..3ebb1565c29 100644 --- a/addons/pad_project/i18n/ru.po +++ b/addons/pad_project/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/sl.po b/addons/pad_project/i18n/sl.po index 4c9bae34b74..72a47de70ce 100644 --- a/addons/pad_project/i18n/sl.po +++ b/addons/pad_project/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/sv.po b/addons/pad_project/i18n/sv.po index 424402ebf06..18b95e88eeb 100644 --- a/addons/pad_project/i18n/sv.po +++ b/addons/pad_project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/tr.po b/addons/pad_project/i18n/tr.po index 08fe43affa9..987663e2106 100644 --- a/addons/pad_project/i18n/tr.po +++ b/addons/pad_project/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/zh_CN.po b/addons/pad_project/i18n/zh_CN.po index 182eea35333..1d397a311f4 100644 --- a/addons/pad_project/i18n/zh_CN.po +++ b/addons/pad_project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/zh_TW.po b/addons/pad_project/i18n/zh_TW.po index bce94a0962f..d97738ee6bf 100644 --- a/addons/pad_project/i18n/zh_TW.po +++ b/addons/pad_project/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/plugin/i18n/ar.po b/addons/plugin/i18n/ar.po index 462fc04cf6b..7ec3338d41c 100644 --- a/addons/plugin/i18n/ar.po +++ b/addons/plugin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/cs.po b/addons/plugin/i18n/cs.po index 3178e5491a5..98766cd75d0 100644 --- a/addons/plugin/i18n/cs.po +++ b/addons/plugin/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/de.po b/addons/plugin/i18n/de.po index b2f15c2ee14..c7c703635a4 100644 --- a/addons/plugin/i18n/de.po +++ b/addons/plugin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/es.po b/addons/plugin/i18n/es.po index 956ca801008..1e6529d7c6c 100644 --- a/addons/plugin/i18n/es.po +++ b/addons/plugin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/es_CR.po b/addons/plugin/i18n/es_CR.po index 2ccdd9f2d7d..fd3f816278e 100644 --- a/addons/plugin/i18n/es_CR.po +++ b/addons/plugin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/fi.po b/addons/plugin/i18n/fi.po index 0578382f8b9..b65e1e37c11 100644 --- a/addons/plugin/i18n/fi.po +++ b/addons/plugin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/fr.po b/addons/plugin/i18n/fr.po index 06ec814564e..5f11cf14e68 100644 --- a/addons/plugin/i18n/fr.po +++ b/addons/plugin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/hr.po b/addons/plugin/i18n/hr.po index 808d016efb6..53b22bcd60a 100644 --- a/addons/plugin/i18n/hr.po +++ b/addons/plugin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/hu.po b/addons/plugin/i18n/hu.po index 35eef1ea4a9..deb6f51f785 100644 --- a/addons/plugin/i18n/hu.po +++ b/addons/plugin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/it.po b/addons/plugin/i18n/it.po index 53d67d69c27..e6596be8d99 100644 --- a/addons/plugin/i18n/it.po +++ b/addons/plugin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/ja.po b/addons/plugin/i18n/ja.po index 9575fdbff12..1c4ca7cb4a1 100644 --- a/addons/plugin/i18n/ja.po +++ b/addons/plugin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/mk.po b/addons/plugin/i18n/mk.po index 9b982e26725..20122226ba1 100644 --- a/addons/plugin/i18n/mk.po +++ b/addons/plugin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/mn.po b/addons/plugin/i18n/mn.po index 54a84bcbf0d..a6f39d78339 100644 --- a/addons/plugin/i18n/mn.po +++ b/addons/plugin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/nb.po b/addons/plugin/i18n/nb.po index d2a1dca9f36..ba764200a9e 100644 --- a/addons/plugin/i18n/nb.po +++ b/addons/plugin/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/nl.po b/addons/plugin/i18n/nl.po index d10f0ba165e..eff7800257c 100644 --- a/addons/plugin/i18n/nl.po +++ b/addons/plugin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/pt.po b/addons/plugin/i18n/pt.po index 9e6131a4814..74c39e2416a 100644 --- a/addons/plugin/i18n/pt.po +++ b/addons/plugin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/pt_BR.po b/addons/plugin/i18n/pt_BR.po index 78141a8d5a4..21bbe7fdfcc 100644 --- a/addons/plugin/i18n/pt_BR.po +++ b/addons/plugin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/ro.po b/addons/plugin/i18n/ro.po index 1f80c89cad3..7b679459264 100644 --- a/addons/plugin/i18n/ro.po +++ b/addons/plugin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/ru.po b/addons/plugin/i18n/ru.po index 0d4d6dad905..ed8b3b05420 100644 --- a/addons/plugin/i18n/ru.po +++ b/addons/plugin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/sl.po b/addons/plugin/i18n/sl.po index 708916ff16d..462563a24f7 100644 --- a/addons/plugin/i18n/sl.po +++ b/addons/plugin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/sv.po b/addons/plugin/i18n/sv.po index 453b419083b..f896cd738b9 100644 --- a/addons/plugin/i18n/sv.po +++ b/addons/plugin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/tr.po b/addons/plugin/i18n/tr.po index 35d9207dbf8..666ca479cd9 100644 --- a/addons/plugin/i18n/tr.po +++ b/addons/plugin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/zh_CN.po b/addons/plugin/i18n/zh_CN.po index 28d329a1a84..16471741579 100644 --- a/addons/plugin/i18n/zh_CN.po +++ b/addons/plugin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/zh_TW.po b/addons/plugin/i18n/zh_TW.po index 7d2af75fa0a..5171d41bd8c 100644 --- a/addons/plugin/i18n/zh_TW.po +++ b/addons/plugin/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin_outlook/i18n/ar.po b/addons/plugin_outlook/i18n/ar.po index 8ad6cceb2d8..ea9a8f1ddc0 100644 --- a/addons/plugin_outlook/i18n/ar.po +++ b/addons/plugin_outlook/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/bg.po b/addons/plugin_outlook/i18n/bg.po index 08b1fa9512b..1521f3fcc97 100644 --- a/addons/plugin_outlook/i18n/bg.po +++ b/addons/plugin_outlook/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ca.po b/addons/plugin_outlook/i18n/ca.po index c9a2885e1d0..cb84bdeaf99 100644 --- a/addons/plugin_outlook/i18n/ca.po +++ b/addons/plugin_outlook/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/da.po b/addons/plugin_outlook/i18n/da.po index 6410b790412..5eb329d47f7 100644 --- a/addons/plugin_outlook/i18n/da.po +++ b/addons/plugin_outlook/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/de.po b/addons/plugin_outlook/i18n/de.po index ff2791a7af9..22fea1110fb 100644 --- a/addons/plugin_outlook/i18n/de.po +++ b/addons/plugin_outlook/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/el.po b/addons/plugin_outlook/i18n/el.po index de52d255e4c..cebeb0a99fc 100644 --- a/addons/plugin_outlook/i18n/el.po +++ b/addons/plugin_outlook/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/es.po b/addons/plugin_outlook/i18n/es.po index 218a8006ad8..9cd897510ca 100644 --- a/addons/plugin_outlook/i18n/es.po +++ b/addons/plugin_outlook/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/es_CR.po b/addons/plugin_outlook/i18n/es_CR.po index 5d2cccffa15..e7f2b203f91 100644 --- a/addons/plugin_outlook/i18n/es_CR.po +++ b/addons/plugin_outlook/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/et.po b/addons/plugin_outlook/i18n/et.po index c95b7b1677e..6b9d5c5686d 100644 --- a/addons/plugin_outlook/i18n/et.po +++ b/addons/plugin_outlook/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/fi.po b/addons/plugin_outlook/i18n/fi.po index 5b3bc418763..269a266b65b 100644 --- a/addons/plugin_outlook/i18n/fi.po +++ b/addons/plugin_outlook/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/fr.po b/addons/plugin_outlook/i18n/fr.po index 659625ba9f8..6afb428ed3b 100644 --- a/addons/plugin_outlook/i18n/fr.po +++ b/addons/plugin_outlook/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/gl.po b/addons/plugin_outlook/i18n/gl.po index 620788e4730..576b91443da 100644 --- a/addons/plugin_outlook/i18n/gl.po +++ b/addons/plugin_outlook/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/hr.po b/addons/plugin_outlook/i18n/hr.po index 2d37f30230c..9fffacda0a1 100644 --- a/addons/plugin_outlook/i18n/hr.po +++ b/addons/plugin_outlook/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/hu.po b/addons/plugin_outlook/i18n/hu.po index 3dacb23d58b..6dc9ff3717b 100644 --- a/addons/plugin_outlook/i18n/hu.po +++ b/addons/plugin_outlook/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/id.po b/addons/plugin_outlook/i18n/id.po index cfd50c61033..9b22aa16e29 100644 --- a/addons/plugin_outlook/i18n/id.po +++ b/addons/plugin_outlook/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/it.po b/addons/plugin_outlook/i18n/it.po index d54cd3ffdf1..fecea7dde74 100644 --- a/addons/plugin_outlook/i18n/it.po +++ b/addons/plugin_outlook/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ja.po b/addons/plugin_outlook/i18n/ja.po index 3270e8ca1ab..6726c080d97 100644 --- a/addons/plugin_outlook/i18n/ja.po +++ b/addons/plugin_outlook/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/mk.po b/addons/plugin_outlook/i18n/mk.po index 024e2b9fe76..e351dea9744 100644 --- a/addons/plugin_outlook/i18n/mk.po +++ b/addons/plugin_outlook/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/mn.po b/addons/plugin_outlook/i18n/mn.po index f41b3eae88d..95bb9249801 100644 --- a/addons/plugin_outlook/i18n/mn.po +++ b/addons/plugin_outlook/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/nb.po b/addons/plugin_outlook/i18n/nb.po index c438f505319..39280629f2a 100644 --- a/addons/plugin_outlook/i18n/nb.po +++ b/addons/plugin_outlook/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/nl.po b/addons/plugin_outlook/i18n/nl.po index 273685b468c..b20f05f02d5 100644 --- a/addons/plugin_outlook/i18n/nl.po +++ b/addons/plugin_outlook/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pl.po b/addons/plugin_outlook/i18n/pl.po index da05648c978..204e32ab921 100644 --- a/addons/plugin_outlook/i18n/pl.po +++ b/addons/plugin_outlook/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pt.po b/addons/plugin_outlook/i18n/pt.po index a5879523a9e..428ba3cbd22 100644 --- a/addons/plugin_outlook/i18n/pt.po +++ b/addons/plugin_outlook/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/pt_BR.po b/addons/plugin_outlook/i18n/pt_BR.po index 0fc96ba659b..6f4682f0f66 100644 --- a/addons/plugin_outlook/i18n/pt_BR.po +++ b/addons/plugin_outlook/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ro.po b/addons/plugin_outlook/i18n/ro.po index d99d07b3d49..40ac51592a6 100644 --- a/addons/plugin_outlook/i18n/ro.po +++ b/addons/plugin_outlook/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/ru.po b/addons/plugin_outlook/i18n/ru.po index b0cbc5c667d..919a4a01154 100644 --- a/addons/plugin_outlook/i18n/ru.po +++ b/addons/plugin_outlook/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/sl.po b/addons/plugin_outlook/i18n/sl.po index c5127e2c9b7..9a2c405def0 100644 --- a/addons/plugin_outlook/i18n/sl.po +++ b/addons/plugin_outlook/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/sr@latin.po b/addons/plugin_outlook/i18n/sr@latin.po index e5f304b2778..d6409d435bf 100644 --- a/addons/plugin_outlook/i18n/sr@latin.po +++ b/addons/plugin_outlook/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/sv.po b/addons/plugin_outlook/i18n/sv.po index dbd36aa0348..325aadb1a19 100644 --- a/addons/plugin_outlook/i18n/sv.po +++ b/addons/plugin_outlook/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/tr.po b/addons/plugin_outlook/i18n/tr.po index fe4431dd4de..409ac6cb5f0 100644 --- a/addons/plugin_outlook/i18n/tr.po +++ b/addons/plugin_outlook/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/zh_CN.po b/addons/plugin_outlook/i18n/zh_CN.po index bde4e3ea79a..2aff085e74b 100644 --- a/addons/plugin_outlook/i18n/zh_CN.po +++ b/addons/plugin_outlook/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_thunderbird/i18n/ar.po b/addons/plugin_thunderbird/i18n/ar.po index 57f25584a69..f9a16f0dcd0 100644 --- a/addons/plugin_thunderbird/i18n/ar.po +++ b/addons/plugin_thunderbird/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/bg.po b/addons/plugin_thunderbird/i18n/bg.po index 807ac8ac795..3eeb5e3f45f 100644 --- a/addons/plugin_thunderbird/i18n/bg.po +++ b/addons/plugin_thunderbird/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ca.po b/addons/plugin_thunderbird/i18n/ca.po index 68326fbca34..d3603c4eb7f 100644 --- a/addons/plugin_thunderbird/i18n/ca.po +++ b/addons/plugin_thunderbird/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/cs.po b/addons/plugin_thunderbird/i18n/cs.po index daaedbd96fd..2adee148f1a 100644 --- a/addons/plugin_thunderbird/i18n/cs.po +++ b/addons/plugin_thunderbird/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/da.po b/addons/plugin_thunderbird/i18n/da.po index e78040cfc5c..c02a2c02ead 100644 --- a/addons/plugin_thunderbird/i18n/da.po +++ b/addons/plugin_thunderbird/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/de.po b/addons/plugin_thunderbird/i18n/de.po index 90233e3f5b9..b65e793f846 100644 --- a/addons/plugin_thunderbird/i18n/de.po +++ b/addons/plugin_thunderbird/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/en_GB.po b/addons/plugin_thunderbird/i18n/en_GB.po index 0d577d326fd..6a7cd017664 100644 --- a/addons/plugin_thunderbird/i18n/en_GB.po +++ b/addons/plugin_thunderbird/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/en_US.po b/addons/plugin_thunderbird/i18n/en_US.po index fe882cc7fad..41ad3cd2a0b 100644 --- a/addons/plugin_thunderbird/i18n/en_US.po +++ b/addons/plugin_thunderbird/i18n/en_US.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/es.po b/addons/plugin_thunderbird/i18n/es.po index 80aba67ac7e..872b4133d4e 100644 --- a/addons/plugin_thunderbird/i18n/es.po +++ b/addons/plugin_thunderbird/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/es_CR.po b/addons/plugin_thunderbird/i18n/es_CR.po index 678b1f41a41..711415b7b3a 100644 --- a/addons/plugin_thunderbird/i18n/es_CR.po +++ b/addons/plugin_thunderbird/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/et.po b/addons/plugin_thunderbird/i18n/et.po index 1d48ac77845..abe2b2a8926 100644 --- a/addons/plugin_thunderbird/i18n/et.po +++ b/addons/plugin_thunderbird/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/eu.po b/addons/plugin_thunderbird/i18n/eu.po index a7ff065e921..8421f2336b2 100644 --- a/addons/plugin_thunderbird/i18n/eu.po +++ b/addons/plugin_thunderbird/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/fi.po b/addons/plugin_thunderbird/i18n/fi.po index 32b6a44e502..9204e83ddb0 100644 --- a/addons/plugin_thunderbird/i18n/fi.po +++ b/addons/plugin_thunderbird/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/fr.po b/addons/plugin_thunderbird/i18n/fr.po index 73197eb8ed0..21d8813edf6 100644 --- a/addons/plugin_thunderbird/i18n/fr.po +++ b/addons/plugin_thunderbird/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/gl.po b/addons/plugin_thunderbird/i18n/gl.po index aa60f3fb0db..d1cf5749420 100644 --- a/addons/plugin_thunderbird/i18n/gl.po +++ b/addons/plugin_thunderbird/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/hr.po b/addons/plugin_thunderbird/i18n/hr.po index ba98c80efab..be60d641c4c 100644 --- a/addons/plugin_thunderbird/i18n/hr.po +++ b/addons/plugin_thunderbird/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/hu.po b/addons/plugin_thunderbird/i18n/hu.po index e2eaee1baee..293ac1ce247 100644 --- a/addons/plugin_thunderbird/i18n/hu.po +++ b/addons/plugin_thunderbird/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/is.po b/addons/plugin_thunderbird/i18n/is.po index eba83524b0f..9127583562e 100644 --- a/addons/plugin_thunderbird/i18n/is.po +++ b/addons/plugin_thunderbird/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/it.po b/addons/plugin_thunderbird/i18n/it.po index 5071c287a61..c779df2a74b 100644 --- a/addons/plugin_thunderbird/i18n/it.po +++ b/addons/plugin_thunderbird/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ja.po b/addons/plugin_thunderbird/i18n/ja.po index 39758c341d8..921c6ff0f78 100644 --- a/addons/plugin_thunderbird/i18n/ja.po +++ b/addons/plugin_thunderbird/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/mk.po b/addons/plugin_thunderbird/i18n/mk.po index 619e0c27a48..fa9cde00c95 100644 --- a/addons/plugin_thunderbird/i18n/mk.po +++ b/addons/plugin_thunderbird/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/mn.po b/addons/plugin_thunderbird/i18n/mn.po index f9d298f10a0..b7ef475e96f 100644 --- a/addons/plugin_thunderbird/i18n/mn.po +++ b/addons/plugin_thunderbird/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/nb.po b/addons/plugin_thunderbird/i18n/nb.po index 14af21519d2..c54c7d6eedb 100644 --- a/addons/plugin_thunderbird/i18n/nb.po +++ b/addons/plugin_thunderbird/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/nl.po b/addons/plugin_thunderbird/i18n/nl.po index 2429063ec33..f91e94b39a6 100644 --- a/addons/plugin_thunderbird/i18n/nl.po +++ b/addons/plugin_thunderbird/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pl.po b/addons/plugin_thunderbird/i18n/pl.po index f8f8229f1c8..57710680f40 100644 --- a/addons/plugin_thunderbird/i18n/pl.po +++ b/addons/plugin_thunderbird/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pt.po b/addons/plugin_thunderbird/i18n/pt.po index de7b9f911b4..96ac0ad38da 100644 --- a/addons/plugin_thunderbird/i18n/pt.po +++ b/addons/plugin_thunderbird/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/pt_BR.po b/addons/plugin_thunderbird/i18n/pt_BR.po index 2eb5e88cc50..4cbd11c28ca 100644 --- a/addons/plugin_thunderbird/i18n/pt_BR.po +++ b/addons/plugin_thunderbird/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ro.po b/addons/plugin_thunderbird/i18n/ro.po index 5d4433e7dc2..81ceeec7a38 100644 --- a/addons/plugin_thunderbird/i18n/ro.po +++ b/addons/plugin_thunderbird/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/ru.po b/addons/plugin_thunderbird/i18n/ru.po index a524bad5509..89846fa5519 100644 --- a/addons/plugin_thunderbird/i18n/ru.po +++ b/addons/plugin_thunderbird/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sk.po b/addons/plugin_thunderbird/i18n/sk.po index 7f9eb8dc264..e2f38e44e45 100644 --- a/addons/plugin_thunderbird/i18n/sk.po +++ b/addons/plugin_thunderbird/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sl.po b/addons/plugin_thunderbird/i18n/sl.po index 180133c28dc..fc90d234583 100644 --- a/addons/plugin_thunderbird/i18n/sl.po +++ b/addons/plugin_thunderbird/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sr.po b/addons/plugin_thunderbird/i18n/sr.po index 615fabfc166..bb7818556ee 100644 --- a/addons/plugin_thunderbird/i18n/sr.po +++ b/addons/plugin_thunderbird/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sr@latin.po b/addons/plugin_thunderbird/i18n/sr@latin.po index 3557e86d7ad..af88bd49a5c 100644 --- a/addons/plugin_thunderbird/i18n/sr@latin.po +++ b/addons/plugin_thunderbird/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/sv.po b/addons/plugin_thunderbird/i18n/sv.po index 4b734b6027c..8a1582b54c8 100644 --- a/addons/plugin_thunderbird/i18n/sv.po +++ b/addons/plugin_thunderbird/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/tr.po b/addons/plugin_thunderbird/i18n/tr.po index a8cf8de5222..cfaa9b2287a 100644 --- a/addons/plugin_thunderbird/i18n/tr.po +++ b/addons/plugin_thunderbird/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/plugin_thunderbird/i18n/zh_CN.po b/addons/plugin_thunderbird/i18n/zh_CN.po index 217a7ffc6c8..f02f261cee4 100644 --- a/addons/plugin_thunderbird/i18n/zh_CN.po +++ b/addons/plugin_thunderbird/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 diff --git a/addons/point_of_sale/i18n/ar.po b/addons/point_of_sale/i18n/ar.po index a6a387f8117..65e8ddaa1bb 100644 --- a/addons/point_of_sale/i18n/ar.po +++ b/addons/point_of_sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/bg.po b/addons/point_of_sale/i18n/bg.po index 62961360cfd..afdd8342275 100644 --- a/addons/point_of_sale/i18n/bg.po +++ b/addons/point_of_sale/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/bs.po b/addons/point_of_sale/i18n/bs.po index 95bd3707e4d..0bb2b6d5fa0 100644 --- a/addons/point_of_sale/i18n/bs.po +++ b/addons/point_of_sale/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ca.po b/addons/point_of_sale/i18n/ca.po index 057f9d7e923..801f139d22b 100644 --- a/addons/point_of_sale/i18n/ca.po +++ b/addons/point_of_sale/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/cs.po b/addons/point_of_sale/i18n/cs.po index ebacf3168f0..05862f2323e 100644 --- a/addons/point_of_sale/i18n/cs.po +++ b/addons/point_of_sale/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Language: cs_CZ\n" "X-Source-Language: en\n" diff --git a/addons/point_of_sale/i18n/da.po b/addons/point_of_sale/i18n/da.po index d30efa86d1e..130b16ffaa5 100644 --- a/addons/point_of_sale/i18n/da.po +++ b/addons/point_of_sale/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/de.po b/addons/point_of_sale/i18n/de.po index ba4f4fe5033..fc3b47d9082 100644 --- a/addons/point_of_sale/i18n/de.po +++ b/addons/point_of_sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/el.po b/addons/point_of_sale/i18n/el.po index 5f00088d31b..ad56416f063 100644 --- a/addons/point_of_sale/i18n/el.po +++ b/addons/point_of_sale/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es.po b/addons/point_of_sale/i18n/es.po index 8e58ed5418c..57678f3271e 100644 --- a/addons/point_of_sale/i18n/es.po +++ b/addons/point_of_sale/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_AR.po b/addons/point_of_sale/i18n/es_AR.po index 8d88a96d04a..2bb3a32e4e5 100644 --- a/addons/point_of_sale/i18n/es_AR.po +++ b/addons/point_of_sale/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_CR.po b/addons/point_of_sale/i18n/es_CR.po index 9c54b3f2aba..dc6b3d62430 100644 --- a/addons/point_of_sale/i18n/es_CR.po +++ b/addons/point_of_sale/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/es_EC.po b/addons/point_of_sale/i18n/es_EC.po index 653e26710e1..80c6026b00a 100644 --- a/addons/point_of_sale/i18n/es_EC.po +++ b/addons/point_of_sale/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/et.po b/addons/point_of_sale/i18n/et.po index 8c4ca7e47e8..8ef5ccd5e81 100644 --- a/addons/point_of_sale/i18n/et.po +++ b/addons/point_of_sale/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/fi.po b/addons/point_of_sale/i18n/fi.po index 14796adaf52..b701f349855 100644 --- a/addons/point_of_sale/i18n/fi.po +++ b/addons/point_of_sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/fr.po b/addons/point_of_sale/i18n/fr.po index 0306df7991f..f8bfac18c4c 100644 --- a/addons/point_of_sale/i18n/fr.po +++ b/addons/point_of_sale/i18n/fr.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/hi.po b/addons/point_of_sale/i18n/hi.po index 8b684a7995d..e59d939e6e6 100644 --- a/addons/point_of_sale/i18n/hi.po +++ b/addons/point_of_sale/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/hr.po b/addons/point_of_sale/i18n/hr.po index 12abd684c08..2ecabc69116 100644 --- a/addons/point_of_sale/i18n/hr.po +++ b/addons/point_of_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/hu.po b/addons/point_of_sale/i18n/hu.po index 6576f82a98e..3610e5f794b 100644 --- a/addons/point_of_sale/i18n/hu.po +++ b/addons/point_of_sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/id.po b/addons/point_of_sale/i18n/id.po index 037f1d722e7..657dde1b109 100644 --- a/addons/point_of_sale/i18n/id.po +++ b/addons/point_of_sale/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/it.po b/addons/point_of_sale/i18n/it.po index 43dac5dd824..9314699ad61 100644 --- a/addons/point_of_sale/i18n/it.po +++ b/addons/point_of_sale/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ja.po b/addons/point_of_sale/i18n/ja.po index 5bf2af5b220..ce589e4bc4e 100644 --- a/addons/point_of_sale/i18n/ja.po +++ b/addons/point_of_sale/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ko.po b/addons/point_of_sale/i18n/ko.po index 5ec4be20463..316b8a697e2 100644 --- a/addons/point_of_sale/i18n/ko.po +++ b/addons/point_of_sale/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/lt.po b/addons/point_of_sale/i18n/lt.po index 6f2c453fb33..364ecd23583 100644 --- a/addons/point_of_sale/i18n/lt.po +++ b/addons/point_of_sale/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/lv.po b/addons/point_of_sale/i18n/lv.po index 267b565b944..0976788a130 100644 --- a/addons/point_of_sale/i18n/lv.po +++ b/addons/point_of_sale/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/mk.po b/addons/point_of_sale/i18n/mk.po index a43a867c7af..020bcc1ffee 100644 --- a/addons/point_of_sale/i18n/mk.po +++ b/addons/point_of_sale/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: point_of_sale diff --git a/addons/point_of_sale/i18n/mn.po b/addons/point_of_sale/i18n/mn.po index 1596fedc5c2..9532189230d 100644 --- a/addons/point_of_sale/i18n/mn.po +++ b/addons/point_of_sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nb.po b/addons/point_of_sale/i18n/nb.po index 42302ca3059..334dc967b41 100644 --- a/addons/point_of_sale/i18n/nb.po +++ b/addons/point_of_sale/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nl.po b/addons/point_of_sale/i18n/nl.po index 1c646f90c09..80b0fbb75df 100644 --- a/addons/point_of_sale/i18n/nl.po +++ b/addons/point_of_sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/nl_BE.po b/addons/point_of_sale/i18n/nl_BE.po index d18f076d3b9..91312238aa6 100644 --- a/addons/point_of_sale/i18n/nl_BE.po +++ b/addons/point_of_sale/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pl.po b/addons/point_of_sale/i18n/pl.po index 51e3f520f16..d5e218620be 100644 --- a/addons/point_of_sale/i18n/pl.po +++ b/addons/point_of_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pt.po b/addons/point_of_sale/i18n/pt.po index 8d88a32c375..d62386d26b0 100644 --- a/addons/point_of_sale/i18n/pt.po +++ b/addons/point_of_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index a5b4f329c19..47f1889ce8b 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ro.po b/addons/point_of_sale/i18n/ro.po index a3a89428d83..3cdb70d4bda 100644 --- a/addons/point_of_sale/i18n/ro.po +++ b/addons/point_of_sale/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/ru.po b/addons/point_of_sale/i18n/ru.po index 589d5cf5d7e..c07a7563ecb 100644 --- a/addons/point_of_sale/i18n/ru.po +++ b/addons/point_of_sale/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sl.po b/addons/point_of_sale/i18n/sl.po index 1c699829da3..4e3e6e716a5 100644 --- a/addons/point_of_sale/i18n/sl.po +++ b/addons/point_of_sale/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sq.po b/addons/point_of_sale/i18n/sq.po index 153b997f8bb..7f8d7a9d06e 100644 --- a/addons/point_of_sale/i18n/sq.po +++ b/addons/point_of_sale/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:51+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:51+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sr.po b/addons/point_of_sale/i18n/sr.po index 294d91a9c45..5e27d455a7c 100644 --- a/addons/point_of_sale/i18n/sr.po +++ b/addons/point_of_sale/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sr@latin.po b/addons/point_of_sale/i18n/sr@latin.po index 779745085c0..0aaeae0ad39 100644 --- a/addons/point_of_sale/i18n/sr@latin.po +++ b/addons/point_of_sale/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/sv.po b/addons/point_of_sale/i18n/sv.po index 7c06794783e..4c0d770451e 100644 --- a/addons/point_of_sale/i18n/sv.po +++ b/addons/point_of_sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:52+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/tlh.po b/addons/point_of_sale/i18n/tlh.po index 35618bb971a..5e150b50529 100644 --- a/addons/point_of_sale/i18n/tlh.po +++ b/addons/point_of_sale/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/tr.po b/addons/point_of_sale/i18n/tr.po index bf4f73e81ec..2b7b1eda953 100644 --- a/addons/point_of_sale/i18n/tr.po +++ b/addons/point_of_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:37+0000\n" -"PO-Revision-Date: 2013-02-06 22:12+0000\n" -"Last-Translator: Ediz Duman \n" +"PO-Revision-Date: 2013-03-27 12:20+0000\n" +"Last-Translator: Volkan Gezer \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-08 05:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -1254,7 +1254,7 @@ msgstr "Günün Satışları" #: code:addons/point_of_sale/static/src/xml/pos.xml:324 #, python-format msgid "Welcome" -msgstr "Hoşgeldiniz" +msgstr "Hoş Geldiniz" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 diff --git a/addons/point_of_sale/i18n/uk.po b/addons/point_of_sale/i18n/uk.po index 571c800b3e7..562ab7d49f9 100644 --- a/addons/point_of_sale/i18n/uk.po +++ b/addons/point_of_sale/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/vi.po b/addons/point_of_sale/i18n/vi.po index 531c9d8fa0d..84ef4e1666d 100644 --- a/addons/point_of_sale/i18n/vi.po +++ b/addons/point_of_sale/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/zh_CN.po b/addons/point_of_sale/i18n/zh_CN.po index 45e38fc4648..332e8c7c1c3 100644 --- a/addons/point_of_sale/i18n/zh_CN.po +++ b/addons/point_of_sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/zh_HK.po b/addons/point_of_sale/i18n/zh_HK.po index 7592f9ed7a6..647dc907222 100644 --- a/addons/point_of_sale/i18n/zh_HK.po +++ b/addons/point_of_sale/i18n/zh_HK.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/point_of_sale/i18n/zh_TW.po b/addons/point_of_sale/i18n/zh_TW.po index 1da70086372..80b4cc7c933 100644 --- a/addons/point_of_sale/i18n/zh_TW.po +++ b/addons/point_of_sale/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:52+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 diff --git a/addons/portal/i18n/ar.po b/addons/portal/i18n/ar.po index 4aa62c0528f..aae1aa3cb88 100644 --- a/addons/portal/i18n/ar.po +++ b/addons/portal/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/bg.po b/addons/portal/i18n/bg.po index d03a08b4d8f..6f480c3da22 100644 --- a/addons/portal/i18n/bg.po +++ b/addons/portal/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/bs.po b/addons/portal/i18n/bs.po index 8dc7070e0f3..22923fe9d7e 100644 --- a/addons/portal/i18n/bs.po +++ b/addons/portal/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ca.po b/addons/portal/i18n/ca.po index 736abd5e682..d2ca718d036 100644 --- a/addons/portal/i18n/ca.po +++ b/addons/portal/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/cs.po b/addons/portal/i18n/cs.po index 0c872eb2528..a7356a0d452 100644 --- a/addons/portal/i18n/cs.po +++ b/addons/portal/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/da.po b/addons/portal/i18n/da.po index f194ce1b716..e02c64a35f5 100644 --- a/addons/portal/i18n/da.po +++ b/addons/portal/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/de.po b/addons/portal/i18n/de.po index 54e77cbed4a..61fc4608a6c 100644 --- a/addons/portal/i18n/de.po +++ b/addons/portal/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/es.po b/addons/portal/i18n/es.po index 08ea57f061c..a9850125a42 100644 --- a/addons/portal/i18n/es.po +++ b/addons/portal/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/es_CR.po b/addons/portal/i18n/es_CR.po index ee663253114..ba0ac743494 100644 --- a/addons/portal/i18n/es_CR.po +++ b/addons/portal/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/et.po b/addons/portal/i18n/et.po index 50bdd169959..169d97fb695 100644 --- a/addons/portal/i18n/et.po +++ b/addons/portal/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/fi.po b/addons/portal/i18n/fi.po index c74663ce93e..15a7ec89b08 100644 --- a/addons/portal/i18n/fi.po +++ b/addons/portal/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/fr.po b/addons/portal/i18n/fr.po index 0683e32fe5b..ae87d2e960c 100644 --- a/addons/portal/i18n/fr.po +++ b/addons/portal/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/hr.po b/addons/portal/i18n/hr.po index dc373257085..c862833c1cb 100644 --- a/addons/portal/i18n/hr.po +++ b/addons/portal/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/hu.po b/addons/portal/i18n/hu.po index 5f66db66d8d..110c98d7330 100644 --- a/addons/portal/i18n/hu.po +++ b/addons/portal/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: model:ir.model,name:portal.model_mail_mail diff --git a/addons/portal/i18n/id.po b/addons/portal/i18n/id.po index 138a57699a3..634d24b430b 100644 --- a/addons/portal/i18n/id.po +++ b/addons/portal/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/it.po b/addons/portal/i18n/it.po index 03eecd87176..8b0056aa653 100644 --- a/addons/portal/i18n/it.po +++ b/addons/portal/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ja.po b/addons/portal/i18n/ja.po index 3319d65e379..114fe3adabb 100644 --- a/addons/portal/i18n/ja.po +++ b/addons/portal/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/lo.po b/addons/portal/i18n/lo.po index 5f3c9fd27c6..d3f944dc116 100644 --- a/addons/portal/i18n/lo.po +++ b/addons/portal/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/lt.po b/addons/portal/i18n/lt.po index 610772c20d0..cc7ff9a7e17 100644 --- a/addons/portal/i18n/lt.po +++ b/addons/portal/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/mk.po b/addons/portal/i18n/mk.po index 6f387c345f7..5493ca2f4b7 100644 --- a/addons/portal/i18n/mk.po +++ b/addons/portal/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: portal diff --git a/addons/portal/i18n/mn.po b/addons/portal/i18n/mn.po index 0e724c9ec37..2fe1bd31163 100644 --- a/addons/portal/i18n/mn.po +++ b/addons/portal/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/nl.po b/addons/portal/i18n/nl.po index db1984a8fef..9f3942c828c 100644 --- a/addons/portal/i18n/nl.po +++ b/addons/portal/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/pl.po b/addons/portal/i18n/pl.po index 736f21419a7..c724fd26f3e 100644 --- a/addons/portal/i18n/pl.po +++ b/addons/portal/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/pt.po b/addons/portal/i18n/pt.po index ca9e1defc41..feef7c54035 100644 --- a/addons/portal/i18n/pt.po +++ b/addons/portal/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/pt_BR.po b/addons/portal/i18n/pt_BR.po index 2c747d5aeb5..6e104e1abb3 100644 --- a/addons/portal/i18n/pt_BR.po +++ b/addons/portal/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ro.po b/addons/portal/i18n/ro.po index 14a354f6976..0a673da5f22 100644 --- a/addons/portal/i18n/ro.po +++ b/addons/portal/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/ru.po b/addons/portal/i18n/ru.po index adb8ac1122c..a4c02bee74b 100644 --- a/addons/portal/i18n/ru.po +++ b/addons/portal/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/sl.po b/addons/portal/i18n/sl.po index 01e289ed717..f566ef768d7 100644 --- a/addons/portal/i18n/sl.po +++ b/addons/portal/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/sr.po b/addons/portal/i18n/sr.po index 91f4a91d632..d72c9c973a5 100644 --- a/addons/portal/i18n/sr.po +++ b/addons/portal/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/sv.po b/addons/portal/i18n/sv.po index 16f400b2f02..3628cc018c4 100644 --- a/addons/portal/i18n/sv.po +++ b/addons/portal/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/tr.po b/addons/portal/i18n/tr.po index b777edb3bf4..8d4fb0b9228 100644 --- a/addons/portal/i18n/tr.po +++ b/addons/portal/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/uk.po b/addons/portal/i18n/uk.po index 1d88f861a35..50d5b251daa 100644 --- a/addons/portal/i18n/uk.po +++ b/addons/portal/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/zh_CN.po b/addons/portal/i18n/zh_CN.po index f5bfd2358b0..4f1f106fe05 100644 --- a/addons/portal/i18n/zh_CN.po +++ b/addons/portal/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/zh_TW.po b/addons/portal/i18n/zh_TW.po index 20febfdfc96..acf0ec82a05 100644 --- a/addons/portal/i18n/zh_TW.po +++ b/addons/portal/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal_anonymous/i18n/cs.po b/addons/portal_anonymous/i18n/cs.po index c3fb388d0c5..783311a9bbf 100644 --- a/addons/portal_anonymous/i18n/cs.po +++ b/addons/portal_anonymous/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/es.po b/addons/portal_anonymous/i18n/es.po index 72fa49081ba..8d66de2a63f 100644 --- a/addons/portal_anonymous/i18n/es.po +++ b/addons/portal_anonymous/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/fr.po b/addons/portal_anonymous/i18n/fr.po index a93fc7e503e..1dd00bda373 100644 --- a/addons/portal_anonymous/i18n/fr.po +++ b/addons/portal_anonymous/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/hu.po b/addons/portal_anonymous/i18n/hu.po index 2306284a225..b5e19a80810 100644 --- a/addons/portal_anonymous/i18n/hu.po +++ b/addons/portal_anonymous/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/mk.po b/addons/portal_anonymous/i18n/mk.po index 39ac308c21f..9eae3fdc32a 100644 --- a/addons/portal_anonymous/i18n/mk.po +++ b/addons/portal_anonymous/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/mn.po b/addons/portal_anonymous/i18n/mn.po index 5694fae6ac6..5cc42b1de20 100644 --- a/addons/portal_anonymous/i18n/mn.po +++ b/addons/portal_anonymous/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/nl.po b/addons/portal_anonymous/i18n/nl.po index 28a6fc97ccb..7e1dd763c84 100644 --- a/addons/portal_anonymous/i18n/nl.po +++ b/addons/portal_anonymous/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/pt.po b/addons/portal_anonymous/i18n/pt.po index 6c495d20377..2e05786b5dc 100644 --- a/addons/portal_anonymous/i18n/pt.po +++ b/addons/portal_anonymous/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/pt_BR.po b/addons/portal_anonymous/i18n/pt_BR.po index 9bad268f3c2..3aed1c91926 100644 --- a/addons/portal_anonymous/i18n/pt_BR.po +++ b/addons/portal_anonymous/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/ro.po b/addons/portal_anonymous/i18n/ro.po index a43dd0d03ad..048fac1bffd 100644 --- a/addons/portal_anonymous/i18n/ro.po +++ b/addons/portal_anonymous/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/sl.po b/addons/portal_anonymous/i18n/sl.po index 09ea8f1502c..dbefb73a13c 100644 --- a/addons/portal_anonymous/i18n/sl.po +++ b/addons/portal_anonymous/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/sv.po b/addons/portal_anonymous/i18n/sv.po index 713b6c55b1f..afebc61a375 100644 --- a/addons/portal_anonymous/i18n/sv.po +++ b/addons/portal_anonymous/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_anonymous/i18n/tr.po b/addons/portal_anonymous/i18n/tr.po index b05e7cfba2c..e0d8e213f96 100644 --- a/addons/portal_anonymous/i18n/tr.po +++ b/addons/portal_anonymous/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_anonymous #. openerp-web diff --git a/addons/portal_claim/i18n/cs.po b/addons/portal_claim/i18n/cs.po index ab55431383b..496a3d69b56 100644 --- a/addons/portal_claim/i18n/cs.po +++ b/addons/portal_claim/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/de.po b/addons/portal_claim/i18n/de.po index 6b77dc2327b..edde98df7aa 100644 --- a/addons/portal_claim/i18n/de.po +++ b/addons/portal_claim/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/es.po b/addons/portal_claim/i18n/es.po index 4c853918f3f..fc2944d9742 100644 --- a/addons/portal_claim/i18n/es.po +++ b/addons/portal_claim/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/fr.po b/addons/portal_claim/i18n/fr.po index 14185bc3167..5a9fd948903 100644 --- a/addons/portal_claim/i18n/fr.po +++ b/addons/portal_claim/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/hr.po b/addons/portal_claim/i18n/hr.po index 52c1a1a3d35..8afb40da480 100644 --- a/addons/portal_claim/i18n/hr.po +++ b/addons/portal_claim/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/hu.po b/addons/portal_claim/i18n/hu.po index 00f973b239b..c8543748bb0 100644 --- a/addons/portal_claim/i18n/hu.po +++ b/addons/portal_claim/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/it.po b/addons/portal_claim/i18n/it.po index ad1adb6b617..0538fed4404 100644 --- a/addons/portal_claim/i18n/it.po +++ b/addons/portal_claim/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/mk.po b/addons/portal_claim/i18n/mk.po index 22dc92501af..1d7ff6f4422 100644 --- a/addons/portal_claim/i18n/mk.po +++ b/addons/portal_claim/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/nl.po b/addons/portal_claim/i18n/nl.po index 0f6aae9779b..5a82ddb79cc 100644 --- a/addons/portal_claim/i18n/nl.po +++ b/addons/portal_claim/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pl.po b/addons/portal_claim/i18n/pl.po index 0a97b27bf65..f290c9d5754 100644 --- a/addons/portal_claim/i18n/pl.po +++ b/addons/portal_claim/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pt.po b/addons/portal_claim/i18n/pt.po index 0d652f207e2..6bcb491f87e 100644 --- a/addons/portal_claim/i18n/pt.po +++ b/addons/portal_claim/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/pt_BR.po b/addons/portal_claim/i18n/pt_BR.po index f6d4a2cccf2..6f9bfb9aaa2 100644 --- a/addons/portal_claim/i18n/pt_BR.po +++ b/addons/portal_claim/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/ro.po b/addons/portal_claim/i18n/ro.po index 22d0498a960..850c901275f 100644 --- a/addons/portal_claim/i18n/ro.po +++ b/addons/portal_claim/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/sl.po b/addons/portal_claim/i18n/sl.po index 0df3a5466b1..f158303485f 100644 --- a/addons/portal_claim/i18n/sl.po +++ b/addons/portal_claim/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/tr.po b/addons/portal_claim/i18n/tr.po index 21b41d82a54..4396f4efdb2 100644 --- a/addons/portal_claim/i18n/tr.po +++ b/addons/portal_claim/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_claim/i18n/zh_CN.po b/addons/portal_claim/i18n/zh_CN.po index 3dc16faf9f6..371d6d18a5a 100644 --- a/addons/portal_claim/i18n/zh_CN.po +++ b/addons/portal_claim/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_claim #: model:ir.actions.act_window,help:portal_claim.crm_case_categ_claim0 diff --git a/addons/portal_crm/i18n/de.po b/addons/portal_crm/i18n/de.po index 94d165f066a..bd834bf4af6 100644 --- a/addons/portal_crm/i18n/de.po +++ b/addons/portal_crm/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/es.po b/addons/portal_crm/i18n/es.po index 8c0e9fde4bc..2ccc17170df 100644 --- a/addons/portal_crm/i18n/es.po +++ b/addons/portal_crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/hr.po b/addons/portal_crm/i18n/hr.po index 2fed4cde271..57fe090f82e 100644 --- a/addons/portal_crm/i18n/hr.po +++ b/addons/portal_crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/hu.po b/addons/portal_crm/i18n/hu.po index 811dba047f7..58eb526e68a 100644 --- a/addons/portal_crm/i18n/hu.po +++ b/addons/portal_crm/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/mk.po b/addons/portal_crm/i18n/mk.po index 27c87ac56ef..73b3682a07c 100644 --- a/addons/portal_crm/i18n/mk.po +++ b/addons/portal_crm/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: portal_crm diff --git a/addons/portal_crm/i18n/nl.po b/addons/portal_crm/i18n/nl.po index 17149719b2a..302eb08e978 100644 --- a/addons/portal_crm/i18n/nl.po +++ b/addons/portal_crm/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pl.po b/addons/portal_crm/i18n/pl.po index f9223b64ddc..41a3d401943 100644 --- a/addons/portal_crm/i18n/pl.po +++ b/addons/portal_crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pt.po b/addons/portal_crm/i18n/pt.po index 5af6b004f86..927d4c6cfae 100644 --- a/addons/portal_crm/i18n/pt.po +++ b/addons/portal_crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/pt_BR.po b/addons/portal_crm/i18n/pt_BR.po index 4fd55c21230..32292c1c486 100644 --- a/addons/portal_crm/i18n/pt_BR.po +++ b/addons/portal_crm/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/ro.po b/addons/portal_crm/i18n/ro.po index 9720275d2a2..9e6f99a279b 100644 --- a/addons/portal_crm/i18n/ro.po +++ b/addons/portal_crm/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/sl.po b/addons/portal_crm/i18n/sl.po index ed1187118fd..ad9e676bf2c 100644 --- a/addons/portal_crm/i18n/sl.po +++ b/addons/portal_crm/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/sv.po b/addons/portal_crm/i18n/sv.po index 0f1cf451c1b..ccd0205b432 100644 --- a/addons/portal_crm/i18n/sv.po +++ b/addons/portal_crm/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/tr.po b/addons/portal_crm/i18n/tr.po index 3e172928794..2926de0ee70 100644 --- a/addons/portal_crm/i18n/tr.po +++ b/addons/portal_crm/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_crm/i18n/zh_CN.po b/addons/portal_crm/i18n/zh_CN.po index dfa5d88695c..e9e35027c6a 100644 --- a/addons/portal_crm/i18n/zh_CN.po +++ b/addons/portal_crm/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 diff --git a/addons/portal_event/i18n/cs.po b/addons/portal_event/i18n/cs.po index 8a8e5e3398c..bab594de233 100644 --- a/addons/portal_event/i18n/cs.po +++ b/addons/portal_event/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/de.po b/addons/portal_event/i18n/de.po index c705b32e122..46e2875ddb7 100644 --- a/addons/portal_event/i18n/de.po +++ b/addons/portal_event/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/es.po b/addons/portal_event/i18n/es.po index 0f491df4774..eaa60ea0f36 100644 --- a/addons/portal_event/i18n/es.po +++ b/addons/portal_event/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/hr.po b/addons/portal_event/i18n/hr.po index 56dccc77a55..f28dfe3f5b9 100644 --- a/addons/portal_event/i18n/hr.po +++ b/addons/portal_event/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/hu.po b/addons/portal_event/i18n/hu.po index c1db211f083..6acaf6564ca 100644 --- a/addons/portal_event/i18n/hu.po +++ b/addons/portal_event/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/mk.po b/addons/portal_event/i18n/mk.po index 9af5d3f3e72..c3c49d28912 100644 --- a/addons/portal_event/i18n/mk.po +++ b/addons/portal_event/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/nl.po b/addons/portal_event/i18n/nl.po index f8b7df3259a..fb33767af93 100644 --- a/addons/portal_event/i18n/nl.po +++ b/addons/portal_event/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/pt.po b/addons/portal_event/i18n/pt.po index a1ca162bab3..31026eb74ce 100644 --- a/addons/portal_event/i18n/pt.po +++ b/addons/portal_event/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/pt_BR.po b/addons/portal_event/i18n/pt_BR.po index 99239ca19d3..a75ac83c3c4 100644 --- a/addons/portal_event/i18n/pt_BR.po +++ b/addons/portal_event/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/ro.po b/addons/portal_event/i18n/ro.po index 780e9453f87..2479091f479 100644 --- a/addons/portal_event/i18n/ro.po +++ b/addons/portal_event/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/sl.po b/addons/portal_event/i18n/sl.po index 865e839d096..ad6999fc970 100644 --- a/addons/portal_event/i18n/sl.po +++ b/addons/portal_event/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/sv.po b/addons/portal_event/i18n/sv.po index c3c6fe9eb7c..332704e475a 100644 --- a/addons/portal_event/i18n/sv.po +++ b/addons/portal_event/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/tr.po b/addons/portal_event/i18n/tr.po index 32e4844d9ba..96d6a80ff78 100644 --- a/addons/portal_event/i18n/tr.po +++ b/addons/portal_event/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_event/i18n/zh_CN.po b/addons/portal_event/i18n/zh_CN.po index 72d2b985abb..8a5460bf46d 100644 --- a/addons/portal_event/i18n/zh_CN.po +++ b/addons/portal_event/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_event #: view:event.event:0 diff --git a/addons/portal_hr_employees/i18n/de.po b/addons/portal_hr_employees/i18n/de.po index 2169284bd98..9f176a62303 100644 --- a/addons/portal_hr_employees/i18n/de.po +++ b/addons/portal_hr_employees/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/es.po b/addons/portal_hr_employees/i18n/es.po index 3c34805065e..51628a4d66e 100644 --- a/addons/portal_hr_employees/i18n/es.po +++ b/addons/portal_hr_employees/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/hr.po b/addons/portal_hr_employees/i18n/hr.po index c9155bc4dc3..f77aa837c9b 100644 --- a/addons/portal_hr_employees/i18n/hr.po +++ b/addons/portal_hr_employees/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/hu.po b/addons/portal_hr_employees/i18n/hu.po index f1fdfe8d048..8517ca3ad3e 100644 --- a/addons/portal_hr_employees/i18n/hu.po +++ b/addons/portal_hr_employees/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/mk.po b/addons/portal_hr_employees/i18n/mk.po index 160ed83952e..53ed81d88b9 100644 --- a/addons/portal_hr_employees/i18n/mk.po +++ b/addons/portal_hr_employees/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: portal_hr_employees diff --git a/addons/portal_hr_employees/i18n/nl.po b/addons/portal_hr_employees/i18n/nl.po index ed5c518f7ef..f2a6099a822 100644 --- a/addons/portal_hr_employees/i18n/nl.po +++ b/addons/portal_hr_employees/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:14+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pl.po b/addons/portal_hr_employees/i18n/pl.po index 3b1b1766f87..cfc41e56dd8 100644 --- a/addons/portal_hr_employees/i18n/pl.po +++ b/addons/portal_hr_employees/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pt.po b/addons/portal_hr_employees/i18n/pt.po index ad77d4a32d0..6f35ddfb82b 100644 --- a/addons/portal_hr_employees/i18n/pt.po +++ b/addons/portal_hr_employees/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/pt_BR.po b/addons/portal_hr_employees/i18n/pt_BR.po index a26f8f90f81..f3cf094aff7 100644 --- a/addons/portal_hr_employees/i18n/pt_BR.po +++ b/addons/portal_hr_employees/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/ro.po b/addons/portal_hr_employees/i18n/ro.po index 01647d87663..85e4cf5695d 100644 --- a/addons/portal_hr_employees/i18n/ro.po +++ b/addons/portal_hr_employees/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/sl.po b/addons/portal_hr_employees/i18n/sl.po index 32108a1b9a7..146cdeeae06 100644 --- a/addons/portal_hr_employees/i18n/sl.po +++ b/addons/portal_hr_employees/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/tr.po b/addons/portal_hr_employees/i18n/tr.po index 3d95094b674..75d8916a88c 100644 --- a/addons/portal_hr_employees/i18n/tr.po +++ b/addons/portal_hr_employees/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_hr_employees/i18n/zh_CN.po b/addons/portal_hr_employees/i18n/zh_CN.po index f874773e0a2..109329604bd 100644 --- a/addons/portal_hr_employees/i18n/zh_CN.po +++ b/addons/portal_hr_employees/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_project/i18n/cs.po b/addons/portal_project/i18n/cs.po index b0474ab4829..6134c5097a7 100644 --- a/addons/portal_project/i18n/cs.po +++ b/addons/portal_project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/de.po b/addons/portal_project/i18n/de.po index f88ab8283ef..b42205e2213 100644 --- a/addons/portal_project/i18n/de.po +++ b/addons/portal_project/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/es.po b/addons/portal_project/i18n/es.po index cef4bd972a3..ff897fcce85 100644 --- a/addons/portal_project/i18n/es.po +++ b/addons/portal_project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/fr.po b/addons/portal_project/i18n/fr.po index 011ca6ebaed..200d18b247f 100644 --- a/addons/portal_project/i18n/fr.po +++ b/addons/portal_project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/hr.po b/addons/portal_project/i18n/hr.po index 20ea2a13d0a..215fb1471de 100644 --- a/addons/portal_project/i18n/hr.po +++ b/addons/portal_project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/hu.po b/addons/portal_project/i18n/hu.po index 2884bebd78d..dbe38d3eee4 100644 --- a/addons/portal_project/i18n/hu.po +++ b/addons/portal_project/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/it.po b/addons/portal_project/i18n/it.po index af2dca102dc..e210949fb49 100644 --- a/addons/portal_project/i18n/it.po +++ b/addons/portal_project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/mk.po b/addons/portal_project/i18n/mk.po index a0b3e16ac27..b561a0f5757 100644 --- a/addons/portal_project/i18n/mk.po +++ b/addons/portal_project/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: portal_project diff --git a/addons/portal_project/i18n/nl.po b/addons/portal_project/i18n/nl.po index 48dd99bcd41..46fbea78175 100644 --- a/addons/portal_project/i18n/nl.po +++ b/addons/portal_project/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/pl.po b/addons/portal_project/i18n/pl.po index b8558ddf458..851a5be3d1d 100644 --- a/addons/portal_project/i18n/pl.po +++ b/addons/portal_project/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/pt.po b/addons/portal_project/i18n/pt.po index 7cf4937ab83..0a60258b11a 100644 --- a/addons/portal_project/i18n/pt.po +++ b/addons/portal_project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/pt_BR.po b/addons/portal_project/i18n/pt_BR.po index 82cef8dad76..9ca0f249ebc 100644 --- a/addons/portal_project/i18n/pt_BR.po +++ b/addons/portal_project/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/ro.po b/addons/portal_project/i18n/ro.po index a0a8cce6994..0d59581b553 100644 --- a/addons/portal_project/i18n/ro.po +++ b/addons/portal_project/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/sl.po b/addons/portal_project/i18n/sl.po index 7441a698de7..47b1618c70c 100644 --- a/addons/portal_project/i18n/sl.po +++ b/addons/portal_project/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/sv.po b/addons/portal_project/i18n/sv.po index e75d8406982..e4156f7f12a 100644 --- a/addons/portal_project/i18n/sv.po +++ b/addons/portal_project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/tr.po b/addons/portal_project/i18n/tr.po index 4f21c978c7a..ca0a8ec0d84 100644 --- a/addons/portal_project/i18n/tr.po +++ b/addons/portal_project/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project/i18n/zh_CN.po b/addons/portal_project/i18n/zh_CN.po index 892e7ce1a13..0814a2725f1 100644 --- a/addons/portal_project/i18n/zh_CN.po +++ b/addons/portal_project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project #: model:ir.actions.act_window,help:portal_project.open_view_project diff --git a/addons/portal_project_issue/i18n/cs.po b/addons/portal_project_issue/i18n/cs.po index 157f6df8faa..fa6a12f66c8 100644 --- a/addons/portal_project_issue/i18n/cs.po +++ b/addons/portal_project_issue/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/de.po b/addons/portal_project_issue/i18n/de.po index ff74d34be5a..6b92c86bf11 100644 --- a/addons/portal_project_issue/i18n/de.po +++ b/addons/portal_project_issue/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/es.po b/addons/portal_project_issue/i18n/es.po index be24c4dbe9e..bb37fe80a83 100644 --- a/addons/portal_project_issue/i18n/es.po +++ b/addons/portal_project_issue/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/hr.po b/addons/portal_project_issue/i18n/hr.po index 8f66ba43c0e..71c8320b131 100644 --- a/addons/portal_project_issue/i18n/hr.po +++ b/addons/portal_project_issue/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/hu.po b/addons/portal_project_issue/i18n/hu.po index ffd4670d389..98480f98801 100644 --- a/addons/portal_project_issue/i18n/hu.po +++ b/addons/portal_project_issue/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/it.po b/addons/portal_project_issue/i18n/it.po index 01715984259..32e75f2dd05 100644 --- a/addons/portal_project_issue/i18n/it.po +++ b/addons/portal_project_issue/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/mk.po b/addons/portal_project_issue/i18n/mk.po index 68c5a76ed4d..3e5617ad03a 100644 --- a/addons/portal_project_issue/i18n/mk.po +++ b/addons/portal_project_issue/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/nl.po b/addons/portal_project_issue/i18n/nl.po index cf0fe4c5106..0c52c881c1f 100644 --- a/addons/portal_project_issue/i18n/nl.po +++ b/addons/portal_project_issue/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/pl.po b/addons/portal_project_issue/i18n/pl.po index 7a4aa5736ee..12c622de608 100644 --- a/addons/portal_project_issue/i18n/pl.po +++ b/addons/portal_project_issue/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/pt.po b/addons/portal_project_issue/i18n/pt.po index 67f067e88f8..1a6f8363cd6 100644 --- a/addons/portal_project_issue/i18n/pt.po +++ b/addons/portal_project_issue/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/pt_BR.po b/addons/portal_project_issue/i18n/pt_BR.po index 423c3cbcbc2..f20bc40cb3e 100644 --- a/addons/portal_project_issue/i18n/pt_BR.po +++ b/addons/portal_project_issue/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/ro.po b/addons/portal_project_issue/i18n/ro.po index 905f285be4e..d2e8db5e4dd 100644 --- a/addons/portal_project_issue/i18n/ro.po +++ b/addons/portal_project_issue/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/sl.po b/addons/portal_project_issue/i18n/sl.po index 97f998f56a4..b3d5e6f2721 100644 --- a/addons/portal_project_issue/i18n/sl.po +++ b/addons/portal_project_issue/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/sv.po b/addons/portal_project_issue/i18n/sv.po index f8c837c27b5..43f17bf1dd5 100644 --- a/addons/portal_project_issue/i18n/sv.po +++ b/addons/portal_project_issue/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/tr.po b/addons/portal_project_issue/i18n/tr.po index cd3741b0fad..ac26305972c 100644 --- a/addons/portal_project_issue/i18n/tr.po +++ b/addons/portal_project_issue/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_project_issue/i18n/zh_CN.po b/addons/portal_project_issue/i18n/zh_CN.po index 4f9fbd947d9..0e1d34f33a6 100644 --- a/addons/portal_project_issue/i18n/zh_CN.po +++ b/addons/portal_project_issue/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_project_issue #: view:project.issue:0 diff --git a/addons/portal_sale/i18n/cs.po b/addons/portal_sale/i18n/cs.po index 2ef0eca171f..9b9bce88cd6 100644 --- a/addons/portal_sale/i18n/cs.po +++ b/addons/portal_sale/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:53+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/de.po b/addons/portal_sale/i18n/de.po index 8e0a43799b5..b8b4dfbf389 100644 --- a/addons/portal_sale/i18n/de.po +++ b/addons/portal_sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/es.po b/addons/portal_sale/i18n/es.po index d8ab59699a0..c92be29589d 100644 --- a/addons/portal_sale/i18n/es.po +++ b/addons/portal_sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/es_MX.po b/addons/portal_sale/i18n/es_MX.po index 3259926e1ff..ef7a191046b 100644 --- a/addons/portal_sale/i18n/es_MX.po +++ b/addons/portal_sale/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 11:56+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/fi.po b/addons/portal_sale/i18n/fi.po index 892ac919050..ae83101b063 100644 --- a/addons/portal_sale/i18n/fi.po +++ b/addons/portal_sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/fr.po b/addons/portal_sale/i18n/fr.po index 5d8a7577119..6ed3e5dd179 100644 --- a/addons/portal_sale/i18n/fr.po +++ b/addons/portal_sale/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/hr.po b/addons/portal_sale/i18n/hr.po index fc29c018e07..4f8da196642 100644 --- a/addons/portal_sale/i18n/hr.po +++ b/addons/portal_sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/hu.po b/addons/portal_sale/i18n/hu.po index aaad4075f3d..41b5bb20bc8 100644 --- a/addons/portal_sale/i18n/hu.po +++ b/addons/portal_sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/mk.po b/addons/portal_sale/i18n/mk.po index c4fc25d0758..f205c661638 100644 --- a/addons/portal_sale/i18n/mk.po +++ b/addons/portal_sale/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: portal_sale diff --git a/addons/portal_sale/i18n/mn.po b/addons/portal_sale/i18n/mn.po index f954823deff..f870ef9a3bc 100644 --- a/addons/portal_sale/i18n/mn.po +++ b/addons/portal_sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/nl.po b/addons/portal_sale/i18n/nl.po index ad6fda69da3..426d9a00488 100644 --- a/addons/portal_sale/i18n/nl.po +++ b/addons/portal_sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pl.po b/addons/portal_sale/i18n/pl.po index a68649e956d..4033f673eea 100644 --- a/addons/portal_sale/i18n/pl.po +++ b/addons/portal_sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pt.po b/addons/portal_sale/i18n/pt.po index d72b290e11d..a3d0efbf384 100644 --- a/addons/portal_sale/i18n/pt.po +++ b/addons/portal_sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/pt_BR.po b/addons/portal_sale/i18n/pt_BR.po index 46975404903..cca00b38197 100644 --- a/addons/portal_sale/i18n/pt_BR.po +++ b/addons/portal_sale/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/ro.po b/addons/portal_sale/i18n/ro.po index 77091bb5184..dac3eaa7d0b 100644 --- a/addons/portal_sale/i18n/ro.po +++ b/addons/portal_sale/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/sl.po b/addons/portal_sale/i18n/sl.po index 2a6987d8859..955cd1ee263 100644 --- a/addons/portal_sale/i18n/sl.po +++ b/addons/portal_sale/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/sv.po b/addons/portal_sale/i18n/sv.po index 9fa21365fa5..80c3b1ada5b 100644 --- a/addons/portal_sale/i18n/sv.po +++ b/addons/portal_sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/tr.po b/addons/portal_sale/i18n/tr.po index 8eda45e13e8..edfdd589452 100644 --- a/addons/portal_sale/i18n/tr.po +++ b/addons/portal_sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/portal_sale/i18n/zh_CN.po b/addons/portal_sale/i18n/zh_CN.po index 8b075ea754d..d2afe4e12d2 100644 --- a/addons/portal_sale/i18n/zh_CN.po +++ b/addons/portal_sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings diff --git a/addons/process/i18n/ar.po b/addons/process/i18n/ar.po index 55af818911a..54900c9bbb5 100644 --- a/addons/process/i18n/ar.po +++ b/addons/process/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/bg.po b/addons/process/i18n/bg.po index f0a716dc07c..e347b40421c 100644 --- a/addons/process/i18n/bg.po +++ b/addons/process/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/bs.po b/addons/process/i18n/bs.po index c4a136713ef..9ab2438d1eb 100644 --- a/addons/process/i18n/bs.po +++ b/addons/process/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ca.po b/addons/process/i18n/ca.po index cd8b8e83e62..1421ea5f829 100644 --- a/addons/process/i18n/ca.po +++ b/addons/process/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/cs.po b/addons/process/i18n/cs.po index 17b58d61cd2..0a738a8f9aa 100644 --- a/addons/process/i18n/cs.po +++ b/addons/process/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/da.po b/addons/process/i18n/da.po index 19a570fda27..2ae3ca530a1 100644 --- a/addons/process/i18n/da.po +++ b/addons/process/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/de.po b/addons/process/i18n/de.po index c35c9a1b713..be2e110d633 100644 --- a/addons/process/i18n/de.po +++ b/addons/process/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/el.po b/addons/process/i18n/el.po index 8c2431ff26a..0a62fd7ab31 100644 --- a/addons/process/i18n/el.po +++ b/addons/process/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es.po b/addons/process/i18n/es.po index 03e4b2238eb..a9cdbf74b32 100644 --- a/addons/process/i18n/es.po +++ b/addons/process/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_AR.po b/addons/process/i18n/es_AR.po index 0b5243b8021..d70aa50b3c2 100644 --- a/addons/process/i18n/es_AR.po +++ b/addons/process/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_CL.po b/addons/process/i18n/es_CL.po index 91ab45c8684..3de6755462c 100644 --- a/addons/process/i18n/es_CL.po +++ b/addons/process/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/es_CR.po b/addons/process/i18n/es_CR.po index b334de95907..040fad84e67 100644 --- a/addons/process/i18n/es_CR.po +++ b/addons/process/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/et.po b/addons/process/i18n/et.po index 6eebf8b410b..4213bc48c1f 100644 --- a/addons/process/i18n/et.po +++ b/addons/process/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/fi.po b/addons/process/i18n/fi.po index 7af57cbbbf6..1d96dfb61e8 100644 --- a/addons/process/i18n/fi.po +++ b/addons/process/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/fr.po b/addons/process/i18n/fr.po index 8be623991af..c9a4446f2ea 100644 --- a/addons/process/i18n/fr.po +++ b/addons/process/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/gl.po b/addons/process/i18n/gl.po index d582fc4531c..6ca5b887ea4 100644 --- a/addons/process/i18n/gl.po +++ b/addons/process/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/hi.po b/addons/process/i18n/hi.po index e9d883f5ebc..2c04e2baae7 100644 --- a/addons/process/i18n/hi.po +++ b/addons/process/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/hr.po b/addons/process/i18n/hr.po index 17a53fcda94..d212fb3087e 100644 --- a/addons/process/i18n/hr.po +++ b/addons/process/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/hu.po b/addons/process/i18n/hu.po index ce84ad56180..80dd31881c9 100644 --- a/addons/process/i18n/hu.po +++ b/addons/process/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/id.po b/addons/process/i18n/id.po index cedbc64a028..8a4eba6f859 100644 --- a/addons/process/i18n/id.po +++ b/addons/process/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/it.po b/addons/process/i18n/it.po index 4f902ff0d7a..4f80aa935d6 100644 --- a/addons/process/i18n/it.po +++ b/addons/process/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ja.po b/addons/process/i18n/ja.po index a8e68ee6ec3..b7e57a499a7 100644 --- a/addons/process/i18n/ja.po +++ b/addons/process/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ko.po b/addons/process/i18n/ko.po index 4d719dfc712..047e4c4315e 100644 --- a/addons/process/i18n/ko.po +++ b/addons/process/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/lt.po b/addons/process/i18n/lt.po index b97930894df..869a8d5e7a6 100644 --- a/addons/process/i18n/lt.po +++ b/addons/process/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/mk.po b/addons/process/i18n/mk.po index a5b33b5690a..3a97f970e07 100644 --- a/addons/process/i18n/mk.po +++ b/addons/process/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: process diff --git a/addons/process/i18n/mn.po b/addons/process/i18n/mn.po index 799c36238e0..52ccf82fd7a 100644 --- a/addons/process/i18n/mn.po +++ b/addons/process/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/nl.po b/addons/process/i18n/nl.po index 9a298830f23..de4ccc3861e 100644 --- a/addons/process/i18n/nl.po +++ b/addons/process/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/nl_BE.po b/addons/process/i18n/nl_BE.po index 722a3b7451f..9f1c0901ebd 100644 --- a/addons/process/i18n/nl_BE.po +++ b/addons/process/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pl.po b/addons/process/i18n/pl.po index 76cc2b060f9..4c2a2ab7ee9 100644 --- a/addons/process/i18n/pl.po +++ b/addons/process/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pt.po b/addons/process/i18n/pt.po index d1533bd5446..7ac68f70ae9 100644 --- a/addons/process/i18n/pt.po +++ b/addons/process/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/pt_BR.po b/addons/process/i18n/pt_BR.po index d16aa8faeaf..aeb6820aea6 100644 --- a/addons/process/i18n/pt_BR.po +++ b/addons/process/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ro.po b/addons/process/i18n/ro.po index 51fa6c295d9..6ef8abf7b9e 100644 --- a/addons/process/i18n/ro.po +++ b/addons/process/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/ru.po b/addons/process/i18n/ru.po index d386fe16e97..993dd86334f 100644 --- a/addons/process/i18n/ru.po +++ b/addons/process/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sk.po b/addons/process/i18n/sk.po index 8a014f299b2..9adb4f45dfb 100644 --- a/addons/process/i18n/sk.po +++ b/addons/process/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sl.po b/addons/process/i18n/sl.po index 41bc5429f59..bf2770dbf40 100644 --- a/addons/process/i18n/sl.po +++ b/addons/process/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sq.po b/addons/process/i18n/sq.po index 084da7201b7..db00047048e 100644 --- a/addons/process/i18n/sq.po +++ b/addons/process/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sr.po b/addons/process/i18n/sr.po index e8fb6a395fc..e664adaf0bf 100644 --- a/addons/process/i18n/sr.po +++ b/addons/process/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sr@latin.po b/addons/process/i18n/sr@latin.po index 0b1933da152..3c74069d310 100644 --- a/addons/process/i18n/sr@latin.po +++ b/addons/process/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/sv.po b/addons/process/i18n/sv.po index 28d61c93bc4..9e96386514d 100644 --- a/addons/process/i18n/sv.po +++ b/addons/process/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/tlh.po b/addons/process/i18n/tlh.po index fc9f346a86a..ae0bca46f59 100644 --- a/addons/process/i18n/tlh.po +++ b/addons/process/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/tr.po b/addons/process/i18n/tr.po index 7cf39ea7705..3afe3728208 100644 --- a/addons/process/i18n/tr.po +++ b/addons/process/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/uk.po b/addons/process/i18n/uk.po index c14235abc2b..dcb4efd7dd7 100644 --- a/addons/process/i18n/uk.po +++ b/addons/process/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/vi.po b/addons/process/i18n/vi.po index 15822739d8f..3d19c193d3c 100644 --- a/addons/process/i18n/vi.po +++ b/addons/process/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/zh_CN.po b/addons/process/i18n/zh_CN.po index 06eb5ce4584..f97eb283b53 100644 --- a/addons/process/i18n/zh_CN.po +++ b/addons/process/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/process/i18n/zh_TW.po b/addons/process/i18n/zh_TW.po index 32a4bcf30f9..708e9c925cb 100644 --- a/addons/process/i18n/zh_TW.po +++ b/addons/process/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: process #: model:ir.model,name:process.model_process_node diff --git a/addons/procurement/i18n/ar.po b/addons/procurement/i18n/ar.po index 91b019f2176..25a85a20b5e 100644 --- a/addons/procurement/i18n/ar.po +++ b/addons/procurement/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/bg.po b/addons/procurement/i18n/bg.po index dbc21d4da19..caa9dcdf69b 100644 --- a/addons/procurement/i18n/bg.po +++ b/addons/procurement/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ca.po b/addons/procurement/i18n/ca.po index 90c20e092c0..cc79b1bf539 100644 --- a/addons/procurement/i18n/ca.po +++ b/addons/procurement/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/cs.po b/addons/procurement/i18n/cs.po index 5ed941067cc..40893fc279f 100644 --- a/addons/procurement/i18n/cs.po +++ b/addons/procurement/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/da.po b/addons/procurement/i18n/da.po index 236b1490a11..0f0da5ad4ba 100644 --- a/addons/procurement/i18n/da.po +++ b/addons/procurement/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/de.po b/addons/procurement/i18n/de.po index 36aa19cd598..844c9c70dbe 100644 --- a/addons/procurement/i18n/de.po +++ b/addons/procurement/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es.po b/addons/procurement/i18n/es.po index c5d51f458ee..b49d3276ffb 100644 --- a/addons/procurement/i18n/es.po +++ b/addons/procurement/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_CL.po b/addons/procurement/i18n/es_CL.po index dbb6d16854a..bd0b55245c9 100644 --- a/addons/procurement/i18n/es_CL.po +++ b/addons/procurement/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_CR.po b/addons/procurement/i18n/es_CR.po index 8d9d1effe62..ccc2d10b471 100644 --- a/addons/procurement/i18n/es_CR.po +++ b/addons/procurement/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/es_EC.po b/addons/procurement/i18n/es_EC.po index a24b462bc16..7752fbe6edd 100644 --- a/addons/procurement/i18n/es_EC.po +++ b/addons/procurement/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/et.po b/addons/procurement/i18n/et.po index 93635cf71fd..5953bfd14f7 100644 --- a/addons/procurement/i18n/et.po +++ b/addons/procurement/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/fi.po b/addons/procurement/i18n/fi.po index 3a26ba26b61..635d51ce6e6 100644 --- a/addons/procurement/i18n/fi.po +++ b/addons/procurement/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/fr.po b/addons/procurement/i18n/fr.po index a8231dd9cf3..12c13cbc830 100644 --- a/addons/procurement/i18n/fr.po +++ b/addons/procurement/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/gl.po b/addons/procurement/i18n/gl.po index 7ec2d097a49..2c485dbcbf2 100644 --- a/addons/procurement/i18n/gl.po +++ b/addons/procurement/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/hr.po b/addons/procurement/i18n/hr.po index 5d644e8fb02..0afbe233bf1 100644 --- a/addons/procurement/i18n/hr.po +++ b/addons/procurement/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/hu.po b/addons/procurement/i18n/hu.po index 59711a1a60e..6aa990aae95 100644 --- a/addons/procurement/i18n/hu.po +++ b/addons/procurement/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/id.po b/addons/procurement/i18n/id.po index cb70240947b..0facb58a7be 100644 --- a/addons/procurement/i18n/id.po +++ b/addons/procurement/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/it.po b/addons/procurement/i18n/it.po index 4805098c40f..2cb20658739 100644 --- a/addons/procurement/i18n/it.po +++ b/addons/procurement/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ja.po b/addons/procurement/i18n/ja.po index 265002ec9c1..76210ea870d 100644 --- a/addons/procurement/i18n/ja.po +++ b/addons/procurement/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/mk.po b/addons/procurement/i18n/mk.po index 7b5f4b6d2fe..f3751e6e26b 100644 --- a/addons/procurement/i18n/mk.po +++ b/addons/procurement/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: procurement diff --git a/addons/procurement/i18n/mn.po b/addons/procurement/i18n/mn.po index e8c223d520b..a3a95a04f7d 100644 --- a/addons/procurement/i18n/mn.po +++ b/addons/procurement/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/nb.po b/addons/procurement/i18n/nb.po index 7c93d0b808d..4d4f8f4435d 100644 --- a/addons/procurement/i18n/nb.po +++ b/addons/procurement/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/nl.po b/addons/procurement/i18n/nl.po index 24ccd609b31..94fff018134 100644 --- a/addons/procurement/i18n/nl.po +++ b/addons/procurement/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/pl.po b/addons/procurement/i18n/pl.po index 7d7f7d3af35..9ce3693179b 100644 --- a/addons/procurement/i18n/pl.po +++ b/addons/procurement/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/pt.po b/addons/procurement/i18n/pt.po index 29832bdfd47..95f90f9cbd0 100644 --- a/addons/procurement/i18n/pt.po +++ b/addons/procurement/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/pt_BR.po b/addons/procurement/i18n/pt_BR.po index 410f4074250..a20ffec0f22 100644 --- a/addons/procurement/i18n/pt_BR.po +++ b/addons/procurement/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ro.po b/addons/procurement/i18n/ro.po index 0eb441f14b1..3cd36c24e96 100644 --- a/addons/procurement/i18n/ro.po +++ b/addons/procurement/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/ru.po b/addons/procurement/i18n/ru.po index e0fa776815f..4f44ad9e67c 100644 --- a/addons/procurement/i18n/ru.po +++ b/addons/procurement/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sl.po b/addons/procurement/i18n/sl.po index a30fa225cff..1f70809cfc3 100644 --- a/addons/procurement/i18n/sl.po +++ b/addons/procurement/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sr.po b/addons/procurement/i18n/sr.po index 7f0c085e5d8..a157eab67f3 100644 --- a/addons/procurement/i18n/sr.po +++ b/addons/procurement/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sr@latin.po b/addons/procurement/i18n/sr@latin.po index ebe500202bd..1f7dd7717e6 100644 --- a/addons/procurement/i18n/sr@latin.po +++ b/addons/procurement/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/sv.po b/addons/procurement/i18n/sv.po index 9eaa10f2dc7..4e67b72ff33 100644 --- a/addons/procurement/i18n/sv.po +++ b/addons/procurement/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/tr.po b/addons/procurement/i18n/tr.po index e8dc3fe4cc6..8ff7b21a96f 100644 --- a/addons/procurement/i18n/tr.po +++ b/addons/procurement/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 11:56+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/vi.po b/addons/procurement/i18n/vi.po index acd63710bcb..5383f11d3f4 100644 --- a/addons/procurement/i18n/vi.po +++ b/addons/procurement/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/procurement/i18n/zh_CN.po b/addons/procurement/i18n/zh_CN.po index d6ad18c317a..89cdee3f7f1 100644 --- a/addons/procurement/i18n/zh_CN.po +++ b/addons/procurement/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched diff --git a/addons/product/i18n/ar.po b/addons/product/i18n/ar.po index 7eba84cf1fb..e3522d8fc50 100644 --- a/addons/product/i18n/ar.po +++ b/addons/product/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/bg.po b/addons/product/i18n/bg.po index 08c0175eb85..55085d7bac1 100644 --- a/addons/product/i18n/bg.po +++ b/addons/product/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/bs.po b/addons/product/i18n/bs.po index dd617a658ef..fcc9f9dd21a 100644 --- a/addons/product/i18n/bs.po +++ b/addons/product/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ca.po b/addons/product/i18n/ca.po index 7ee714123ea..307863f44f9 100644 --- a/addons/product/i18n/ca.po +++ b/addons/product/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/cs.po b/addons/product/i18n/cs.po index 157e539aa5a..12a857bc64c 100644 --- a/addons/product/i18n/cs.po +++ b/addons/product/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/da.po b/addons/product/i18n/da.po index 9fd16946edd..49a522abff1 100644 --- a/addons/product/i18n/da.po +++ b/addons/product/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/de.po b/addons/product/i18n/de.po index afa6f11425e..3436db737ce 100644 --- a/addons/product/i18n/de.po +++ b/addons/product/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/el.po b/addons/product/i18n/el.po index e61baf776fe..7fc19bebce4 100644 --- a/addons/product/i18n/el.po +++ b/addons/product/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es.po b/addons/product/i18n/es.po index 481f41418ec..3a7acde6c5f 100644 --- a/addons/product/i18n/es.po +++ b/addons/product/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_AR.po b/addons/product/i18n/es_AR.po index b473dd94b7c..24eb96e35c7 100644 --- a/addons/product/i18n/es_AR.po +++ b/addons/product/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_CL.po b/addons/product/i18n/es_CL.po index 1d58bdf03af..73c3952a3c5 100644 --- a/addons/product/i18n/es_CL.po +++ b/addons/product/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_CR.po b/addons/product/i18n/es_CR.po index 357fa18795d..e2847ca89a2 100644 --- a/addons/product/i18n/es_CR.po +++ b/addons/product/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_EC.po b/addons/product/i18n/es_EC.po index 51590090aa7..6fa65a2f1e0 100644 --- a/addons/product/i18n/es_EC.po +++ b/addons/product/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/es_PY.po b/addons/product/i18n/es_PY.po index 43d2218f1d4..66c0f36bb64 100644 --- a/addons/product/i18n/es_PY.po +++ b/addons/product/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/et.po b/addons/product/i18n/et.po index 9a497db515c..ec90fc4f648 100644 --- a/addons/product/i18n/et.po +++ b/addons/product/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/eu.po b/addons/product/i18n/eu.po index b0c17bcc9fc..4b30763db7b 100644 --- a/addons/product/i18n/eu.po +++ b/addons/product/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/fi.po b/addons/product/i18n/fi.po index f44102db428..cafda51d93c 100644 --- a/addons/product/i18n/fi.po +++ b/addons/product/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/fr.po b/addons/product/i18n/fr.po index 1e178dd8230..4ab8fd11ec5 100644 --- a/addons/product/i18n/fr.po +++ b/addons/product/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/gl.po b/addons/product/i18n/gl.po index 3f3b2e00ca8..98c1878e79c 100644 --- a/addons/product/i18n/gl.po +++ b/addons/product/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/hr.po b/addons/product/i18n/hr.po index 4faccb11a46..3e1eaf73b4e 100644 --- a/addons/product/i18n/hr.po +++ b/addons/product/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/hu.po b/addons/product/i18n/hu.po index 92318d56a90..3d711dce16f 100644 --- a/addons/product/i18n/hu.po +++ b/addons/product/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-19 06:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/id.po b/addons/product/i18n/id.po index 98e22e52767..c14dbe8f7fa 100644 --- a/addons/product/i18n/id.po +++ b/addons/product/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/it.po b/addons/product/i18n/it.po index 95b8e80dfd9..4902bd9ea65 100644 --- a/addons/product/i18n/it.po +++ b/addons/product/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ja.po b/addons/product/i18n/ja.po index 8ced2e2c6af..5c6ba3c280f 100644 --- a/addons/product/i18n/ja.po +++ b/addons/product/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ko.po b/addons/product/i18n/ko.po index 9173970a75b..a81ea79ee2b 100644 --- a/addons/product/i18n/ko.po +++ b/addons/product/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/lo.po b/addons/product/i18n/lo.po index bd39aaad0e2..baf4759066a 100644 --- a/addons/product/i18n/lo.po +++ b/addons/product/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/lt.po b/addons/product/i18n/lt.po index 4262995fd76..da1093187ca 100644 --- a/addons/product/i18n/lt.po +++ b/addons/product/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/lv.po b/addons/product/i18n/lv.po index a6b5352d878..41b770d0f7b 100644 --- a/addons/product/i18n/lv.po +++ b/addons/product/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/mk.po b/addons/product/i18n/mk.po index 26001b57861..041b6fa76e2 100644 --- a/addons/product/i18n/mk.po +++ b/addons/product/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: product diff --git a/addons/product/i18n/mn.po b/addons/product/i18n/mn.po index 115bdd006e7..766754e0639 100644 --- a/addons/product/i18n/mn.po +++ b/addons/product/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/nb.po b/addons/product/i18n/nb.po index 32b4696242f..06ec5df63ed 100644 --- a/addons/product/i18n/nb.po +++ b/addons/product/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/nl.po b/addons/product/i18n/nl.po index 2bef6272e21..b1c7b04e428 100644 --- a/addons/product/i18n/nl.po +++ b/addons/product/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:38+0000\n" -"PO-Revision-Date: 2013-03-09 09:09+0000\n" +"PO-Revision-Date: 2013-03-27 09:05+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-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 @@ -486,7 +486,7 @@ msgstr "Verwervingen" #. module: product #: model:res.groups,name:product.group_mrp_properties msgid "Manage Properties of Product" -msgstr "Beheer eigenschappen van het product" +msgstr "Beheer eigenschappen van samengesteld product" #. module: product #: help:product.uom,factor:0 diff --git a/addons/product/i18n/nl_BE.po b/addons/product/i18n/nl_BE.po index 507a8e2efb9..4b3fe1dc0c2 100644 --- a/addons/product/i18n/nl_BE.po +++ b/addons/product/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pl.po b/addons/product/i18n/pl.po index 57da09dd03d..a740082f3c4 100644 --- a/addons/product/i18n/pl.po +++ b/addons/product/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pt.po b/addons/product/i18n/pt.po index d9409e1c3bc..57dccccd8ac 100644 --- a/addons/product/i18n/pt.po +++ b/addons/product/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index 73758ec6242..8dbd690ab46 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ro.po b/addons/product/i18n/ro.po index ea4528b35bb..f5cfbddd729 100644 --- a/addons/product/i18n/ro.po +++ b/addons/product/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/ru.po b/addons/product/i18n/ru.po index 93486e13b07..7f3552ab07e 100644 --- a/addons/product/i18n/ru.po +++ b/addons/product/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sk.po b/addons/product/i18n/sk.po index 2c46549db85..f2418775045 100644 --- a/addons/product/i18n/sk.po +++ b/addons/product/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sl.po b/addons/product/i18n/sl.po index 4bce5836f01..174acc8a318 100644 --- a/addons/product/i18n/sl.po +++ b/addons/product/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sq.po b/addons/product/i18n/sq.po index 3be308c57d6..daf1ed57ffe 100644 --- a/addons/product/i18n/sq.po +++ b/addons/product/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:54+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sr.po b/addons/product/i18n/sr.po index 798efe0494f..480bd612a79 100644 --- a/addons/product/i18n/sr.po +++ b/addons/product/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:54+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sr@latin.po b/addons/product/i18n/sr@latin.po index 64526a87732..af53ea0ac0a 100644 --- a/addons/product/i18n/sr@latin.po +++ b/addons/product/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/sv.po b/addons/product/i18n/sv.po index f16315bd46c..271031819ac 100644 --- a/addons/product/i18n/sv.po +++ b/addons/product/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/th.po b/addons/product/i18n/th.po index c3af03059cf..ce05156a114 100644 --- a/addons/product/i18n/th.po +++ b/addons/product/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/tlh.po b/addons/product/i18n/tlh.po index 0844aff877e..c1a885becea 100644 --- a/addons/product/i18n/tlh.po +++ b/addons/product/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/tr.po b/addons/product/i18n/tr.po index 5ed80829c5c..b693347011e 100644 --- a/addons/product/i18n/tr.po +++ b/addons/product/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:22+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/uk.po b/addons/product/i18n/uk.po index af5faffd8ef..19fcdfac3eb 100644 --- a/addons/product/i18n/uk.po +++ b/addons/product/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/vi.po b/addons/product/i18n/vi.po index b82cfaecf92..2d03d564e2c 100644 --- a/addons/product/i18n/vi.po +++ b/addons/product/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index 2054c4453ae..ab8abe7eef2 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product/i18n/zh_TW.po b/addons/product/i18n/zh_TW.po index 9509eef060c..10a3854d888 100644 --- a/addons/product/i18n/zh_TW.po +++ b/addons/product/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:55+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product #: field:product.packaging,rows:0 diff --git a/addons/product_expiry/i18n/ar.po b/addons/product_expiry/i18n/ar.po index b3c873cedbc..2c530edc5f4 100644 --- a/addons/product_expiry/i18n/ar.po +++ b/addons/product_expiry/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ca.po b/addons/product_expiry/i18n/ca.po index fa74a32f5fe..6ee77ddc6b6 100644 --- a/addons/product_expiry/i18n/ca.po +++ b/addons/product_expiry/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/cs.po b/addons/product_expiry/i18n/cs.po index b3d612a6d7b..a0b49c57aee 100644 --- a/addons/product_expiry/i18n/cs.po +++ b/addons/product_expiry/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/da.po b/addons/product_expiry/i18n/da.po index 08ceb7e9f7f..be240b90f52 100644 --- a/addons/product_expiry/i18n/da.po +++ b/addons/product_expiry/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/de.po b/addons/product_expiry/i18n/de.po index 1d9b46d477d..33e3703cb6b 100644 --- a/addons/product_expiry/i18n/de.po +++ b/addons/product_expiry/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/el.po b/addons/product_expiry/i18n/el.po index 5c0385a18a7..f1ad854d145 100644 --- a/addons/product_expiry/i18n/el.po +++ b/addons/product_expiry/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es.po b/addons/product_expiry/i18n/es.po index 39a5e30b0ea..63a63c1d5dc 100644 --- a/addons/product_expiry/i18n/es.po +++ b/addons/product_expiry/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es_CR.po b/addons/product_expiry/i18n/es_CR.po index c0bf2f67f6e..2c0e92f488d 100644 --- a/addons/product_expiry/i18n/es_CR.po +++ b/addons/product_expiry/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/es_EC.po b/addons/product_expiry/i18n/es_EC.po index 15bb0d6836a..b0d78a3e9ba 100644 --- a/addons/product_expiry/i18n/es_EC.po +++ b/addons/product_expiry/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/et.po b/addons/product_expiry/i18n/et.po index a5a181f2027..1fc9c56c4c7 100644 --- a/addons/product_expiry/i18n/et.po +++ b/addons/product_expiry/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/fi.po b/addons/product_expiry/i18n/fi.po index 8e9830400d9..210c97d3d39 100644 --- a/addons/product_expiry/i18n/fi.po +++ b/addons/product_expiry/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/fr.po b/addons/product_expiry/i18n/fr.po index 1d6a55d5335..cb998c343a2 100644 --- a/addons/product_expiry/i18n/fr.po +++ b/addons/product_expiry/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/gl.po b/addons/product_expiry/i18n/gl.po index 65759d58bb0..c3a018b113e 100644 --- a/addons/product_expiry/i18n/gl.po +++ b/addons/product_expiry/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/hr.po b/addons/product_expiry/i18n/hr.po index a257e6a8300..109bb44c356 100644 --- a/addons/product_expiry/i18n/hr.po +++ b/addons/product_expiry/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/hu.po b/addons/product_expiry/i18n/hu.po index 6418e866743..8fb66ebbb32 100644 --- a/addons/product_expiry/i18n/hu.po +++ b/addons/product_expiry/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/it.po b/addons/product_expiry/i18n/it.po index f5f0166bc62..13e358848a5 100644 --- a/addons/product_expiry/i18n/it.po +++ b/addons/product_expiry/i18n/it.po @@ -15,8 +15,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ja.po b/addons/product_expiry/i18n/ja.po index c8e6aba410c..4a740ed1e94 100644 --- a/addons/product_expiry/i18n/ja.po +++ b/addons/product_expiry/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/mk.po b/addons/product_expiry/i18n/mk.po index 13dc2eed971..bba01b83437 100644 --- a/addons/product_expiry/i18n/mk.po +++ b/addons/product_expiry/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/mn.po b/addons/product_expiry/i18n/mn.po index e736a79547c..b06eea86e1a 100644 --- a/addons/product_expiry/i18n/mn.po +++ b/addons/product_expiry/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/nl.po b/addons/product_expiry/i18n/nl.po index 1787e6533d4..7c1593b7eae 100644 --- a/addons/product_expiry/i18n/nl.po +++ b/addons/product_expiry/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pl.po b/addons/product_expiry/i18n/pl.po index c4c5c231f17..ac3d90ac5e2 100644 --- a/addons/product_expiry/i18n/pl.po +++ b/addons/product_expiry/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pt.po b/addons/product_expiry/i18n/pt.po index ea7f2a0b068..d39f7e331d8 100644 --- a/addons/product_expiry/i18n/pt.po +++ b/addons/product_expiry/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/pt_BR.po b/addons/product_expiry/i18n/pt_BR.po index 3d380a397cc..5c63ea8302a 100644 --- a/addons/product_expiry/i18n/pt_BR.po +++ b/addons/product_expiry/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ro.po b/addons/product_expiry/i18n/ro.po index 2a626abc623..d525a636ef6 100644 --- a/addons/product_expiry/i18n/ro.po +++ b/addons/product_expiry/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/ru.po b/addons/product_expiry/i18n/ru.po index fb970677aa9..ba780739a33 100644 --- a/addons/product_expiry/i18n/ru.po +++ b/addons/product_expiry/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sl.po b/addons/product_expiry/i18n/sl.po index c100f62f797..e8d1ba5de0c 100644 --- a/addons/product_expiry/i18n/sl.po +++ b/addons/product_expiry/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sr.po b/addons/product_expiry/i18n/sr.po index 213ae52d57d..f50cfb48f95 100644 --- a/addons/product_expiry/i18n/sr.po +++ b/addons/product_expiry/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sr@latin.po b/addons/product_expiry/i18n/sr@latin.po index c7aa5c5f657..af54e810b40 100644 --- a/addons/product_expiry/i18n/sr@latin.po +++ b/addons/product_expiry/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/sv.po b/addons/product_expiry/i18n/sv.po index 07e66a0756f..d22b57abba1 100644 --- a/addons/product_expiry/i18n/sv.po +++ b/addons/product_expiry/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/tr.po b/addons/product_expiry/i18n/tr.po index efc1829c565..bb38164a634 100644 --- a/addons/product_expiry/i18n/tr.po +++ b/addons/product_expiry/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/vi.po b/addons/product_expiry/i18n/vi.po index 7240b470f40..6d3bd2184eb 100644 --- a/addons/product_expiry/i18n/vi.po +++ b/addons/product_expiry/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/zh_CN.po b/addons/product_expiry/i18n/zh_CN.po index 7f52fd15f37..8a2d5becc3f 100644 --- a/addons/product_expiry/i18n/zh_CN.po +++ b/addons/product_expiry/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_expiry/i18n/zh_TW.po b/addons/product_expiry/i18n/zh_TW.po index cf835e309c7..6b4bd5af092 100644 --- a/addons/product_expiry/i18n/zh_TW.po +++ b/addons/product_expiry/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template diff --git a/addons/product_manufacturer/i18n/ar.po b/addons/product_manufacturer/i18n/ar.po index dc360d18dcc..ec8474385ae 100644 --- a/addons/product_manufacturer/i18n/ar.po +++ b/addons/product_manufacturer/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/bg.po b/addons/product_manufacturer/i18n/bg.po index 002b7d28819..3e076de0258 100644 --- a/addons/product_manufacturer/i18n/bg.po +++ b/addons/product_manufacturer/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ca.po b/addons/product_manufacturer/i18n/ca.po index 9d469b805b5..f527d3f9062 100644 --- a/addons/product_manufacturer/i18n/ca.po +++ b/addons/product_manufacturer/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/cs.po b/addons/product_manufacturer/i18n/cs.po index 8a844c11c17..38454cafe25 100644 --- a/addons/product_manufacturer/i18n/cs.po +++ b/addons/product_manufacturer/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/da.po b/addons/product_manufacturer/i18n/da.po index fea48ddf0cb..7400781703e 100644 --- a/addons/product_manufacturer/i18n/da.po +++ b/addons/product_manufacturer/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/de.po b/addons/product_manufacturer/i18n/de.po index cc48e8c3846..ff1ac73216f 100644 --- a/addons/product_manufacturer/i18n/de.po +++ b/addons/product_manufacturer/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/el.po b/addons/product_manufacturer/i18n/el.po index ecd54c309c8..bb21d2f4654 100644 --- a/addons/product_manufacturer/i18n/el.po +++ b/addons/product_manufacturer/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es.po b/addons/product_manufacturer/i18n/es.po index 197681a5fec..04ca8273864 100644 --- a/addons/product_manufacturer/i18n/es.po +++ b/addons/product_manufacturer/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es_CR.po b/addons/product_manufacturer/i18n/es_CR.po index 31bbffed777..27cb42f90fc 100644 --- a/addons/product_manufacturer/i18n/es_CR.po +++ b/addons/product_manufacturer/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/es_EC.po b/addons/product_manufacturer/i18n/es_EC.po index b94edfcdce1..a5d10da61eb 100644 --- a/addons/product_manufacturer/i18n/es_EC.po +++ b/addons/product_manufacturer/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/et.po b/addons/product_manufacturer/i18n/et.po index 0af9c732385..a97f90e4e19 100644 --- a/addons/product_manufacturer/i18n/et.po +++ b/addons/product_manufacturer/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/fi.po b/addons/product_manufacturer/i18n/fi.po index be14825e8f6..5e978367bfa 100644 --- a/addons/product_manufacturer/i18n/fi.po +++ b/addons/product_manufacturer/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/fr.po b/addons/product_manufacturer/i18n/fr.po index c59ecfcf004..5b8c8772ad7 100644 --- a/addons/product_manufacturer/i18n/fr.po +++ b/addons/product_manufacturer/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/gl.po b/addons/product_manufacturer/i18n/gl.po index 9381c380079..a52701e7188 100644 --- a/addons/product_manufacturer/i18n/gl.po +++ b/addons/product_manufacturer/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/hr.po b/addons/product_manufacturer/i18n/hr.po index 3ffc8f66d32..f8f446ec773 100644 --- a/addons/product_manufacturer/i18n/hr.po +++ b/addons/product_manufacturer/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/hu.po b/addons/product_manufacturer/i18n/hu.po index f32ab3b9c2f..7d3065cf0ce 100644 --- a/addons/product_manufacturer/i18n/hu.po +++ b/addons/product_manufacturer/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/it.po b/addons/product_manufacturer/i18n/it.po index 9d81e8e917a..494b570f281 100644 --- a/addons/product_manufacturer/i18n/it.po +++ b/addons/product_manufacturer/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ja.po b/addons/product_manufacturer/i18n/ja.po index 6177aeaa65c..4d41307c032 100644 --- a/addons/product_manufacturer/i18n/ja.po +++ b/addons/product_manufacturer/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/lt.po b/addons/product_manufacturer/i18n/lt.po index 5f0cb3c03bd..09a24313c05 100644 --- a/addons/product_manufacturer/i18n/lt.po +++ b/addons/product_manufacturer/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/mk.po b/addons/product_manufacturer/i18n/mk.po index 84942d90796..de82f665468 100644 --- a/addons/product_manufacturer/i18n/mk.po +++ b/addons/product_manufacturer/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/mn.po b/addons/product_manufacturer/i18n/mn.po index a3d6bc2816b..91efe6945df 100644 --- a/addons/product_manufacturer/i18n/mn.po +++ b/addons/product_manufacturer/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/nb.po b/addons/product_manufacturer/i18n/nb.po index 6b9566dc7f5..41505c5379d 100644 --- a/addons/product_manufacturer/i18n/nb.po +++ b/addons/product_manufacturer/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/nl.po b/addons/product_manufacturer/i18n/nl.po index b618c68be89..850563978cc 100644 --- a/addons/product_manufacturer/i18n/nl.po +++ b/addons/product_manufacturer/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pl.po b/addons/product_manufacturer/i18n/pl.po index 82af05630f3..c470f2f4e8e 100644 --- a/addons/product_manufacturer/i18n/pl.po +++ b/addons/product_manufacturer/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pt.po b/addons/product_manufacturer/i18n/pt.po index 7d2521e886c..2b6f17c52e7 100644 --- a/addons/product_manufacturer/i18n/pt.po +++ b/addons/product_manufacturer/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/pt_BR.po b/addons/product_manufacturer/i18n/pt_BR.po index b1c874fe36d..798a45b9a16 100644 --- a/addons/product_manufacturer/i18n/pt_BR.po +++ b/addons/product_manufacturer/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ro.po b/addons/product_manufacturer/i18n/ro.po index 86d37d496f3..37db61bba76 100644 --- a/addons/product_manufacturer/i18n/ro.po +++ b/addons/product_manufacturer/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/ru.po b/addons/product_manufacturer/i18n/ru.po index 6130d563194..f3711c5efaf 100644 --- a/addons/product_manufacturer/i18n/ru.po +++ b/addons/product_manufacturer/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sl.po b/addons/product_manufacturer/i18n/sl.po index 905ec6d2c3f..3d36795524c 100644 --- a/addons/product_manufacturer/i18n/sl.po +++ b/addons/product_manufacturer/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sr.po b/addons/product_manufacturer/i18n/sr.po index 978be44e549..5c16bf4042d 100644 --- a/addons/product_manufacturer/i18n/sr.po +++ b/addons/product_manufacturer/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sr@latin.po b/addons/product_manufacturer/i18n/sr@latin.po index 348f8c2d4c3..b4d1c3a15b3 100644 --- a/addons/product_manufacturer/i18n/sr@latin.po +++ b/addons/product_manufacturer/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/sv.po b/addons/product_manufacturer/i18n/sv.po index ba61aa68840..d57d2b9e968 100644 --- a/addons/product_manufacturer/i18n/sv.po +++ b/addons/product_manufacturer/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/tr.po b/addons/product_manufacturer/i18n/tr.po index 4ceadbb44e9..0263e38fade 100644 --- a/addons/product_manufacturer/i18n/tr.po +++ b/addons/product_manufacturer/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/zh_CN.po b/addons/product_manufacturer/i18n/zh_CN.po index 2678e9205d8..4cf15755553 100644 --- a/addons/product_manufacturer/i18n/zh_CN.po +++ b/addons/product_manufacturer/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_manufacturer/i18n/zh_TW.po b/addons/product_manufacturer/i18n/zh_TW.po index d55033ff475..04d24cbffaf 100644 --- a/addons/product_manufacturer/i18n/zh_TW.po +++ b/addons/product_manufacturer/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_manufacturer #: field:product.product,manufacturer_pref:0 diff --git a/addons/product_margin/i18n/ar.po b/addons/product_margin/i18n/ar.po index 34b9921adfa..7ff51e4de58 100644 --- a/addons/product_margin/i18n/ar.po +++ b/addons/product_margin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/bg.po b/addons/product_margin/i18n/bg.po index 0e8fd38f02d..ddf55f27d67 100644 --- a/addons/product_margin/i18n/bg.po +++ b/addons/product_margin/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/bs.po b/addons/product_margin/i18n/bs.po index c232e78d13f..f7b0c751f20 100644 --- a/addons/product_margin/i18n/bs.po +++ b/addons/product_margin/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ca.po b/addons/product_margin/i18n/ca.po index 18cc4e33d8f..860da1cac5e 100644 --- a/addons/product_margin/i18n/ca.po +++ b/addons/product_margin/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/cs.po b/addons/product_margin/i18n/cs.po index 34f7d376493..6a797cf57ab 100644 --- a/addons/product_margin/i18n/cs.po +++ b/addons/product_margin/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/da.po b/addons/product_margin/i18n/da.po index 85a1d6e93e6..3b9a2aa5eb5 100644 --- a/addons/product_margin/i18n/da.po +++ b/addons/product_margin/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/de.po b/addons/product_margin/i18n/de.po index 875c33990cb..d9c76793f31 100644 --- a/addons/product_margin/i18n/de.po +++ b/addons/product_margin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/el.po b/addons/product_margin/i18n/el.po index 39c2fd9c23c..ee0a37c0c4a 100644 --- a/addons/product_margin/i18n/el.po +++ b/addons/product_margin/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es.po b/addons/product_margin/i18n/es.po index 9055d703825..a52932cb22d 100644 --- a/addons/product_margin/i18n/es.po +++ b/addons/product_margin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es_AR.po b/addons/product_margin/i18n/es_AR.po index 8669dbd18c2..8f4976ad54c 100644 --- a/addons/product_margin/i18n/es_AR.po +++ b/addons/product_margin/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es_CR.po b/addons/product_margin/i18n/es_CR.po index bdd58ff2e1f..4f46aecfee2 100644 --- a/addons/product_margin/i18n/es_CR.po +++ b/addons/product_margin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/es_EC.po b/addons/product_margin/i18n/es_EC.po index 65daeffeb8f..c39969d10a1 100644 --- a/addons/product_margin/i18n/es_EC.po +++ b/addons/product_margin/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/et.po b/addons/product_margin/i18n/et.po index d5143ac6420..3595ddba2ce 100644 --- a/addons/product_margin/i18n/et.po +++ b/addons/product_margin/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/fi.po b/addons/product_margin/i18n/fi.po index c16ec75d587..4dd0658aef7 100644 --- a/addons/product_margin/i18n/fi.po +++ b/addons/product_margin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/fr.po b/addons/product_margin/i18n/fr.po index c1e76b85c0f..6d7e79e0368 100644 --- a/addons/product_margin/i18n/fr.po +++ b/addons/product_margin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/gl.po b/addons/product_margin/i18n/gl.po index c1028b2d459..c69ae797469 100644 --- a/addons/product_margin/i18n/gl.po +++ b/addons/product_margin/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/gu.po b/addons/product_margin/i18n/gu.po index 89d46fb4688..d2eb6e446fe 100644 --- a/addons/product_margin/i18n/gu.po +++ b/addons/product_margin/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/hr.po b/addons/product_margin/i18n/hr.po index fcbf80be7b6..cbb894cc6c5 100644 --- a/addons/product_margin/i18n/hr.po +++ b/addons/product_margin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/hu.po b/addons/product_margin/i18n/hu.po index eed4f38073c..51a3ab62203 100644 --- a/addons/product_margin/i18n/hu.po +++ b/addons/product_margin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/id.po b/addons/product_margin/i18n/id.po index afac4ea2b6b..d69f2fc8890 100644 --- a/addons/product_margin/i18n/id.po +++ b/addons/product_margin/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/it.po b/addons/product_margin/i18n/it.po index 9dfaabf6f0e..9816178a113 100644 --- a/addons/product_margin/i18n/it.po +++ b/addons/product_margin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ja.po b/addons/product_margin/i18n/ja.po index 724cd3ccbd6..e7f62948c2d 100644 --- a/addons/product_margin/i18n/ja.po +++ b/addons/product_margin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ko.po b/addons/product_margin/i18n/ko.po index 1227943a162..866711744fa 100644 --- a/addons/product_margin/i18n/ko.po +++ b/addons/product_margin/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/lt.po b/addons/product_margin/i18n/lt.po index 22b8a7a2937..23ab9bb8da2 100644 --- a/addons/product_margin/i18n/lt.po +++ b/addons/product_margin/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/mk.po b/addons/product_margin/i18n/mk.po index 6f6cf90d138..0a02af8a17c 100644 --- a/addons/product_margin/i18n/mk.po +++ b/addons/product_margin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/nl.po b/addons/product_margin/i18n/nl.po index 11b311c557f..36ecb181b4f 100644 --- a/addons/product_margin/i18n/nl.po +++ b/addons/product_margin/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/nl_BE.po b/addons/product_margin/i18n/nl_BE.po index 35d75bab153..de732cfb9fd 100644 --- a/addons/product_margin/i18n/nl_BE.po +++ b/addons/product_margin/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pl.po b/addons/product_margin/i18n/pl.po index 4392c4506d9..5b1c8f05e59 100644 --- a/addons/product_margin/i18n/pl.po +++ b/addons/product_margin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pt.po b/addons/product_margin/i18n/pt.po index df3639996ac..7967f0c7f9b 100644 --- a/addons/product_margin/i18n/pt.po +++ b/addons/product_margin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/pt_BR.po b/addons/product_margin/i18n/pt_BR.po index 46a159e4bc8..05583694aca 100644 --- a/addons/product_margin/i18n/pt_BR.po +++ b/addons/product_margin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ro.po b/addons/product_margin/i18n/ro.po index 5629d59a37f..0a71fe1acce 100644 --- a/addons/product_margin/i18n/ro.po +++ b/addons/product_margin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/ru.po b/addons/product_margin/i18n/ru.po index 506eb5a5c54..58b7931cd4a 100644 --- a/addons/product_margin/i18n/ru.po +++ b/addons/product_margin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sl.po b/addons/product_margin/i18n/sl.po index 7448b977a0f..cfc50623c4a 100644 --- a/addons/product_margin/i18n/sl.po +++ b/addons/product_margin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sq.po b/addons/product_margin/i18n/sq.po index 8965faa09fa..3d9ff62c4ea 100644 --- a/addons/product_margin/i18n/sq.po +++ b/addons/product_margin/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sr.po b/addons/product_margin/i18n/sr.po index fbdc9313727..367a7dbb2c4 100644 --- a/addons/product_margin/i18n/sr.po +++ b/addons/product_margin/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sr@latin.po b/addons/product_margin/i18n/sr@latin.po index f6d8e300a55..24a13bddce2 100644 --- a/addons/product_margin/i18n/sr@latin.po +++ b/addons/product_margin/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/sv.po b/addons/product_margin/i18n/sv.po index f0fa3d6fa53..6875cb86562 100644 --- a/addons/product_margin/i18n/sv.po +++ b/addons/product_margin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/tlh.po b/addons/product_margin/i18n/tlh.po index 4d56e285d09..c3284681994 100644 --- a/addons/product_margin/i18n/tlh.po +++ b/addons/product_margin/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/tr.po b/addons/product_margin/i18n/tr.po index 87bc76b60b4..ca1dbcf5678 100644 --- a/addons/product_margin/i18n/tr.po +++ b/addons/product_margin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:22+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/uk.po b/addons/product_margin/i18n/uk.po index ab9e12234b4..0197f3dc818 100644 --- a/addons/product_margin/i18n/uk.po +++ b/addons/product_margin/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/vi.po b/addons/product_margin/i18n/vi.po index b155a77214c..3c4633a3872 100644 --- a/addons/product_margin/i18n/vi.po +++ b/addons/product_margin/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/zh_CN.po b/addons/product_margin/i18n/zh_CN.po index 7d1797f9fba..3b9eca7c1ca 100644 --- a/addons/product_margin/i18n/zh_CN.po +++ b/addons/product_margin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_margin/i18n/zh_TW.po b/addons/product_margin/i18n/zh_TW.po index 9cc6ba402e7..89f5d645200 100644 --- a/addons/product_margin/i18n/zh_TW.po +++ b/addons/product_margin/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_margin #: view:product.product:0 diff --git a/addons/product_visible_discount/i18n/ar.po b/addons/product_visible_discount/i18n/ar.po index 5fa962aad44..6cf523d389a 100644 --- a/addons/product_visible_discount/i18n/ar.po +++ b/addons/product_visible_discount/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/bg.po b/addons/product_visible_discount/i18n/bg.po index 88d51411462..0c10726f0a5 100644 --- a/addons/product_visible_discount/i18n/bg.po +++ b/addons/product_visible_discount/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ca.po b/addons/product_visible_discount/i18n/ca.po index 4e20b1d98d1..edd0749ced0 100644 --- a/addons/product_visible_discount/i18n/ca.po +++ b/addons/product_visible_discount/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/cs.po b/addons/product_visible_discount/i18n/cs.po index d3d657a5c0c..22b91bbc328 100644 --- a/addons/product_visible_discount/i18n/cs.po +++ b/addons/product_visible_discount/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/da.po b/addons/product_visible_discount/i18n/da.po index f15fcea3b22..8a7ced5de8c 100644 --- a/addons/product_visible_discount/i18n/da.po +++ b/addons/product_visible_discount/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/de.po b/addons/product_visible_discount/i18n/de.po index 6f39f06b13d..8853a5c69b9 100644 --- a/addons/product_visible_discount/i18n/de.po +++ b/addons/product_visible_discount/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/el.po b/addons/product_visible_discount/i18n/el.po index 21158364804..942721a3485 100644 --- a/addons/product_visible_discount/i18n/el.po +++ b/addons/product_visible_discount/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es.po b/addons/product_visible_discount/i18n/es.po index 04baff1513b..cea1f091f75 100644 --- a/addons/product_visible_discount/i18n/es.po +++ b/addons/product_visible_discount/i18n/es.po @@ -15,8 +15,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es_CR.po b/addons/product_visible_discount/i18n/es_CR.po index 8318cd94dac..c9d09f2b921 100644 --- a/addons/product_visible_discount/i18n/es_CR.po +++ b/addons/product_visible_discount/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/es_EC.po b/addons/product_visible_discount/i18n/es_EC.po index 1ee553635c8..72311268945 100644 --- a/addons/product_visible_discount/i18n/es_EC.po +++ b/addons/product_visible_discount/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/et.po b/addons/product_visible_discount/i18n/et.po index 719038279ad..c56a01596a9 100644 --- a/addons/product_visible_discount/i18n/et.po +++ b/addons/product_visible_discount/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/fi.po b/addons/product_visible_discount/i18n/fi.po index 27d25b52b20..9eea40e0e7a 100644 --- a/addons/product_visible_discount/i18n/fi.po +++ b/addons/product_visible_discount/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/fr.po b/addons/product_visible_discount/i18n/fr.po index cbd7c86e7df..e110b30629e 100644 --- a/addons/product_visible_discount/i18n/fr.po +++ b/addons/product_visible_discount/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/gl.po b/addons/product_visible_discount/i18n/gl.po index 8384fba5718..a6a7d8bafff 100644 --- a/addons/product_visible_discount/i18n/gl.po +++ b/addons/product_visible_discount/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/hr.po b/addons/product_visible_discount/i18n/hr.po index 1852d499b03..8e74ed22ef1 100644 --- a/addons/product_visible_discount/i18n/hr.po +++ b/addons/product_visible_discount/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/hu.po b/addons/product_visible_discount/i18n/hu.po index 2ca38475540..3c9aba316a7 100644 --- a/addons/product_visible_discount/i18n/hu.po +++ b/addons/product_visible_discount/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/it.po b/addons/product_visible_discount/i18n/it.po index 78025fd4dcf..6bb0c5393a0 100644 --- a/addons/product_visible_discount/i18n/it.po +++ b/addons/product_visible_discount/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ja.po b/addons/product_visible_discount/i18n/ja.po index 80a84cc28f4..afe88355bf6 100644 --- a/addons/product_visible_discount/i18n/ja.po +++ b/addons/product_visible_discount/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/lt.po b/addons/product_visible_discount/i18n/lt.po index f05f0a8acaf..c984ffb475b 100644 --- a/addons/product_visible_discount/i18n/lt.po +++ b/addons/product_visible_discount/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/mk.po b/addons/product_visible_discount/i18n/mk.po index fdfe392f8f0..cb3a6b83652 100644 --- a/addons/product_visible_discount/i18n/mk.po +++ b/addons/product_visible_discount/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/mn.po b/addons/product_visible_discount/i18n/mn.po index 5b099c6f83f..57f5fb3cf92 100644 --- a/addons/product_visible_discount/i18n/mn.po +++ b/addons/product_visible_discount/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/nl.po b/addons/product_visible_discount/i18n/nl.po index 637f74b3dae..a93b36e0eaf 100644 --- a/addons/product_visible_discount/i18n/nl.po +++ b/addons/product_visible_discount/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pl.po b/addons/product_visible_discount/i18n/pl.po index f99210a1072..5d71a7b864c 100644 --- a/addons/product_visible_discount/i18n/pl.po +++ b/addons/product_visible_discount/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pt.po b/addons/product_visible_discount/i18n/pt.po index 4eb46ceb767..2927d6b4930 100644 --- a/addons/product_visible_discount/i18n/pt.po +++ b/addons/product_visible_discount/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/pt_BR.po b/addons/product_visible_discount/i18n/pt_BR.po index cb61359606c..c3e5690a4a3 100644 --- a/addons/product_visible_discount/i18n/pt_BR.po +++ b/addons/product_visible_discount/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ro.po b/addons/product_visible_discount/i18n/ro.po index 50567609bd3..c08ef443abf 100644 --- a/addons/product_visible_discount/i18n/ro.po +++ b/addons/product_visible_discount/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/ru.po b/addons/product_visible_discount/i18n/ru.po index 31341a0d067..4a9acf93f1d 100644 --- a/addons/product_visible_discount/i18n/ru.po +++ b/addons/product_visible_discount/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sl.po b/addons/product_visible_discount/i18n/sl.po index 61c739532a2..c3ce13b2e4c 100644 --- a/addons/product_visible_discount/i18n/sl.po +++ b/addons/product_visible_discount/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sr.po b/addons/product_visible_discount/i18n/sr.po index d479f75536b..7300ccc5e79 100644 --- a/addons/product_visible_discount/i18n/sr.po +++ b/addons/product_visible_discount/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sr@latin.po b/addons/product_visible_discount/i18n/sr@latin.po index 845c4bd4248..85af27075bb 100644 --- a/addons/product_visible_discount/i18n/sr@latin.po +++ b/addons/product_visible_discount/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/sv.po b/addons/product_visible_discount/i18n/sv.po index e785d3cb4c1..38e97942d39 100644 --- a/addons/product_visible_discount/i18n/sv.po +++ b/addons/product_visible_discount/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/tr.po b/addons/product_visible_discount/i18n/tr.po index ef81204c5b4..4c0b4be4fa8 100644 --- a/addons/product_visible_discount/i18n/tr.po +++ b/addons/product_visible_discount/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/vi.po b/addons/product_visible_discount/i18n/vi.po index fb481753466..401fb414a1f 100644 --- a/addons/product_visible_discount/i18n/vi.po +++ b/addons/product_visible_discount/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/product_visible_discount/i18n/zh_CN.po b/addons/product_visible_discount/i18n/zh_CN.po index 33cf94efa37..589e957f6d6 100644 --- a/addons/product_visible_discount/i18n/zh_CN.po +++ b/addons/product_visible_discount/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: product_visible_discount #: code:addons/product_visible_discount/product_visible_discount.py:149 diff --git a/addons/project/i18n/ar.po b/addons/project/i18n/ar.po index 0a55a900f39..214c52500a0 100644 --- a/addons/project/i18n/ar.po +++ b/addons/project/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/bg.po b/addons/project/i18n/bg.po index 8eacf6f9b15..7269c77d64c 100644 --- a/addons/project/i18n/bg.po +++ b/addons/project/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/bs.po b/addons/project/i18n/bs.po index c140e9c3b4e..fe03f372ccf 100644 --- a/addons/project/i18n/bs.po +++ b/addons/project/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ca.po b/addons/project/i18n/ca.po index f5107b43e9f..a2b9cbded34 100644 --- a/addons/project/i18n/ca.po +++ b/addons/project/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/cs.po b/addons/project/i18n/cs.po index 739329d3688..e0bb7f6dfcd 100644 --- a/addons/project/i18n/cs.po +++ b/addons/project/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/da.po b/addons/project/i18n/da.po index da621f9624c..019175013d1 100644 --- a/addons/project/i18n/da.po +++ b/addons/project/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/de.po b/addons/project/i18n/de.po index f58c33ff04a..865c6c95f9a 100644 --- a/addons/project/i18n/de.po +++ b/addons/project/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/el.po b/addons/project/i18n/el.po index 65073609d56..395099416c1 100644 --- a/addons/project/i18n/el.po +++ b/addons/project/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/project/i18n/es.po b/addons/project/i18n/es.po index d9a9b8a4afd..14843d7b55a 100644 --- a/addons/project/i18n/es.po +++ b/addons/project/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_AR.po b/addons/project/i18n/es_AR.po index 270f60b9672..baefedda306 100644 --- a/addons/project/i18n/es_AR.po +++ b/addons/project/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_CO.po b/addons/project/i18n/es_CO.po index 132922174e8..0db9603d78a 100644 --- a/addons/project/i18n/es_CO.po +++ b/addons/project/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_CR.po b/addons/project/i18n/es_CR.po index c7b09f4c69c..e08d855aa3b 100644 --- a/addons/project/i18n/es_CR.po +++ b/addons/project/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_EC.po b/addons/project/i18n/es_EC.po index 24f9fb0f00c..7a846b0f243 100644 --- a/addons/project/i18n/es_EC.po +++ b/addons/project/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_MX.po b/addons/project/i18n/es_MX.po index ce90cc7cde9..e82d3e332f7 100644 --- a/addons/project/i18n/es_MX.po +++ b/addons/project/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/es_PY.po b/addons/project/i18n/es_PY.po index 1df165f7442..9872b1335f0 100644 --- a/addons/project/i18n/es_PY.po +++ b/addons/project/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/et.po b/addons/project/i18n/et.po index 8997b89298a..5f57eba9080 100644 --- a/addons/project/i18n/et.po +++ b/addons/project/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/eu.po b/addons/project/i18n/eu.po index d136ee8927f..c4ee2f76a9c 100644 --- a/addons/project/i18n/eu.po +++ b/addons/project/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/fi.po b/addons/project/i18n/fi.po index 7de0e29c475..d6e32bf9524 100644 --- a/addons/project/i18n/fi.po +++ b/addons/project/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/fr.po b/addons/project/i18n/fr.po index 6e4ada880d2..319fc9b4cb2 100644 --- a/addons/project/i18n/fr.po +++ b/addons/project/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/gl.po b/addons/project/i18n/gl.po index 8af56336d77..1c6b9b11395 100644 --- a/addons/project/i18n/gl.po +++ b/addons/project/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/gu.po b/addons/project/i18n/gu.po index 3d9a047a1be..a701543b685 100644 --- a/addons/project/i18n/gu.po +++ b/addons/project/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/hr.po b/addons/project/i18n/hr.po index 789d028385a..3879e20abb0 100644 --- a/addons/project/i18n/hr.po +++ b/addons/project/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/hu.po b/addons/project/i18n/hu.po index f2b572eaed6..b7dbbf13117 100644 --- a/addons/project/i18n/hu.po +++ b/addons/project/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-19 06:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: selection:project.project,state:0 diff --git a/addons/project/i18n/id.po b/addons/project/i18n/id.po index fb667bd3dc9..3541f99449c 100644 --- a/addons/project/i18n/id.po +++ b/addons/project/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/it.po b/addons/project/i18n/it.po index 224f3ee6bdb..85a4e080f78 100644 --- a/addons/project/i18n/it.po +++ b/addons/project/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ja.po b/addons/project/i18n/ja.po index 066b8198da9..a3b75a464fd 100644 --- a/addons/project/i18n/ja.po +++ b/addons/project/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ko.po b/addons/project/i18n/ko.po index 84fcaa4a4d5..7ba57025c4f 100644 --- a/addons/project/i18n/ko.po +++ b/addons/project/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/lt.po b/addons/project/i18n/lt.po index 6002b639b84..3afc97543ad 100644 --- a/addons/project/i18n/lt.po +++ b/addons/project/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/lv.po b/addons/project/i18n/lv.po index 11492ce62e9..239b422a085 100644 --- a/addons/project/i18n/lv.po +++ b/addons/project/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/mk.po b/addons/project/i18n/mk.po index bccd753526f..545c9d7cd24 100644 --- a/addons/project/i18n/mk.po +++ b/addons/project/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: project diff --git a/addons/project/i18n/mn.po b/addons/project/i18n/mn.po index 32a5dbf9fd0..4b2358dd4bc 100644 --- a/addons/project/i18n/mn.po +++ b/addons/project/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nb.po b/addons/project/i18n/nb.po index 53578ac4179..d35739241b3 100644 --- a/addons/project/i18n/nb.po +++ b/addons/project/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nl.po b/addons/project/i18n/nl.po index b3a32189951..38fb3ed06d3 100644 --- a/addons/project/i18n/nl.po +++ b/addons/project/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/nl_BE.po b/addons/project/i18n/nl_BE.po index f7868b3bea9..a7a25c1703e 100644 --- a/addons/project/i18n/nl_BE.po +++ b/addons/project/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/pl.po b/addons/project/i18n/pl.po index d285f0c2998..286d2766373 100644 --- a/addons/project/i18n/pl.po +++ b/addons/project/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/pt.po b/addons/project/i18n/pt.po index 4021b95e8e8..f4de82657b6 100644 --- a/addons/project/i18n/pt.po +++ b/addons/project/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/pt_BR.po b/addons/project/i18n/pt_BR.po index a5cef52bc9d..dd58af2a8b2 100644 --- a/addons/project/i18n/pt_BR.po +++ b/addons/project/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ro.po b/addons/project/i18n/ro.po index db16a1ce0b6..ba8f5dfe3f0 100644 --- a/addons/project/i18n/ro.po +++ b/addons/project/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/ru.po b/addons/project/i18n/ru.po index b69228281aa..e711559dbef 100644 --- a/addons/project/i18n/ru.po +++ b/addons/project/i18n/ru.po @@ -14,13 +14,13 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 msgid "Email Interface" -msgstr "" +msgstr "Email интерфейс" #. module: project #: help:account.analytic.account,use_tasks:0 @@ -122,7 +122,7 @@ msgstr "Счет аналитики" #. module: project #: field:project.config.settings,group_time_work_estimation_tasks:0 msgid "Manage time estimation on tasks" -msgstr "" +msgstr "Управление оценкой времени по задачам" #. module: project #: help:project.project,message_summary:0 @@ -147,7 +147,7 @@ msgstr "Партнер" #. module: project #: field:project.config.settings,group_manage_delegation_task:0 msgid "Allow task delegation" -msgstr "" +msgstr "Разрешить делегировать задание" #. module: project #: field:project.task.delegate,planned_hours:0 @@ -227,7 +227,7 @@ msgstr "Выполнено" #. module: project #: model:project.category,name:project.project_category_01 msgid "Contact's suggestion" -msgstr "" +msgstr "Предложение контакта" #. module: project #: help:project.config.settings,group_time_work_estimation_tasks:0 @@ -267,7 +267,7 @@ msgstr "Шаблоны Проектов" #. module: project #: field:project.project,analytic_account_id:0 msgid "Contract/Analytic" -msgstr "" +msgstr "Контракт/Анализ" #. module: project #: view:project.config.settings:0 @@ -392,6 +392,8 @@ msgstr "" #: view:project.project:0 msgid "Append this project to another one using analytic accounts hierarchy" msgstr "" +"Добавление этого проекта к другому с использованием иерархии аналитических " +"счетов" #. module: project #: view:project.task:0 @@ -456,18 +458,18 @@ msgstr "Пересмотреть задачу" #. module: project #: view:project.task:0 msgid "Validate planned time" -msgstr "" +msgstr "Подтвердить запланированное время" #. module: project #: field:project.config.settings,module_pad:0 msgid "Use integrated collaborative note pads on task" -msgstr "" +msgstr "Использование интегрированных совместных заметок по задаче" #. module: project #: model:mail.message.subtype,name:project.mt_project_task_blocked #: model:mail.message.subtype,name:project.mt_task_blocked msgid "Task Blocked" -msgstr "" +msgstr "Задание заблокировано" #. module: project #: model:process.node,note:project.process_node_opentask0 @@ -487,7 +489,7 @@ msgstr "" #. module: project #: model:mail.message.subtype,description:project.mt_task_blocked msgid "Task blocked" -msgstr "" +msgstr "Задание заблокировано" #. module: project #: view:project.task:0 @@ -512,7 +514,7 @@ msgstr "Для открытия статуса" #. module: project #: view:project.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Применить" #. module: project #: model:ir.model,name:project.model_project_task_delegate @@ -527,7 +529,7 @@ msgstr "Включить описание задания в задание по #. module: project #: view:project.project:0 msgid "Project Settings" -msgstr "" +msgstr "Настройки проекта" #. module: project #: view:report.project.task.user:0 @@ -618,7 +620,7 @@ msgstr "Задание" #. module: project #: help:project.config.settings,group_tasks_work_on_tasks:0 msgid "Allows you to compute work on tasks." -msgstr "" +msgstr "Позволяет вычислять работу по задачам." #. module: project #: view:project.project:0 @@ -628,7 +630,7 @@ msgstr "Администрирование" #. module: project #: field:project.config.settings,group_tasks_work_on_tasks:0 msgid "Log work activities on tasks" -msgstr "" +msgstr "Отображать ход работ по задачам" #. module: project #: model:project.task.type,name:project.project_tt_analysis @@ -677,6 +679,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Нажмите для создания нового проекта.\n" +"

\n" +" Проекты используются для организации вашей деятельности; " +"планирования\n" +" задач, отслеживания проблем,планирования расписаний. Вы " +"можете разделить \n" +" проекты на внутренние (R&D, Improve Sales Process),\n" +" частные (My Todos) or customer ones.\n" +"

\n" +" Вы сможете сотрудничать с внутренним пользователями по\n" +" проектам или предложить клиентам поделиться своими " +"предложениями.\n" +"

\n" +" " #. module: project #: view:project.config.settings:0 @@ -716,7 +733,7 @@ msgstr "Дата окончания" #. module: project #: model:project.task.type,name:project.project_tt_specification msgid "Specification" -msgstr "" +msgstr "Спецификация" #. module: project #: model:process.transition,note:project.process_transition_draftopentask0 @@ -782,7 +799,7 @@ msgstr "Открыть черновик задания" #. module: project #: field:project.project,alias_model:0 msgid "Alias Model" -msgstr "" +msgstr "Модель псевдонима" #. module: project #: help:report.project.task.user,closing_days:0 @@ -803,7 +820,7 @@ msgstr "Стадии" #: view:project.project:0 #: view:project.task:0 msgid "Delete" -msgstr "" +msgstr "Удалить" #. module: project #: view:report.project.task.user:0 @@ -823,7 +840,7 @@ msgstr "Срочно" #. module: project #: model:project.category,name:project.project_category_02 msgid "Feature request" -msgstr "" +msgstr "Запрос функционала" #. module: project #: view:project.task:0 @@ -844,12 +861,12 @@ msgstr "ПРОВЕРЬ: %s" #. module: project #: view:project.project:0 msgid "Close Project" -msgstr "" +msgstr "Закрыть проект" #. module: project #: field:project.project,tasks:0 msgid "Task Activities" -msgstr "" +msgstr "Активность по задаче" #. module: project #: field:project.project,effective_hours:0 @@ -861,18 +878,18 @@ msgstr "Затраченное время" #: view:project.project:0 #: view:project.task:0 msgid "í" -msgstr "" +msgstr "í" #. module: project #: field:account.analytic.account,company_uom_id:0 msgid "unknown" -msgstr "" +msgstr "неизв." #. module: project #: field:project.project,message_is_follower:0 #: field:project.task,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Подписан" #. module: project #: field:project.task.history,date:0 @@ -889,7 +906,7 @@ msgstr "Расширенные фильтры..." #. module: project #: model:ir.ui.menu,name:project.menu_tasks_config msgid "GTD" -msgstr "" +msgstr "GTD" #. module: project #: view:project.project:0 @@ -905,6 +922,10 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" +"Статус устанавливается в \"Черновик\", при создании дела. Если дело в " +"процессе, то статус - «Открыт». Когда дело закончено, устанавливается статус " +"\"Готово\". Если дело должно быть пересмотрено то статус установлен в " +"'Ожидание'." #. module: project #: model:ir.model,name:project.model_res_company diff --git a/addons/project/i18n/sk.po b/addons/project/i18n/sk.po index 46a0cc3d356..88ce2a09d96 100644 --- a/addons/project/i18n/sk.po +++ b/addons/project/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sl.po b/addons/project/i18n/sl.po index 97a43b7c4e0..c8fb3bed00e 100644 --- a/addons/project/i18n/sl.po +++ b/addons/project/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sq.po b/addons/project/i18n/sq.po index a136521d134..bd0c2ce8072 100644 --- a/addons/project/i18n/sq.po +++ b/addons/project/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:56+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/sv.po b/addons/project/i18n/sv.po index f460f8b0fac..3a6055f2ad9 100644 --- a/addons/project/i18n/sv.po +++ b/addons/project/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/tlh.po b/addons/project/i18n/tlh.po index 72b2410ffd3..97fc91e375f 100644 --- a/addons/project/i18n/tlh.po +++ b/addons/project/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/tr.po b/addons/project/i18n/tr.po index 7e6352bc731..58310632283 100644 --- a/addons/project/i18n/tr.po +++ b/addons/project/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/uk.po b/addons/project/i18n/uk.po index f5880251433..f996b17e7c9 100644 --- a/addons/project/i18n/uk.po +++ b/addons/project/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/vi.po b/addons/project/i18n/vi.po index 20a72de726a..e603105d693 100644 --- a/addons/project/i18n/vi.po +++ b/addons/project/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/zh_CN.po b/addons/project/i18n/zh_CN.po index ec7147cc9ce..a11c29f561e 100644 --- a/addons/project/i18n/zh_CN.po +++ b/addons/project/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project/i18n/zh_TW.po b/addons/project/i18n/zh_TW.po index b8231fb947c..74f9a431f5a 100644 --- a/addons/project/i18n/zh_TW.po +++ b/addons/project/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project #: view:project.project:0 diff --git a/addons/project_gtd/i18n/ar.po b/addons/project_gtd/i18n/ar.po index 3b96184e375..cbf42a48652 100644 --- a/addons/project_gtd/i18n/ar.po +++ b/addons/project_gtd/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/bg.po b/addons/project_gtd/i18n/bg.po index 728df4a0c39..6cb77921230 100644 --- a/addons/project_gtd/i18n/bg.po +++ b/addons/project_gtd/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/bs.po b/addons/project_gtd/i18n/bs.po index 9e942035b3f..02b07cc8a53 100644 --- a/addons/project_gtd/i18n/bs.po +++ b/addons/project_gtd/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ca.po b/addons/project_gtd/i18n/ca.po index 52a546cf014..3f9fb8bbb77 100644 --- a/addons/project_gtd/i18n/ca.po +++ b/addons/project_gtd/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/cs.po b/addons/project_gtd/i18n/cs.po index e85dc5ab708..4b875cd4045 100644 --- a/addons/project_gtd/i18n/cs.po +++ b/addons/project_gtd/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/da.po b/addons/project_gtd/i18n/da.po index 457b856fece..af7128c2ad6 100644 --- a/addons/project_gtd/i18n/da.po +++ b/addons/project_gtd/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/de.po b/addons/project_gtd/i18n/de.po index c3bf27ccbf9..3b91878f671 100644 --- a/addons/project_gtd/i18n/de.po +++ b/addons/project_gtd/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/el.po b/addons/project_gtd/i18n/el.po index 611dfe4333d..f4acfc93cad 100644 --- a/addons/project_gtd/i18n/el.po +++ b/addons/project_gtd/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es.po b/addons/project_gtd/i18n/es.po index 07f4c6d73fa..84324b5d3ed 100644 --- a/addons/project_gtd/i18n/es.po +++ b/addons/project_gtd/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_AR.po b/addons/project_gtd/i18n/es_AR.po index 2dea958a62a..5f57e4a4d6e 100644 --- a/addons/project_gtd/i18n/es_AR.po +++ b/addons/project_gtd/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_CR.po b/addons/project_gtd/i18n/es_CR.po index 6296ac45943..824faaf5ce1 100644 --- a/addons/project_gtd/i18n/es_CR.po +++ b/addons/project_gtd/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/es_EC.po b/addons/project_gtd/i18n/es_EC.po index 1ad19319d78..265c8cc2c84 100644 --- a/addons/project_gtd/i18n/es_EC.po +++ b/addons/project_gtd/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/et.po b/addons/project_gtd/i18n/et.po index 1188ceaf5c7..38c7005ee14 100644 --- a/addons/project_gtd/i18n/et.po +++ b/addons/project_gtd/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/fi.po b/addons/project_gtd/i18n/fi.po index 2e253d407f3..d08ea51c6b2 100644 --- a/addons/project_gtd/i18n/fi.po +++ b/addons/project_gtd/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/fr.po b/addons/project_gtd/i18n/fr.po index a9ad80fe31f..66890599798 100644 --- a/addons/project_gtd/i18n/fr.po +++ b/addons/project_gtd/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/gl.po b/addons/project_gtd/i18n/gl.po index 9726714cc93..01b28665dd2 100644 --- a/addons/project_gtd/i18n/gl.po +++ b/addons/project_gtd/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/hr.po b/addons/project_gtd/i18n/hr.po index 8f7a1efeb17..4b6d0dbe5fa 100644 --- a/addons/project_gtd/i18n/hr.po +++ b/addons/project_gtd/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/hu.po b/addons/project_gtd/i18n/hu.po index d6884335759..a324dfe4d8d 100644 --- a/addons/project_gtd/i18n/hu.po +++ b/addons/project_gtd/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/id.po b/addons/project_gtd/i18n/id.po index 725094a42ca..05ac83c946e 100644 --- a/addons/project_gtd/i18n/id.po +++ b/addons/project_gtd/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/it.po b/addons/project_gtd/i18n/it.po index 1d51b5c672a..14e312fa2ee 100644 --- a/addons/project_gtd/i18n/it.po +++ b/addons/project_gtd/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ja.po b/addons/project_gtd/i18n/ja.po index d56a093cde8..99a0500abb9 100644 --- a/addons/project_gtd/i18n/ja.po +++ b/addons/project_gtd/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ko.po b/addons/project_gtd/i18n/ko.po index 31a27130521..bebd74baac5 100644 --- a/addons/project_gtd/i18n/ko.po +++ b/addons/project_gtd/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/lt.po b/addons/project_gtd/i18n/lt.po index 8328a1ac121..d09fc22ca1f 100644 --- a/addons/project_gtd/i18n/lt.po +++ b/addons/project_gtd/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/lv.po b/addons/project_gtd/i18n/lv.po index b41336de998..95d08d522fa 100644 --- a/addons/project_gtd/i18n/lv.po +++ b/addons/project_gtd/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/mk.po b/addons/project_gtd/i18n/mk.po index 846b9fb2b5d..4a2ae00e5cd 100644 --- a/addons/project_gtd/i18n/mk.po +++ b/addons/project_gtd/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/mn.po b/addons/project_gtd/i18n/mn.po index 5057cef8fbc..6ed31eb7431 100644 --- a/addons/project_gtd/i18n/mn.po +++ b/addons/project_gtd/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/nl.po b/addons/project_gtd/i18n/nl.po index 0033ede9800..7525acbbd4d 100644 --- a/addons/project_gtd/i18n/nl.po +++ b/addons/project_gtd/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/nl_BE.po b/addons/project_gtd/i18n/nl_BE.po index 1521191c590..f2dd78749dd 100644 --- a/addons/project_gtd/i18n/nl_BE.po +++ b/addons/project_gtd/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/pl.po b/addons/project_gtd/i18n/pl.po index 754170e7506..82971f57e50 100644 --- a/addons/project_gtd/i18n/pl.po +++ b/addons/project_gtd/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/pt.po b/addons/project_gtd/i18n/pt.po index 87f0b2ae02c..ade6e152000 100644 --- a/addons/project_gtd/i18n/pt.po +++ b/addons/project_gtd/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/pt_BR.po b/addons/project_gtd/i18n/pt_BR.po index 0f218f4432f..281b6a41738 100644 --- a/addons/project_gtd/i18n/pt_BR.po +++ b/addons/project_gtd/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ro.po b/addons/project_gtd/i18n/ro.po index 45a5f6f1e4a..cb8066dc76a 100644 --- a/addons/project_gtd/i18n/ro.po +++ b/addons/project_gtd/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/ru.po b/addons/project_gtd/i18n/ru.po index d1113020899..f909a103253 100644 --- a/addons/project_gtd/i18n/ru.po +++ b/addons/project_gtd/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sl.po b/addons/project_gtd/i18n/sl.po index 49c6072b369..a9a059889d4 100644 --- a/addons/project_gtd/i18n/sl.po +++ b/addons/project_gtd/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sq.po b/addons/project_gtd/i18n/sq.po index fbb4dd9efe5..01480b343f4 100644 --- a/addons/project_gtd/i18n/sq.po +++ b/addons/project_gtd/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:56+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/sv.po b/addons/project_gtd/i18n/sv.po index 9486d1b16f0..a3576e2873c 100644 --- a/addons/project_gtd/i18n/sv.po +++ b/addons/project_gtd/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/tlh.po b/addons/project_gtd/i18n/tlh.po index 1e76affb905..fb2505a8aeb 100644 --- a/addons/project_gtd/i18n/tlh.po +++ b/addons/project_gtd/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/tr.po b/addons/project_gtd/i18n/tr.po index e6925328a7e..11c69c6854c 100644 --- a/addons/project_gtd/i18n/tr.po +++ b/addons/project_gtd/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/uk.po b/addons/project_gtd/i18n/uk.po index 8e6579ae3d5..0338d001c1c 100644 --- a/addons/project_gtd/i18n/uk.po +++ b/addons/project_gtd/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/vi.po b/addons/project_gtd/i18n/vi.po index b3e3f9c54f6..211aa9fe88d 100644 --- a/addons/project_gtd/i18n/vi.po +++ b/addons/project_gtd/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/zh_CN.po b/addons/project_gtd/i18n/zh_CN.po index edb7a0e2b35..f511993b88e 100644 --- a/addons/project_gtd/i18n/zh_CN.po +++ b/addons/project_gtd/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_gtd/i18n/zh_TW.po b/addons/project_gtd/i18n/zh_TW.po index a0f9807d597..77324f585ee 100644 --- a/addons/project_gtd/i18n/zh_TW.po +++ b/addons/project_gtd/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_issue/i18n/ar.po b/addons/project_issue/i18n/ar.po index 89d610ac731..74326e7cd72 100644 --- a/addons/project_issue/i18n/ar.po +++ b/addons/project_issue/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ca.po b/addons/project_issue/i18n/ca.po index 5f399bd01ce..d1701b40c0c 100644 --- a/addons/project_issue/i18n/ca.po +++ b/addons/project_issue/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/da.po b/addons/project_issue/i18n/da.po index ff4bfdad473..cdde377b0ff 100644 --- a/addons/project_issue/i18n/da.po +++ b/addons/project_issue/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/de.po b/addons/project_issue/i18n/de.po index edb027a8c0e..be3d8616d44 100644 --- a/addons/project_issue/i18n/de.po +++ b/addons/project_issue/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/es.po b/addons/project_issue/i18n/es.po index 24f7ce2a57d..c40370ab6ef 100644 --- a/addons/project_issue/i18n/es.po +++ b/addons/project_issue/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/es_CR.po b/addons/project_issue/i18n/es_CR.po index 2cad54c323d..418136a5a7d 100644 --- a/addons/project_issue/i18n/es_CR.po +++ b/addons/project_issue/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/fi.po b/addons/project_issue/i18n/fi.po index ce25dd62c49..5a20c6faee6 100644 --- a/addons/project_issue/i18n/fi.po +++ b/addons/project_issue/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/fr.po b/addons/project_issue/i18n/fr.po index bcacdd2bcca..6ed59cd862e 100644 --- a/addons/project_issue/i18n/fr.po +++ b/addons/project_issue/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/hr.po b/addons/project_issue/i18n/hr.po index 93505b5b0fd..92554f19717 100644 --- a/addons/project_issue/i18n/hr.po +++ b/addons/project_issue/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/hu.po b/addons/project_issue/i18n/hu.po index 06491773795..03575e5cc0b 100644 --- a/addons/project_issue/i18n/hu.po +++ b/addons/project_issue/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/it.po b/addons/project_issue/i18n/it.po index dccca13cd37..bce62f8273c 100644 --- a/addons/project_issue/i18n/it.po +++ b/addons/project_issue/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ja.po b/addons/project_issue/i18n/ja.po index 20bffc734f8..4bc6a0085e4 100644 --- a/addons/project_issue/i18n/ja.po +++ b/addons/project_issue/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/lt.po b/addons/project_issue/i18n/lt.po index 672920779af..2afdbb5c3b1 100644 --- a/addons/project_issue/i18n/lt.po +++ b/addons/project_issue/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/lv.po b/addons/project_issue/i18n/lv.po index 252f6dbf3a6..09aa84ffa08 100644 --- a/addons/project_issue/i18n/lv.po +++ b/addons/project_issue/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/mk.po b/addons/project_issue/i18n/mk.po index 76e7b4b8146..169311e99fb 100644 --- a/addons/project_issue/i18n/mk.po +++ b/addons/project_issue/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/mn.po b/addons/project_issue/i18n/mn.po index 85fce3c8991..fa191305edd 100644 --- a/addons/project_issue/i18n/mn.po +++ b/addons/project_issue/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/nb.po b/addons/project_issue/i18n/nb.po index 03eadccd586..a3b1bf12c2e 100644 --- a/addons/project_issue/i18n/nb.po +++ b/addons/project_issue/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/nl.po b/addons/project_issue/i18n/nl.po index d227de213d7..3dd547d1a07 100644 --- a/addons/project_issue/i18n/nl.po +++ b/addons/project_issue/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/nl_BE.po b/addons/project_issue/i18n/nl_BE.po index 6c8edee568a..dbd765c493d 100644 --- a/addons/project_issue/i18n/nl_BE.po +++ b/addons/project_issue/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pl.po b/addons/project_issue/i18n/pl.po index b0c371641c7..2de42eb5ca1 100644 --- a/addons/project_issue/i18n/pl.po +++ b/addons/project_issue/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pt.po b/addons/project_issue/i18n/pt.po index aaa0846efb3..86c4ff91baa 100644 --- a/addons/project_issue/i18n/pt.po +++ b/addons/project_issue/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/pt_BR.po b/addons/project_issue/i18n/pt_BR.po index f5377105a49..19f6948fe25 100644 --- a/addons/project_issue/i18n/pt_BR.po +++ b/addons/project_issue/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ro.po b/addons/project_issue/i18n/ro.po index 99e680b2b30..2a6d70f0388 100644 --- a/addons/project_issue/i18n/ro.po +++ b/addons/project_issue/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/ru.po b/addons/project_issue/i18n/ru.po index 6c48933ac0a..c0cc573c471 100644 --- a/addons/project_issue/i18n/ru.po +++ b/addons/project_issue/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/sk.po b/addons/project_issue/i18n/sk.po index 88b4cde5899..8469744017a 100644 --- a/addons/project_issue/i18n/sk.po +++ b/addons/project_issue/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/sl.po b/addons/project_issue/i18n/sl.po index d65f4f3a253..89ae4860d2c 100644 --- a/addons/project_issue/i18n/sl.po +++ b/addons/project_issue/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/sv.po b/addons/project_issue/i18n/sv.po index 15ec2a23f60..1229ead4931 100644 --- a/addons/project_issue/i18n/sv.po +++ b/addons/project_issue/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/tr.po b/addons/project_issue/i18n/tr.po index 71d758e6669..41fa422324b 100644 --- a/addons/project_issue/i18n/tr.po +++ b/addons/project_issue/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "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:57+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/zh_CN.po b/addons/project_issue/i18n/zh_CN.po index a704463d9ea..9ab7301106e 100644 --- a/addons/project_issue/i18n/zh_CN.po +++ b/addons/project_issue/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue/i18n/zh_TW.po b/addons/project_issue/i18n/zh_TW.po index 3d730b8369d..71c1dd5b556 100644 --- a/addons/project_issue/i18n/zh_TW.po +++ b/addons/project_issue/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 diff --git a/addons/project_issue_sheet/i18n/ar.po b/addons/project_issue_sheet/i18n/ar.po index 1ef4c2398cc..ecc0852da4f 100644 --- a/addons/project_issue_sheet/i18n/ar.po +++ b/addons/project_issue_sheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ca.po b/addons/project_issue_sheet/i18n/ca.po index a7ec5f0092a..e083893161c 100644 --- a/addons/project_issue_sheet/i18n/ca.po +++ b/addons/project_issue_sheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/da.po b/addons/project_issue_sheet/i18n/da.po index b4a8d8a6af7..22a6fc54290 100644 --- a/addons/project_issue_sheet/i18n/da.po +++ b/addons/project_issue_sheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/de.po b/addons/project_issue_sheet/i18n/de.po index 0e8cebe8ed9..69fc4802449 100644 --- a/addons/project_issue_sheet/i18n/de.po +++ b/addons/project_issue_sheet/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/es.po b/addons/project_issue_sheet/i18n/es.po index 54233075d55..b9cb3453b9c 100644 --- a/addons/project_issue_sheet/i18n/es.po +++ b/addons/project_issue_sheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/es_CR.po b/addons/project_issue_sheet/i18n/es_CR.po index 7679d83019b..19844ffebe2 100644 --- a/addons/project_issue_sheet/i18n/es_CR.po +++ b/addons/project_issue_sheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/fi.po b/addons/project_issue_sheet/i18n/fi.po index db0a6734d9e..0f5d16d417b 100644 --- a/addons/project_issue_sheet/i18n/fi.po +++ b/addons/project_issue_sheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/fr.po b/addons/project_issue_sheet/i18n/fr.po index 215f2f58318..cae0162f3d8 100644 --- a/addons/project_issue_sheet/i18n/fr.po +++ b/addons/project_issue_sheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/gl.po b/addons/project_issue_sheet/i18n/gl.po index 5dbbc532aa4..bf84b40240c 100644 --- a/addons/project_issue_sheet/i18n/gl.po +++ b/addons/project_issue_sheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/hr.po b/addons/project_issue_sheet/i18n/hr.po index a9e38be0410..117955f9622 100644 --- a/addons/project_issue_sheet/i18n/hr.po +++ b/addons/project_issue_sheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/hu.po b/addons/project_issue_sheet/i18n/hu.po index 28dcfbdc30f..c6d97bc2eac 100644 --- a/addons/project_issue_sheet/i18n/hu.po +++ b/addons/project_issue_sheet/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/it.po b/addons/project_issue_sheet/i18n/it.po index c1784668812..ca71c6e1d29 100644 --- a/addons/project_issue_sheet/i18n/it.po +++ b/addons/project_issue_sheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ja.po b/addons/project_issue_sheet/i18n/ja.po index f56836f7cb6..e2c1f28ada4 100644 --- a/addons/project_issue_sheet/i18n/ja.po +++ b/addons/project_issue_sheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/lv.po b/addons/project_issue_sheet/i18n/lv.po index 5aaa1dbd873..f492adc9f1c 100644 --- a/addons/project_issue_sheet/i18n/lv.po +++ b/addons/project_issue_sheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/mk.po b/addons/project_issue_sheet/i18n/mk.po index edf160a5132..76d18d910f5 100644 --- a/addons/project_issue_sheet/i18n/mk.po +++ b/addons/project_issue_sheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/mn.po b/addons/project_issue_sheet/i18n/mn.po index f5cb6ae59d7..7611a295727 100644 --- a/addons/project_issue_sheet/i18n/mn.po +++ b/addons/project_issue_sheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/nl.po b/addons/project_issue_sheet/i18n/nl.po index 8e5bacb376d..3fe111bf4a9 100644 --- a/addons/project_issue_sheet/i18n/nl.po +++ b/addons/project_issue_sheet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pl.po b/addons/project_issue_sheet/i18n/pl.po index d3e46cfff6a..0c1f19e4da3 100644 --- a/addons/project_issue_sheet/i18n/pl.po +++ b/addons/project_issue_sheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pt.po b/addons/project_issue_sheet/i18n/pt.po index a770720aa31..6bab42ec4aa 100644 --- a/addons/project_issue_sheet/i18n/pt.po +++ b/addons/project_issue_sheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/pt_BR.po b/addons/project_issue_sheet/i18n/pt_BR.po index 09570c991bd..761c40697aa 100644 --- a/addons/project_issue_sheet/i18n/pt_BR.po +++ b/addons/project_issue_sheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ro.po b/addons/project_issue_sheet/i18n/ro.po index 2caed0337c7..60d6bf9d07d 100644 --- a/addons/project_issue_sheet/i18n/ro.po +++ b/addons/project_issue_sheet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/ru.po b/addons/project_issue_sheet/i18n/ru.po index a53b8bb317f..ce97c518f2c 100644 --- a/addons/project_issue_sheet/i18n/ru.po +++ b/addons/project_issue_sheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/sv.po b/addons/project_issue_sheet/i18n/sv.po index 9ac983001bf..d6d14ad809e 100644 --- a/addons/project_issue_sheet/i18n/sv.po +++ b/addons/project_issue_sheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/tr.po b/addons/project_issue_sheet/i18n/tr.po index 41df1db8d8f..93e26be5b6f 100644 --- a/addons/project_issue_sheet/i18n/tr.po +++ b/addons/project_issue_sheet/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_issue_sheet/i18n/zh_CN.po b/addons/project_issue_sheet/i18n/zh_CN.po index 289a104079a..17cb081020e 100644 --- a/addons/project_issue_sheet/i18n/zh_CN.po +++ b/addons/project_issue_sheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 diff --git a/addons/project_long_term/i18n/ar.po b/addons/project_long_term/i18n/ar.po index 2785b803a50..a6c3c837b81 100644 --- a/addons/project_long_term/i18n/ar.po +++ b/addons/project_long_term/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ca.po b/addons/project_long_term/i18n/ca.po index c366e56674c..51cb1b95f52 100644 --- a/addons/project_long_term/i18n/ca.po +++ b/addons/project_long_term/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/da.po b/addons/project_long_term/i18n/da.po index 9b08e4c8b60..b3aa7f324e4 100644 --- a/addons/project_long_term/i18n/da.po +++ b/addons/project_long_term/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/de.po b/addons/project_long_term/i18n/de.po index c1b514e43fa..1392cd58353 100644 --- a/addons/project_long_term/i18n/de.po +++ b/addons/project_long_term/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es.po b/addons/project_long_term/i18n/es.po index 34e78f18f22..f8c0adbbd76 100644 --- a/addons/project_long_term/i18n/es.po +++ b/addons/project_long_term/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es_CR.po b/addons/project_long_term/i18n/es_CR.po index 3689796997c..05fe0367b64 100644 --- a/addons/project_long_term/i18n/es_CR.po +++ b/addons/project_long_term/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/es_EC.po b/addons/project_long_term/i18n/es_EC.po index 13232f48c8c..36b660eaa0c 100644 --- a/addons/project_long_term/i18n/es_EC.po +++ b/addons/project_long_term/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/fi.po b/addons/project_long_term/i18n/fi.po index 73d64676ac3..07abbd6d478 100644 --- a/addons/project_long_term/i18n/fi.po +++ b/addons/project_long_term/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/fr.po b/addons/project_long_term/i18n/fr.po index eb4ab3cc9bc..32b9a79cc25 100644 --- a/addons/project_long_term/i18n/fr.po +++ b/addons/project_long_term/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/hr.po b/addons/project_long_term/i18n/hr.po index 3071831f515..bb89ad112ba 100644 --- a/addons/project_long_term/i18n/hr.po +++ b/addons/project_long_term/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/hu.po b/addons/project_long_term/i18n/hu.po index 7fd1d801cfc..cc2ce5d7e82 100644 --- a/addons/project_long_term/i18n/hu.po +++ b/addons/project_long_term/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/it.po b/addons/project_long_term/i18n/it.po index 57ab7498b47..0e9fb991a28 100644 --- a/addons/project_long_term/i18n/it.po +++ b/addons/project_long_term/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ja.po b/addons/project_long_term/i18n/ja.po index f533c2e41f7..e65c3ddb3ad 100644 --- a/addons/project_long_term/i18n/ja.po +++ b/addons/project_long_term/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/lv.po b/addons/project_long_term/i18n/lv.po index c786bfd15a9..88ef5a01aa9 100644 --- a/addons/project_long_term/i18n/lv.po +++ b/addons/project_long_term/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/mk.po b/addons/project_long_term/i18n/mk.po index 957856ffd20..c5b99eb3ffd 100644 --- a/addons/project_long_term/i18n/mk.po +++ b/addons/project_long_term/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/mn.po b/addons/project_long_term/i18n/mn.po index 6717b201ffa..f024e2abfd5 100644 --- a/addons/project_long_term/i18n/mn.po +++ b/addons/project_long_term/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/nl.po b/addons/project_long_term/i18n/nl.po index c926a3a8351..cb9a5f6689e 100644 --- a/addons/project_long_term/i18n/nl.po +++ b/addons/project_long_term/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pl.po b/addons/project_long_term/i18n/pl.po index 535e17fcb32..6aeb8ebd19d 100644 --- a/addons/project_long_term/i18n/pl.po +++ b/addons/project_long_term/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pt.po b/addons/project_long_term/i18n/pt.po index 802f8acca3c..c58571fea7c 100644 --- a/addons/project_long_term/i18n/pt.po +++ b/addons/project_long_term/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/pt_BR.po b/addons/project_long_term/i18n/pt_BR.po index 972215bc578..d4a0c032e80 100644 --- a/addons/project_long_term/i18n/pt_BR.po +++ b/addons/project_long_term/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ro.po b/addons/project_long_term/i18n/ro.po index 72ed27d6190..2ac1453f08f 100644 --- a/addons/project_long_term/i18n/ro.po +++ b/addons/project_long_term/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/ru.po b/addons/project_long_term/i18n/ru.po index 23326655692..d180bc3b749 100644 --- a/addons/project_long_term/i18n/ru.po +++ b/addons/project_long_term/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/sl.po b/addons/project_long_term/i18n/sl.po index 8f7d76a5cca..2a4c5f2299c 100644 --- a/addons/project_long_term/i18n/sl.po +++ b/addons/project_long_term/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/sv.po b/addons/project_long_term/i18n/sv.po index 18a28192283..c0dbedb96ce 100644 --- a/addons/project_long_term/i18n/sv.po +++ b/addons/project_long_term/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/tr.po b/addons/project_long_term/i18n/tr.po index a851140ccf5..7c86664fff6 100644 --- a/addons/project_long_term/i18n/tr.po +++ b/addons/project_long_term/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_long_term/i18n/zh_CN.po b/addons/project_long_term/i18n/zh_CN.po index fd0f7caf13e..2e42dda17a5 100644 --- a/addons/project_long_term/i18n/zh_CN.po +++ b/addons/project_long_term/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 diff --git a/addons/project_mrp/i18n/ar.po b/addons/project_mrp/i18n/ar.po index 525c2ed19ac..8481e00a661 100644 --- a/addons/project_mrp/i18n/ar.po +++ b/addons/project_mrp/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/bg.po b/addons/project_mrp/i18n/bg.po index bcf0b180ef3..fd97962dd90 100644 --- a/addons/project_mrp/i18n/bg.po +++ b/addons/project_mrp/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/bs.po b/addons/project_mrp/i18n/bs.po index aefafde68f4..510f1249d4d 100644 --- a/addons/project_mrp/i18n/bs.po +++ b/addons/project_mrp/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ca.po b/addons/project_mrp/i18n/ca.po index 35023d44d74..ce905a24cad 100644 --- a/addons/project_mrp/i18n/ca.po +++ b/addons/project_mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/cs.po b/addons/project_mrp/i18n/cs.po index 9a27ef7ee23..d46910c9f05 100644 --- a/addons/project_mrp/i18n/cs.po +++ b/addons/project_mrp/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Language: Czech\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/da.po b/addons/project_mrp/i18n/da.po index 2dc5eda93dc..f9dc3627a07 100644 --- a/addons/project_mrp/i18n/da.po +++ b/addons/project_mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/de.po b/addons/project_mrp/i18n/de.po index 4b01abaa22a..5f12457e519 100644 --- a/addons/project_mrp/i18n/de.po +++ b/addons/project_mrp/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/el.po b/addons/project_mrp/i18n/el.po index f0dd2363f0a..0f4b6f84796 100644 --- a/addons/project_mrp/i18n/el.po +++ b/addons/project_mrp/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es.po b/addons/project_mrp/i18n/es.po index ed2d02b3db1..5d58afac925 100644 --- a/addons/project_mrp/i18n/es.po +++ b/addons/project_mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es_AR.po b/addons/project_mrp/i18n/es_AR.po index c73b1841db0..dea35c756e4 100644 --- a/addons/project_mrp/i18n/es_AR.po +++ b/addons/project_mrp/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es_CR.po b/addons/project_mrp/i18n/es_CR.po index 5c22713157f..d3ffb8b5743 100644 --- a/addons/project_mrp/i18n/es_CR.po +++ b/addons/project_mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/es_EC.po b/addons/project_mrp/i18n/es_EC.po index a708976c36c..b4b690c6fa7 100644 --- a/addons/project_mrp/i18n/es_EC.po +++ b/addons/project_mrp/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/et.po b/addons/project_mrp/i18n/et.po index a766abd4584..44fe7535ccf 100644 --- a/addons/project_mrp/i18n/et.po +++ b/addons/project_mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/fi.po b/addons/project_mrp/i18n/fi.po index 0c96ebc9805..dc524388a80 100644 --- a/addons/project_mrp/i18n/fi.po +++ b/addons/project_mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/fr.po b/addons/project_mrp/i18n/fr.po index 2141de448b6..7a7bc57362e 100644 --- a/addons/project_mrp/i18n/fr.po +++ b/addons/project_mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/gl.po b/addons/project_mrp/i18n/gl.po index ad6e4bbea59..51abedc907a 100644 --- a/addons/project_mrp/i18n/gl.po +++ b/addons/project_mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/gu.po b/addons/project_mrp/i18n/gu.po index 66c72cf0209..fad37903431 100644 --- a/addons/project_mrp/i18n/gu.po +++ b/addons/project_mrp/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/hr.po b/addons/project_mrp/i18n/hr.po index 8578a5d9be7..3b285e95c60 100644 --- a/addons/project_mrp/i18n/hr.po +++ b/addons/project_mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/hu.po b/addons/project_mrp/i18n/hu.po index 37b24d0a8d2..535810495fc 100644 --- a/addons/project_mrp/i18n/hu.po +++ b/addons/project_mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/id.po b/addons/project_mrp/i18n/id.po index 128770d6bd5..ecc49d11abc 100644 --- a/addons/project_mrp/i18n/id.po +++ b/addons/project_mrp/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/it.po b/addons/project_mrp/i18n/it.po index 5d00df5e889..12d02fdb9f4 100644 --- a/addons/project_mrp/i18n/it.po +++ b/addons/project_mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ja.po b/addons/project_mrp/i18n/ja.po index 71f5337d450..bf8b96bdedd 100644 --- a/addons/project_mrp/i18n/ja.po +++ b/addons/project_mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ko.po b/addons/project_mrp/i18n/ko.po index f2168a9163a..77414935dfa 100644 --- a/addons/project_mrp/i18n/ko.po +++ b/addons/project_mrp/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/lt.po b/addons/project_mrp/i18n/lt.po index 3ecbfabddf2..95db67d17eb 100644 --- a/addons/project_mrp/i18n/lt.po +++ b/addons/project_mrp/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/lv.po b/addons/project_mrp/i18n/lv.po index 0fa9ef7f797..d9049f4bc43 100644 --- a/addons/project_mrp/i18n/lv.po +++ b/addons/project_mrp/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/mk.po b/addons/project_mrp/i18n/mk.po index d437d510961..5e9493413ac 100644 --- a/addons/project_mrp/i18n/mk.po +++ b/addons/project_mrp/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:19+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/mn.po b/addons/project_mrp/i18n/mn.po index 0e90c175193..8f1d962eec1 100644 --- a/addons/project_mrp/i18n/mn.po +++ b/addons/project_mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nb.po b/addons/project_mrp/i18n/nb.po index 6e18fc5d8b0..8d29caf2ba9 100644 --- a/addons/project_mrp/i18n/nb.po +++ b/addons/project_mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nl.po b/addons/project_mrp/i18n/nl.po index 98825d1d721..b9e38df8a21 100644 --- a/addons/project_mrp/i18n/nl.po +++ b/addons/project_mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/nl_BE.po b/addons/project_mrp/i18n/nl_BE.po index bc9b15cec41..165cd8d25d3 100644 --- a/addons/project_mrp/i18n/nl_BE.po +++ b/addons/project_mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/pl.po b/addons/project_mrp/i18n/pl.po index 4373acadae3..6d3bd1aba52 100644 --- a/addons/project_mrp/i18n/pl.po +++ b/addons/project_mrp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/pt.po b/addons/project_mrp/i18n/pt.po index f50d4887296..beef411aa21 100644 --- a/addons/project_mrp/i18n/pt.po +++ b/addons/project_mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/pt_BR.po b/addons/project_mrp/i18n/pt_BR.po index b6e3f73c2be..cbf77fad4c1 100644 --- a/addons/project_mrp/i18n/pt_BR.po +++ b/addons/project_mrp/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ro.po b/addons/project_mrp/i18n/ro.po index a292539b6a3..a6535fb8132 100644 --- a/addons/project_mrp/i18n/ro.po +++ b/addons/project_mrp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/ru.po b/addons/project_mrp/i18n/ru.po index c880bcc3c69..bab06759987 100644 --- a/addons/project_mrp/i18n/ru.po +++ b/addons/project_mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/sl.po b/addons/project_mrp/i18n/sl.po index 52c0c20e556..799a4c54d94 100644 --- a/addons/project_mrp/i18n/sl.po +++ b/addons/project_mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/sq.po b/addons/project_mrp/i18n/sq.po index 30be773d0a3..593b005a3fa 100644 --- a/addons/project_mrp/i18n/sq.po +++ b/addons/project_mrp/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/sv.po b/addons/project_mrp/i18n/sv.po index 644bd03c672..e893dbd5f8d 100644 --- a/addons/project_mrp/i18n/sv.po +++ b/addons/project_mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/tlh.po b/addons/project_mrp/i18n/tlh.po index 1dab8209ada..a2e657b6f22 100644 --- a/addons/project_mrp/i18n/tlh.po +++ b/addons/project_mrp/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/tr.po b/addons/project_mrp/i18n/tr.po index 39f2b77d9c8..6235b83030e 100644 --- a/addons/project_mrp/i18n/tr.po +++ b/addons/project_mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/uk.po b/addons/project_mrp/i18n/uk.po index 943ae46f87f..3d6513ca46e 100644 --- a/addons/project_mrp/i18n/uk.po +++ b/addons/project_mrp/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/vi.po b/addons/project_mrp/i18n/vi.po index cc68b296355..0a425f4b17a 100644 --- a/addons/project_mrp/i18n/vi.po +++ b/addons/project_mrp/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/zh_CN.po b/addons/project_mrp/i18n/zh_CN.po index ae4385b1740..ed73d330fc4 100644 --- a/addons/project_mrp/i18n/zh_CN.po +++ b/addons/project_mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_mrp/i18n/zh_TW.po b/addons/project_mrp/i18n/zh_TW.po index bc41d0f5f5e..43d5c6b8602 100644 --- a/addons/project_mrp/i18n/zh_TW.po +++ b/addons/project_mrp/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 diff --git a/addons/project_timesheet/i18n/ar.po b/addons/project_timesheet/i18n/ar.po index 2a10a56985c..3ce25ac00c8 100644 --- a/addons/project_timesheet/i18n/ar.po +++ b/addons/project_timesheet/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/bg.po b/addons/project_timesheet/i18n/bg.po index d1b94ee2a21..482127ae4df 100644 --- a/addons/project_timesheet/i18n/bg.po +++ b/addons/project_timesheet/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/bs.po b/addons/project_timesheet/i18n/bs.po index 83f2e5506e6..d76c03b49a8 100644 --- a/addons/project_timesheet/i18n/bs.po +++ b/addons/project_timesheet/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ca.po b/addons/project_timesheet/i18n/ca.po index 9f2e1fd95f3..f32539005fb 100644 --- a/addons/project_timesheet/i18n/ca.po +++ b/addons/project_timesheet/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/cs.po b/addons/project_timesheet/i18n/cs.po index 5df788228e8..a6300018be2 100644 --- a/addons/project_timesheet/i18n/cs.po +++ b/addons/project_timesheet/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/da.po b/addons/project_timesheet/i18n/da.po index 150f2181233..4947e9d1c83 100644 --- a/addons/project_timesheet/i18n/da.po +++ b/addons/project_timesheet/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/de.po b/addons/project_timesheet/i18n/de.po index aed42046f46..6180d5e086a 100644 --- a/addons/project_timesheet/i18n/de.po +++ b/addons/project_timesheet/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/el.po b/addons/project_timesheet/i18n/el.po index d3027e41327..d7bd05cfe21 100644 --- a/addons/project_timesheet/i18n/el.po +++ b/addons/project_timesheet/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/es.po b/addons/project_timesheet/i18n/es.po index 80ffce97509..25c75fa148f 100644 --- a/addons/project_timesheet/i18n/es.po +++ b/addons/project_timesheet/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/es_AR.po b/addons/project_timesheet/i18n/es_AR.po index 755453570c2..813ebca7b17 100644 --- a/addons/project_timesheet/i18n/es_AR.po +++ b/addons/project_timesheet/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/es_CR.po b/addons/project_timesheet/i18n/es_CR.po index c1295b52286..f56b91df39c 100644 --- a/addons/project_timesheet/i18n/es_CR.po +++ b/addons/project_timesheet/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/et.po b/addons/project_timesheet/i18n/et.po index b437d5ec3e1..93e39990e09 100644 --- a/addons/project_timesheet/i18n/et.po +++ b/addons/project_timesheet/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/fi.po b/addons/project_timesheet/i18n/fi.po index 29b0e3d9a77..040f1390762 100644 --- a/addons/project_timesheet/i18n/fi.po +++ b/addons/project_timesheet/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/fr.po b/addons/project_timesheet/i18n/fr.po index 27173d489be..294d1f5291d 100644 --- a/addons/project_timesheet/i18n/fr.po +++ b/addons/project_timesheet/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/gl.po b/addons/project_timesheet/i18n/gl.po index b865e6f42a1..8155c689d19 100644 --- a/addons/project_timesheet/i18n/gl.po +++ b/addons/project_timesheet/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/hr.po b/addons/project_timesheet/i18n/hr.po index 0841bf1b8c7..965460d7416 100644 --- a/addons/project_timesheet/i18n/hr.po +++ b/addons/project_timesheet/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/hu.po b/addons/project_timesheet/i18n/hu.po index 20a3e96d9fe..f8a6fba2dca 100644 --- a/addons/project_timesheet/i18n/hu.po +++ b/addons/project_timesheet/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/id.po b/addons/project_timesheet/i18n/id.po index eca0874f4bf..cc3679603e3 100644 --- a/addons/project_timesheet/i18n/id.po +++ b/addons/project_timesheet/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/it.po b/addons/project_timesheet/i18n/it.po index 03dc23a209a..d8d0b16d06f 100644 --- a/addons/project_timesheet/i18n/it.po +++ b/addons/project_timesheet/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ja.po b/addons/project_timesheet/i18n/ja.po index f505566d16e..783b691a844 100644 --- a/addons/project_timesheet/i18n/ja.po +++ b/addons/project_timesheet/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ko.po b/addons/project_timesheet/i18n/ko.po index 34161715aa6..482e4720d60 100644 --- a/addons/project_timesheet/i18n/ko.po +++ b/addons/project_timesheet/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/lt.po b/addons/project_timesheet/i18n/lt.po index f742ef05eb3..5fb3be65918 100644 --- a/addons/project_timesheet/i18n/lt.po +++ b/addons/project_timesheet/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/lv.po b/addons/project_timesheet/i18n/lv.po index 210516832be..8d430b32713 100644 --- a/addons/project_timesheet/i18n/lv.po +++ b/addons/project_timesheet/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/mk.po b/addons/project_timesheet/i18n/mk.po index a0647ec045f..8ccd42a4695 100644 --- a/addons/project_timesheet/i18n/mk.po +++ b/addons/project_timesheet/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/mn.po b/addons/project_timesheet/i18n/mn.po index 513043b792c..96ed1c26771 100644 --- a/addons/project_timesheet/i18n/mn.po +++ b/addons/project_timesheet/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-24 05:11+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/nl.po b/addons/project_timesheet/i18n/nl.po index 75ff605f8b0..3a924bf2fac 100644 --- a/addons/project_timesheet/i18n/nl.po +++ b/addons/project_timesheet/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/nl_BE.po b/addons/project_timesheet/i18n/nl_BE.po index f7c97ee42a0..989ee3321d9 100644 --- a/addons/project_timesheet/i18n/nl_BE.po +++ b/addons/project_timesheet/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/pl.po b/addons/project_timesheet/i18n/pl.po index 9834a4d4dbb..9e97b3e4427 100644 --- a/addons/project_timesheet/i18n/pl.po +++ b/addons/project_timesheet/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/pt.po b/addons/project_timesheet/i18n/pt.po index 86f650fd9b3..2a242024e54 100644 --- a/addons/project_timesheet/i18n/pt.po +++ b/addons/project_timesheet/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/pt_BR.po b/addons/project_timesheet/i18n/pt_BR.po index 2b6fa3275ab..f9388fb4615 100644 --- a/addons/project_timesheet/i18n/pt_BR.po +++ b/addons/project_timesheet/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ro.po b/addons/project_timesheet/i18n/ro.po index 8454ba8d3bb..32ee848280a 100644 --- a/addons/project_timesheet/i18n/ro.po +++ b/addons/project_timesheet/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/ru.po b/addons/project_timesheet/i18n/ru.po index aace142cf78..f3542299e2a 100644 --- a/addons/project_timesheet/i18n/ru.po +++ b/addons/project_timesheet/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sl.po b/addons/project_timesheet/i18n/sl.po index 4a525eeaee0..6becd0c321d 100644 --- a/addons/project_timesheet/i18n/sl.po +++ b/addons/project_timesheet/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sq.po b/addons/project_timesheet/i18n/sq.po index 08b9800d302..de79166ed60 100644 --- a/addons/project_timesheet/i18n/sq.po +++ b/addons/project_timesheet/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/sv.po b/addons/project_timesheet/i18n/sv.po index 5c1335ed8c9..0ee8c8fd547 100644 --- a/addons/project_timesheet/i18n/sv.po +++ b/addons/project_timesheet/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/tlh.po b/addons/project_timesheet/i18n/tlh.po index 06b2537317b..d9cc2db9e6a 100644 --- a/addons/project_timesheet/i18n/tlh.po +++ b/addons/project_timesheet/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/tr.po b/addons/project_timesheet/i18n/tr.po index f303420807d..892f25c03e7 100644 --- a/addons/project_timesheet/i18n/tr.po +++ b/addons/project_timesheet/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/uk.po b/addons/project_timesheet/i18n/uk.po index 58d2e22d468..2929587a33e 100644 --- a/addons/project_timesheet/i18n/uk.po +++ b/addons/project_timesheet/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/vi.po b/addons/project_timesheet/i18n/vi.po index 58619c08bb8..64be5e3d5f6 100644 --- a/addons/project_timesheet/i18n/vi.po +++ b/addons/project_timesheet/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/zh_CN.po b/addons/project_timesheet/i18n/zh_CN.po index 24e356b7458..777e46778ae 100644 --- a/addons/project_timesheet/i18n/zh_CN.po +++ b/addons/project_timesheet/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/project_timesheet/i18n/zh_TW.po b/addons/project_timesheet/i18n/zh_TW.po index 512d74c1ce6..f07da90058a 100644 --- a/addons/project_timesheet/i18n/zh_TW.po +++ b/addons/project_timesheet/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 diff --git a/addons/purchase/i18n/ar.po b/addons/purchase/i18n/ar.po index 7356907d841..7a2f6e22e93 100644 --- a/addons/purchase/i18n/ar.po +++ b/addons/purchase/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/bg.po b/addons/purchase/i18n/bg.po index b641d9c7c2e..b1a9969e27e 100644 --- a/addons/purchase/i18n/bg.po +++ b/addons/purchase/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/bs.po b/addons/purchase/i18n/bs.po index 79559b5936e..fc765ddbdbd 100644 --- a/addons/purchase/i18n/bs.po +++ b/addons/purchase/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ca.po b/addons/purchase/i18n/ca.po index 063f0b7447e..6b075f0ff20 100644 --- a/addons/purchase/i18n/ca.po +++ b/addons/purchase/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/cs.po b/addons/purchase/i18n/cs.po index 24a7af874a9..5b08bcb292f 100644 --- a/addons/purchase/i18n/cs.po +++ b/addons/purchase/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/da.po b/addons/purchase/i18n/da.po index e9470ed2c24..be4a8454595 100644 --- a/addons/purchase/i18n/da.po +++ b/addons/purchase/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/de.po b/addons/purchase/i18n/de.po index ee6777c3fc6..947cc3878c0 100644 --- a/addons/purchase/i18n/de.po +++ b/addons/purchase/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/el.po b/addons/purchase/i18n/el.po index 1a90cb1fb5a..77bbaa22210 100644 --- a/addons/purchase/i18n/el.po +++ b/addons/purchase/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/en_GB.po b/addons/purchase/i18n/en_GB.po index 7c5b52baa5c..b5deb4c674a 100644 --- a/addons/purchase/i18n/en_GB.po +++ b/addons/purchase/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es.po b/addons/purchase/i18n/es.po index 40762b7d025..5d861fe59d9 100644 --- a/addons/purchase/i18n/es.po +++ b/addons/purchase/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_AR.po b/addons/purchase/i18n/es_AR.po index 179c42565fd..63cd70e5231 100644 --- a/addons/purchase/i18n/es_AR.po +++ b/addons/purchase/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_CL.po b/addons/purchase/i18n/es_CL.po index f4008056bb0..b6e71561732 100644 --- a/addons/purchase/i18n/es_CL.po +++ b/addons/purchase/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_CO.po b/addons/purchase/i18n/es_CO.po index c690b7a4aea..586e4a93bf2 100644 --- a/addons/purchase/i18n/es_CO.po +++ b/addons/purchase/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_CR.po b/addons/purchase/i18n/es_CR.po index bd65e558e05..0fc0909f250 100644 --- a/addons/purchase/i18n/es_CR.po +++ b/addons/purchase/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_EC.po b/addons/purchase/i18n/es_EC.po index 7c417ad8482..4cf5fba8e4e 100644 --- a/addons/purchase/i18n/es_EC.po +++ b/addons/purchase/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/es_MX.po b/addons/purchase/i18n/es_MX.po index ead7573b701..3dda6509a4e 100644 --- a/addons/purchase/i18n/es_MX.po +++ b/addons/purchase/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/et.po b/addons/purchase/i18n/et.po index 0820e6691d5..1478fcba146 100644 --- a/addons/purchase/i18n/et.po +++ b/addons/purchase/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/fi.po b/addons/purchase/i18n/fi.po index 53d19145e90..ed704861de6 100644 --- a/addons/purchase/i18n/fi.po +++ b/addons/purchase/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/fr.po b/addons/purchase/i18n/fr.po index e0fc8c60d87..4edf5f30abb 100644 --- a/addons/purchase/i18n/fr.po +++ b/addons/purchase/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/gl.po b/addons/purchase/i18n/gl.po index edd02595bf8..5bc73d8a606 100644 --- a/addons/purchase/i18n/gl.po +++ b/addons/purchase/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/hr.po b/addons/purchase/i18n/hr.po index 9565ce275db..8ae51e7d928 100644 --- a/addons/purchase/i18n/hr.po +++ b/addons/purchase/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/hu.po b/addons/purchase/i18n/hu.po index a69239a3742..e4af7cc890f 100644 --- a/addons/purchase/i18n/hu.po +++ b/addons/purchase/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/id.po b/addons/purchase/i18n/id.po index d0a22b3f1f9..82faf38f45e 100644 --- a/addons/purchase/i18n/id.po +++ b/addons/purchase/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/it.po b/addons/purchase/i18n/it.po index e8dbf06d0ac..731ba438b20 100644 --- a/addons/purchase/i18n/it.po +++ b/addons/purchase/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ja.po b/addons/purchase/i18n/ja.po index 7fd47fd1e00..17e0a465225 100644 --- a/addons/purchase/i18n/ja.po +++ b/addons/purchase/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ko.po b/addons/purchase/i18n/ko.po index f9d462f2e01..4901e6fa0a4 100644 --- a/addons/purchase/i18n/ko.po +++ b/addons/purchase/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/lt.po b/addons/purchase/i18n/lt.po index c2509d8677a..860e4bbb39c 100644 --- a/addons/purchase/i18n/lt.po +++ b/addons/purchase/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/lv.po b/addons/purchase/i18n/lv.po index 596a348546d..6e462c82113 100644 --- a/addons/purchase/i18n/lv.po +++ b/addons/purchase/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/mk.po b/addons/purchase/i18n/mk.po index a07c7602961..933ea358408 100644 --- a/addons/purchase/i18n/mk.po +++ b/addons/purchase/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: purchase diff --git a/addons/purchase/i18n/mn.po b/addons/purchase/i18n/mn.po index 9e5e169bb33..e4960b408f3 100644 --- a/addons/purchase/i18n/mn.po +++ b/addons/purchase/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nb.po b/addons/purchase/i18n/nb.po index c8be2bf95f8..41b4ce48cf1 100644 --- a/addons/purchase/i18n/nb.po +++ b/addons/purchase/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nl.po b/addons/purchase/i18n/nl.po index 69b1033d0bc..a1d350866d1 100644 --- a/addons/purchase/i18n/nl.po +++ b/addons/purchase/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/nl_BE.po b/addons/purchase/i18n/nl_BE.po index 7df211623e9..4367d248826 100644 --- a/addons/purchase/i18n/nl_BE.po +++ b/addons/purchase/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/pl.po b/addons/purchase/i18n/pl.po index 535fdaf3398..d5c57fb6330 100644 --- a/addons/purchase/i18n/pl.po +++ b/addons/purchase/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/pt.po b/addons/purchase/i18n/pt.po index a386d300728..dea15c854e7 100644 --- a/addons/purchase/i18n/pt.po +++ b/addons/purchase/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/pt_BR.po b/addons/purchase/i18n/pt_BR.po index b49e4eab69a..c08b0302328 100644 --- a/addons/purchase/i18n/pt_BR.po +++ b/addons/purchase/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/ro.po b/addons/purchase/i18n/ro.po index ff8f549d2f5..d8a036b04d2 100644 --- a/addons/purchase/i18n/ro.po +++ b/addons/purchase/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:email.template,body_html:purchase.email_template_edi_purchase diff --git a/addons/purchase/i18n/ru.po b/addons/purchase/i18n/ru.po index 2cd3dd960c2..8f982b22677 100644 --- a/addons/purchase/i18n/ru.po +++ b/addons/purchase/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sk.po b/addons/purchase/i18n/sk.po index f64fa1dd88f..1a5a57a9f27 100644 --- a/addons/purchase/i18n/sk.po +++ b/addons/purchase/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sl.po b/addons/purchase/i18n/sl.po index d580b916370..fbfc5e5dbc8 100644 --- a/addons/purchase/i18n/sl.po +++ b/addons/purchase/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sq.po b/addons/purchase/i18n/sq.po index cc55f006cf0..2ae7d99fc90 100644 --- a/addons/purchase/i18n/sq.po +++ b/addons/purchase/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:58+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sr.po b/addons/purchase/i18n/sr.po index b3b79014d00..e5f75ea418b 100644 --- a/addons/purchase/i18n/sr.po +++ b/addons/purchase/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sr@latin.po b/addons/purchase/i18n/sr@latin.po index ed1cf87ef25..a5cbc1b656d 100644 --- a/addons/purchase/i18n/sr@latin.po +++ b/addons/purchase/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/sv.po b/addons/purchase/i18n/sv.po index 5fb0c0669c9..a9ff5257e03 100644 --- a/addons/purchase/i18n/sv.po +++ b/addons/purchase/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/th.po b/addons/purchase/i18n/th.po index 6cc43700a05..de3e1631897 100644 --- a/addons/purchase/i18n/th.po +++ b/addons/purchase/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/tlh.po b/addons/purchase/i18n/tlh.po index 4baebec2625..d4940794e82 100644 --- a/addons/purchase/i18n/tlh.po +++ b/addons/purchase/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/tr.po b/addons/purchase/i18n/tr.po index f98d30aeda8..72f31a8573b 100644 --- a/addons/purchase/i18n/tr.po +++ b/addons/purchase/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:22+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/uk.po b/addons/purchase/i18n/uk.po index eca4c8b4319..6b2a9823795 100644 --- a/addons/purchase/i18n/uk.po +++ b/addons/purchase/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/vi.po b/addons/purchase/i18n/vi.po index bc72cf355e0..43d8d7f5c52 100644 --- a/addons/purchase/i18n/vi.po +++ b/addons/purchase/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/zh_CN.po b/addons/purchase/i18n/zh_CN.po index 9440d23693d..e21de3f22ad 100644 --- a/addons/purchase/i18n/zh_CN.po +++ b/addons/purchase/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase/i18n/zh_TW.po b/addons/purchase/i18n/zh_TW.po index 58f3ed594df..7af4b38b6da 100644 --- a/addons/purchase/i18n/zh_TW.po +++ b/addons/purchase/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting diff --git a/addons/purchase_analytic_plans/i18n/ar.po b/addons/purchase_analytic_plans/i18n/ar.po index b5a08a83ccb..062383793f5 100644 --- a/addons/purchase_analytic_plans/i18n/ar.po +++ b/addons/purchase_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/bg.po b/addons/purchase_analytic_plans/i18n/bg.po index 465d781e2d5..1cbf9bd3c0e 100644 --- a/addons/purchase_analytic_plans/i18n/bg.po +++ b/addons/purchase_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/bs.po b/addons/purchase_analytic_plans/i18n/bs.po index c64dba01770..9f165735b90 100644 --- a/addons/purchase_analytic_plans/i18n/bs.po +++ b/addons/purchase_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ca.po b/addons/purchase_analytic_plans/i18n/ca.po index 00964911014..d3e8ffdc5db 100644 --- a/addons/purchase_analytic_plans/i18n/ca.po +++ b/addons/purchase_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/cs.po b/addons/purchase_analytic_plans/i18n/cs.po index 06d0cf1340c..79b1d3ff0ea 100644 --- a/addons/purchase_analytic_plans/i18n/cs.po +++ b/addons/purchase_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/da.po b/addons/purchase_analytic_plans/i18n/da.po index eaf8d3c98b9..63aa23d8dac 100644 --- a/addons/purchase_analytic_plans/i18n/da.po +++ b/addons/purchase_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/de.po b/addons/purchase_analytic_plans/i18n/de.po index 30bae01c971..b724b43bb48 100644 --- a/addons/purchase_analytic_plans/i18n/de.po +++ b/addons/purchase_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/el.po b/addons/purchase_analytic_plans/i18n/el.po index 0b058af6442..34343010e50 100644 --- a/addons/purchase_analytic_plans/i18n/el.po +++ b/addons/purchase_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es.po b/addons/purchase_analytic_plans/i18n/es.po index 6f5b0ad1c02..16063253792 100644 --- a/addons/purchase_analytic_plans/i18n/es.po +++ b/addons/purchase_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es_AR.po b/addons/purchase_analytic_plans/i18n/es_AR.po index 4e42bb42359..b8e2abad970 100644 --- a/addons/purchase_analytic_plans/i18n/es_AR.po +++ b/addons/purchase_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/es_CR.po b/addons/purchase_analytic_plans/i18n/es_CR.po index 352dfbcdd94..7523be81504 100644 --- a/addons/purchase_analytic_plans/i18n/es_CR.po +++ b/addons/purchase_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/et.po b/addons/purchase_analytic_plans/i18n/et.po index 616c3259df9..3fb64ee38cc 100644 --- a/addons/purchase_analytic_plans/i18n/et.po +++ b/addons/purchase_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/fi.po b/addons/purchase_analytic_plans/i18n/fi.po index ffe9365f10c..5a61c30c34c 100644 --- a/addons/purchase_analytic_plans/i18n/fi.po +++ b/addons/purchase_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/fr.po b/addons/purchase_analytic_plans/i18n/fr.po index 370b0a575a9..2bb77549db3 100644 --- a/addons/purchase_analytic_plans/i18n/fr.po +++ b/addons/purchase_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/gl.po b/addons/purchase_analytic_plans/i18n/gl.po index 3fd3249d581..92bdde717aa 100644 --- a/addons/purchase_analytic_plans/i18n/gl.po +++ b/addons/purchase_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/hr.po b/addons/purchase_analytic_plans/i18n/hr.po index cc743b6fad4..67884a4184a 100644 --- a/addons/purchase_analytic_plans/i18n/hr.po +++ b/addons/purchase_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/hu.po b/addons/purchase_analytic_plans/i18n/hu.po index af504a68c41..26c553faef2 100644 --- a/addons/purchase_analytic_plans/i18n/hu.po +++ b/addons/purchase_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/id.po b/addons/purchase_analytic_plans/i18n/id.po index d6573294427..989f7fd3113 100644 --- a/addons/purchase_analytic_plans/i18n/id.po +++ b/addons/purchase_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/it.po b/addons/purchase_analytic_plans/i18n/it.po index 6e1de96078c..2b509eef1f1 100644 --- a/addons/purchase_analytic_plans/i18n/it.po +++ b/addons/purchase_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ja.po b/addons/purchase_analytic_plans/i18n/ja.po index e61af3ab8c2..db6f48ee090 100644 --- a/addons/purchase_analytic_plans/i18n/ja.po +++ b/addons/purchase_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ko.po b/addons/purchase_analytic_plans/i18n/ko.po index 1ee3b9d0dbb..268a6cfb4d6 100644 --- a/addons/purchase_analytic_plans/i18n/ko.po +++ b/addons/purchase_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/lt.po b/addons/purchase_analytic_plans/i18n/lt.po index 744be35bab9..01c0f24ffbe 100644 --- a/addons/purchase_analytic_plans/i18n/lt.po +++ b/addons/purchase_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/mk.po b/addons/purchase_analytic_plans/i18n/mk.po index 1ce2f34e528..048e500081a 100644 --- a/addons/purchase_analytic_plans/i18n/mk.po +++ b/addons/purchase_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/mn.po b/addons/purchase_analytic_plans/i18n/mn.po index 9c10200ca9e..405cbcc87b6 100644 --- a/addons/purchase_analytic_plans/i18n/mn.po +++ b/addons/purchase_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:24+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/nl.po b/addons/purchase_analytic_plans/i18n/nl.po index 297656b8562..9e74d189530 100644 --- a/addons/purchase_analytic_plans/i18n/nl.po +++ b/addons/purchase_analytic_plans/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/nl_BE.po b/addons/purchase_analytic_plans/i18n/nl_BE.po index 26eee579bd4..c401b6d494f 100644 --- a/addons/purchase_analytic_plans/i18n/nl_BE.po +++ b/addons/purchase_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pl.po b/addons/purchase_analytic_plans/i18n/pl.po index 0978558f3e0..dac0661cfc8 100644 --- a/addons/purchase_analytic_plans/i18n/pl.po +++ b/addons/purchase_analytic_plans/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pt.po b/addons/purchase_analytic_plans/i18n/pt.po index 2f1a335d9dc..cb1006d2034 100644 --- a/addons/purchase_analytic_plans/i18n/pt.po +++ b/addons/purchase_analytic_plans/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/pt_BR.po b/addons/purchase_analytic_plans/i18n/pt_BR.po index 8aa232089f6..0e3edf081d0 100644 --- a/addons/purchase_analytic_plans/i18n/pt_BR.po +++ b/addons/purchase_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ro.po b/addons/purchase_analytic_plans/i18n/ro.po index b981618ba56..f947100ac64 100644 --- a/addons/purchase_analytic_plans/i18n/ro.po +++ b/addons/purchase_analytic_plans/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ru.po b/addons/purchase_analytic_plans/i18n/ru.po index c439e9f0641..d9c19c85cca 100644 --- a/addons/purchase_analytic_plans/i18n/ru.po +++ b/addons/purchase_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sl.po b/addons/purchase_analytic_plans/i18n/sl.po index 5b32071edae..812226d9ef3 100644 --- a/addons/purchase_analytic_plans/i18n/sl.po +++ b/addons/purchase_analytic_plans/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sq.po b/addons/purchase_analytic_plans/i18n/sq.po index d9e4578b07a..b639c043158 100644 --- a/addons/purchase_analytic_plans/i18n/sq.po +++ b/addons/purchase_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sr.po b/addons/purchase_analytic_plans/i18n/sr.po index a42cdef4cbd..17c60d8b796 100644 --- a/addons/purchase_analytic_plans/i18n/sr.po +++ b/addons/purchase_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sr@latin.po b/addons/purchase_analytic_plans/i18n/sr@latin.po index 1ae8aad08f3..4a4c7482594 100644 --- a/addons/purchase_analytic_plans/i18n/sr@latin.po +++ b/addons/purchase_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/sv.po b/addons/purchase_analytic_plans/i18n/sv.po index 7a55ae41761..bb52e1f1abf 100644 --- a/addons/purchase_analytic_plans/i18n/sv.po +++ b/addons/purchase_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/tlh.po b/addons/purchase_analytic_plans/i18n/tlh.po index 5e11697ce70..17d7adcae4f 100644 --- a/addons/purchase_analytic_plans/i18n/tlh.po +++ b/addons/purchase_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/tr.po b/addons/purchase_analytic_plans/i18n/tr.po index 70796c2bcc8..fa0d4c07184 100644 --- a/addons/purchase_analytic_plans/i18n/tr.po +++ b/addons/purchase_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/uk.po b/addons/purchase_analytic_plans/i18n/uk.po index a08a6e7c6fd..6bf82551e63 100644 --- a/addons/purchase_analytic_plans/i18n/uk.po +++ b/addons/purchase_analytic_plans/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/ur.po b/addons/purchase_analytic_plans/i18n/ur.po index c5b27819ca7..5e33f5318ee 100644 --- a/addons/purchase_analytic_plans/i18n/ur.po +++ b/addons/purchase_analytic_plans/i18n/ur.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/vi.po b/addons/purchase_analytic_plans/i18n/vi.po index fb960841d1f..23c063bd1f1 100644 --- a/addons/purchase_analytic_plans/i18n/vi.po +++ b/addons/purchase_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/zh_CN.po b/addons/purchase_analytic_plans/i18n/zh_CN.po index 5f950024936..26d2115d5fc 100644 --- a/addons/purchase_analytic_plans/i18n/zh_CN.po +++ b/addons/purchase_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_analytic_plans/i18n/zh_TW.po b/addons/purchase_analytic_plans/i18n/zh_TW.po index 3d2b11e4b70..3bece75c501 100644 --- a/addons/purchase_analytic_plans/i18n/zh_TW.po +++ b/addons/purchase_analytic_plans/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_analytic_plans #: field:purchase.order.line,analytics_id:0 diff --git a/addons/purchase_double_validation/i18n/ar.po b/addons/purchase_double_validation/i18n/ar.po index 0876b30e386..5f9194e90d5 100644 --- a/addons/purchase_double_validation/i18n/ar.po +++ b/addons/purchase_double_validation/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/bg.po b/addons/purchase_double_validation/i18n/bg.po index 0ac1ea7be1e..ba18e8b3456 100644 --- a/addons/purchase_double_validation/i18n/bg.po +++ b/addons/purchase_double_validation/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ca.po b/addons/purchase_double_validation/i18n/ca.po index 8d39f348bd4..6dfd1aba935 100644 --- a/addons/purchase_double_validation/i18n/ca.po +++ b/addons/purchase_double_validation/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/da.po b/addons/purchase_double_validation/i18n/da.po index 25ae71cdd5f..c5e436c64ae 100644 --- a/addons/purchase_double_validation/i18n/da.po +++ b/addons/purchase_double_validation/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/de.po b/addons/purchase_double_validation/i18n/de.po index ab6568010ed..4eda3b3a89e 100644 --- a/addons/purchase_double_validation/i18n/de.po +++ b/addons/purchase_double_validation/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es.po b/addons/purchase_double_validation/i18n/es.po index c59bfd7a808..66f1142ab76 100644 --- a/addons/purchase_double_validation/i18n/es.po +++ b/addons/purchase_double_validation/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es_CR.po b/addons/purchase_double_validation/i18n/es_CR.po index 5e6c16982fc..c929c90ccf3 100644 --- a/addons/purchase_double_validation/i18n/es_CR.po +++ b/addons/purchase_double_validation/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/es_EC.po b/addons/purchase_double_validation/i18n/es_EC.po index e4b825b570e..6a9a08e85bb 100644 --- a/addons/purchase_double_validation/i18n/es_EC.po +++ b/addons/purchase_double_validation/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/fi.po b/addons/purchase_double_validation/i18n/fi.po index a423b70b650..f450e79fea9 100644 --- a/addons/purchase_double_validation/i18n/fi.po +++ b/addons/purchase_double_validation/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/fr.po b/addons/purchase_double_validation/i18n/fr.po index e7a91c0b7f4..fd996e809ad 100644 --- a/addons/purchase_double_validation/i18n/fr.po +++ b/addons/purchase_double_validation/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/gl.po b/addons/purchase_double_validation/i18n/gl.po index 80206d8479b..1a92b0c03e5 100644 --- a/addons/purchase_double_validation/i18n/gl.po +++ b/addons/purchase_double_validation/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/hr.po b/addons/purchase_double_validation/i18n/hr.po index 89a93169ca0..b500b9d9abf 100644 --- a/addons/purchase_double_validation/i18n/hr.po +++ b/addons/purchase_double_validation/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/hu.po b/addons/purchase_double_validation/i18n/hu.po index ab5c336f096..0ff87137992 100644 --- a/addons/purchase_double_validation/i18n/hu.po +++ b/addons/purchase_double_validation/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/it.po b/addons/purchase_double_validation/i18n/it.po index 75b68375922..c4c4e7d1892 100644 --- a/addons/purchase_double_validation/i18n/it.po +++ b/addons/purchase_double_validation/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ja.po b/addons/purchase_double_validation/i18n/ja.po index ed59f03afc3..bb68a07d479 100644 --- a/addons/purchase_double_validation/i18n/ja.po +++ b/addons/purchase_double_validation/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/mk.po b/addons/purchase_double_validation/i18n/mk.po index 89d3c62d87b..d6f8721f6f7 100644 --- a/addons/purchase_double_validation/i18n/mk.po +++ b/addons/purchase_double_validation/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/mn.po b/addons/purchase_double_validation/i18n/mn.po index e00142ee503..bbac7d47927 100644 --- a/addons/purchase_double_validation/i18n/mn.po +++ b/addons/purchase_double_validation/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/nl.po b/addons/purchase_double_validation/i18n/nl.po index 1be98c221a2..d5698fbb676 100644 --- a/addons/purchase_double_validation/i18n/nl.po +++ b/addons/purchase_double_validation/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/pl.po b/addons/purchase_double_validation/i18n/pl.po index e5b869b7767..af15fb327dd 100644 --- a/addons/purchase_double_validation/i18n/pl.po +++ b/addons/purchase_double_validation/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/pt.po b/addons/purchase_double_validation/i18n/pt.po index ce9076ecf0a..ce483e16725 100644 --- a/addons/purchase_double_validation/i18n/pt.po +++ b/addons/purchase_double_validation/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/pt_BR.po b/addons/purchase_double_validation/i18n/pt_BR.po index babcbb77c80..8a868b4ef4e 100644 --- a/addons/purchase_double_validation/i18n/pt_BR.po +++ b/addons/purchase_double_validation/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ro.po b/addons/purchase_double_validation/i18n/ro.po index be9fbd56a83..efe7abd2efb 100644 --- a/addons/purchase_double_validation/i18n/ro.po +++ b/addons/purchase_double_validation/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/ru.po b/addons/purchase_double_validation/i18n/ru.po index a8cefc709a9..1305f16e0b7 100644 --- a/addons/purchase_double_validation/i18n/ru.po +++ b/addons/purchase_double_validation/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/sl.po b/addons/purchase_double_validation/i18n/sl.po index 9ef3c5befd4..866aad78bfa 100644 --- a/addons/purchase_double_validation/i18n/sl.po +++ b/addons/purchase_double_validation/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/sv.po b/addons/purchase_double_validation/i18n/sv.po index 01eee5221c9..30975740920 100644 --- a/addons/purchase_double_validation/i18n/sv.po +++ b/addons/purchase_double_validation/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/tr.po b/addons/purchase_double_validation/i18n/tr.po index 15e9b684024..cf0d03d892a 100644 --- a/addons/purchase_double_validation/i18n/tr.po +++ b/addons/purchase_double_validation/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_double_validation/i18n/zh_CN.po b/addons/purchase_double_validation/i18n/zh_CN.po index 87fd269d3ff..f6192715c89 100644 --- a/addons/purchase_double_validation/i18n/zh_CN.po +++ b/addons/purchase_double_validation/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_double_validation #: model:ir.model,name:purchase_double_validation.model_purchase_config_settings diff --git a/addons/purchase_requisition/i18n/ar.po b/addons/purchase_requisition/i18n/ar.po index 95e7fdd8035..349a2d7d9f5 100644 --- a/addons/purchase_requisition/i18n/ar.po +++ b/addons/purchase_requisition/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/bg.po b/addons/purchase_requisition/i18n/bg.po index 372a3333159..d258c4291dc 100644 --- a/addons/purchase_requisition/i18n/bg.po +++ b/addons/purchase_requisition/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ca.po b/addons/purchase_requisition/i18n/ca.po index 9abbcfa8c71..7bd63bec9cf 100644 --- a/addons/purchase_requisition/i18n/ca.po +++ b/addons/purchase_requisition/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/da.po b/addons/purchase_requisition/i18n/da.po index 8a69640b4fa..b54093ca320 100644 --- a/addons/purchase_requisition/i18n/da.po +++ b/addons/purchase_requisition/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/de.po b/addons/purchase_requisition/i18n/de.po index 8e1549314d0..89fa686087e 100644 --- a/addons/purchase_requisition/i18n/de.po +++ b/addons/purchase_requisition/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/es.po b/addons/purchase_requisition/i18n/es.po index 1360c77a51d..881385bf893 100644 --- a/addons/purchase_requisition/i18n/es.po +++ b/addons/purchase_requisition/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/es_CR.po b/addons/purchase_requisition/i18n/es_CR.po index e4d6c9cdd1b..084782c5b00 100644 --- a/addons/purchase_requisition/i18n/es_CR.po +++ b/addons/purchase_requisition/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/fi.po b/addons/purchase_requisition/i18n/fi.po index 21d5df0f7aa..863ba543802 100644 --- a/addons/purchase_requisition/i18n/fi.po +++ b/addons/purchase_requisition/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/fr.po b/addons/purchase_requisition/i18n/fr.po index 396d31364c3..59c43756343 100644 --- a/addons/purchase_requisition/i18n/fr.po +++ b/addons/purchase_requisition/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/hr.po b/addons/purchase_requisition/i18n/hr.po index dbf8a2ab19f..1aaccd98942 100644 --- a/addons/purchase_requisition/i18n/hr.po +++ b/addons/purchase_requisition/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/hu.po b/addons/purchase_requisition/i18n/hu.po index 600ef0ed124..63a78ccfe1d 100644 --- a/addons/purchase_requisition/i18n/hu.po +++ b/addons/purchase_requisition/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/id.po b/addons/purchase_requisition/i18n/id.po index 98fa0525ddd..98bbc8fab35 100644 --- a/addons/purchase_requisition/i18n/id.po +++ b/addons/purchase_requisition/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/it.po b/addons/purchase_requisition/i18n/it.po index fd55055d34f..185d9448e4f 100644 --- a/addons/purchase_requisition/i18n/it.po +++ b/addons/purchase_requisition/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ja.po b/addons/purchase_requisition/i18n/ja.po index fa2c1c7da6e..23d44134d06 100644 --- a/addons/purchase_requisition/i18n/ja.po +++ b/addons/purchase_requisition/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/mk.po b/addons/purchase_requisition/i18n/mk.po index aa3f1c81924..09303b5838d 100644 --- a/addons/purchase_requisition/i18n/mk.po +++ b/addons/purchase_requisition/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/mn.po b/addons/purchase_requisition/i18n/mn.po index 8f93315f8f6..2b48061bc5d 100644 --- a/addons/purchase_requisition/i18n/mn.po +++ b/addons/purchase_requisition/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/nb.po b/addons/purchase_requisition/i18n/nb.po index 2088453d16b..5be7af7801a 100644 --- a/addons/purchase_requisition/i18n/nb.po +++ b/addons/purchase_requisition/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/nl.po b/addons/purchase_requisition/i18n/nl.po index dfe20cfc3fe..234c4a0f999 100644 --- a/addons/purchase_requisition/i18n/nl.po +++ b/addons/purchase_requisition/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pl.po b/addons/purchase_requisition/i18n/pl.po index 146dbad8ee4..9c536ca9548 100644 --- a/addons/purchase_requisition/i18n/pl.po +++ b/addons/purchase_requisition/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pt.po b/addons/purchase_requisition/i18n/pt.po index b586ad94e39..cca2cde0539 100644 --- a/addons/purchase_requisition/i18n/pt.po +++ b/addons/purchase_requisition/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/pt_BR.po b/addons/purchase_requisition/i18n/pt_BR.po index 183b8d77a16..3661d73334a 100644 --- a/addons/purchase_requisition/i18n/pt_BR.po +++ b/addons/purchase_requisition/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ro.po b/addons/purchase_requisition/i18n/ro.po index 4fe18efc85f..03392b0fddd 100644 --- a/addons/purchase_requisition/i18n/ro.po +++ b/addons/purchase_requisition/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/ru.po b/addons/purchase_requisition/i18n/ru.po index e59cbc61922..a288889ea53 100644 --- a/addons/purchase_requisition/i18n/ru.po +++ b/addons/purchase_requisition/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/sl.po b/addons/purchase_requisition/i18n/sl.po index b8b16d9e438..4c05a9125a3 100644 --- a/addons/purchase_requisition/i18n/sl.po +++ b/addons/purchase_requisition/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/sv.po b/addons/purchase_requisition/i18n/sv.po index eb617da5373..9bf1e935fec 100644 --- a/addons/purchase_requisition/i18n/sv.po +++ b/addons/purchase_requisition/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/tr.po b/addons/purchase_requisition/i18n/tr.po index 316c943c0c4..b014dd4d3a9 100644 --- a/addons/purchase_requisition/i18n/tr.po +++ b/addons/purchase_requisition/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/purchase_requisition/i18n/zh_CN.po b/addons/purchase_requisition/i18n/zh_CN.po index 880650b9cd9..139aad1abe1 100644 --- a/addons/purchase_requisition/i18n/zh_CN.po +++ b/addons/purchase_requisition/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: purchase_requisition #: view:purchase.requisition:0 diff --git a/addons/report_intrastat/i18n/ar.po b/addons/report_intrastat/i18n/ar.po index 92b04263578..434b81ce7c8 100644 --- a/addons/report_intrastat/i18n/ar.po +++ b/addons/report_intrastat/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/bg.po b/addons/report_intrastat/i18n/bg.po index 34434bc726b..adbf9ebf692 100644 --- a/addons/report_intrastat/i18n/bg.po +++ b/addons/report_intrastat/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/bs.po b/addons/report_intrastat/i18n/bs.po index 41830d69c7d..a8e181746dd 100644 --- a/addons/report_intrastat/i18n/bs.po +++ b/addons/report_intrastat/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ca.po b/addons/report_intrastat/i18n/ca.po index 3c35b7fdc39..1684ca3179e 100644 --- a/addons/report_intrastat/i18n/ca.po +++ b/addons/report_intrastat/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/cs.po b/addons/report_intrastat/i18n/cs.po index d4cb3ee3af0..20d859d77d0 100644 --- a/addons/report_intrastat/i18n/cs.po +++ b/addons/report_intrastat/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/da.po b/addons/report_intrastat/i18n/da.po index 70562b1a481..7cd78841e4c 100644 --- a/addons/report_intrastat/i18n/da.po +++ b/addons/report_intrastat/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/de.po b/addons/report_intrastat/i18n/de.po index 76c07b91ec0..5eb3baeec97 100644 --- a/addons/report_intrastat/i18n/de.po +++ b/addons/report_intrastat/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es.po b/addons/report_intrastat/i18n/es.po index 7f75cf25b21..b96abd41955 100644 --- a/addons/report_intrastat/i18n/es.po +++ b/addons/report_intrastat/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es_AR.po b/addons/report_intrastat/i18n/es_AR.po index 981f3f699e0..a81654f9544 100644 --- a/addons/report_intrastat/i18n/es_AR.po +++ b/addons/report_intrastat/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/es_CR.po b/addons/report_intrastat/i18n/es_CR.po index 22dc9ffbea9..cd60922b5d8 100644 --- a/addons/report_intrastat/i18n/es_CR.po +++ b/addons/report_intrastat/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/et.po b/addons/report_intrastat/i18n/et.po index 987400c7736..f4372865529 100644 --- a/addons/report_intrastat/i18n/et.po +++ b/addons/report_intrastat/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/fi.po b/addons/report_intrastat/i18n/fi.po index d30ee0740df..8ea41df1081 100644 --- a/addons/report_intrastat/i18n/fi.po +++ b/addons/report_intrastat/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/fr.po b/addons/report_intrastat/i18n/fr.po index 3ecc83f22b8..6fdafe1d4af 100644 --- a/addons/report_intrastat/i18n/fr.po +++ b/addons/report_intrastat/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/hr.po b/addons/report_intrastat/i18n/hr.po index 10f013ede7b..28fd1bfb3dd 100644 --- a/addons/report_intrastat/i18n/hr.po +++ b/addons/report_intrastat/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/hu.po b/addons/report_intrastat/i18n/hu.po index f08d56a6083..23f95154106 100644 --- a/addons/report_intrastat/i18n/hu.po +++ b/addons/report_intrastat/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/id.po b/addons/report_intrastat/i18n/id.po index 2ebcd0db650..e7562e376e7 100644 --- a/addons/report_intrastat/i18n/id.po +++ b/addons/report_intrastat/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/it.po b/addons/report_intrastat/i18n/it.po index 3d95a4e9b87..a371569b682 100644 --- a/addons/report_intrastat/i18n/it.po +++ b/addons/report_intrastat/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ja.po b/addons/report_intrastat/i18n/ja.po index 2860170cd34..c38eeaf5b04 100644 --- a/addons/report_intrastat/i18n/ja.po +++ b/addons/report_intrastat/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ko.po b/addons/report_intrastat/i18n/ko.po index 81368d5581f..58af074d086 100644 --- a/addons/report_intrastat/i18n/ko.po +++ b/addons/report_intrastat/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/lt.po b/addons/report_intrastat/i18n/lt.po index a437e762927..a912bd88fb6 100644 --- a/addons/report_intrastat/i18n/lt.po +++ b/addons/report_intrastat/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/mk.po b/addons/report_intrastat/i18n/mk.po index 316c4c99651..b23c3bd571d 100644 --- a/addons/report_intrastat/i18n/mk.po +++ b/addons/report_intrastat/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/mn.po b/addons/report_intrastat/i18n/mn.po index 8bb008f8a7e..0c57bcedb8d 100644 --- a/addons/report_intrastat/i18n/mn.po +++ b/addons/report_intrastat/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/nl.po b/addons/report_intrastat/i18n/nl.po index ca1f258b22e..85c0e3a10fd 100644 --- a/addons/report_intrastat/i18n/nl.po +++ b/addons/report_intrastat/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/nl_BE.po b/addons/report_intrastat/i18n/nl_BE.po index b4bc9eecc67..d2c67ca0b4d 100644 --- a/addons/report_intrastat/i18n/nl_BE.po +++ b/addons/report_intrastat/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pl.po b/addons/report_intrastat/i18n/pl.po index 2d1691f411f..94579d7ef31 100644 --- a/addons/report_intrastat/i18n/pl.po +++ b/addons/report_intrastat/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pt.po b/addons/report_intrastat/i18n/pt.po index 54fd616a95f..df65dee7dd9 100644 --- a/addons/report_intrastat/i18n/pt.po +++ b/addons/report_intrastat/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/pt_BR.po b/addons/report_intrastat/i18n/pt_BR.po index 823171678a9..db9754e1c03 100644 --- a/addons/report_intrastat/i18n/pt_BR.po +++ b/addons/report_intrastat/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ro.po b/addons/report_intrastat/i18n/ro.po index ca77893524f..80a43224466 100644 --- a/addons/report_intrastat/i18n/ro.po +++ b/addons/report_intrastat/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/ru.po b/addons/report_intrastat/i18n/ru.po index 2b6bb353029..9a51de9ab8e 100644 --- a/addons/report_intrastat/i18n/ru.po +++ b/addons/report_intrastat/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sl.po b/addons/report_intrastat/i18n/sl.po index 109ef9612dc..092211ec0d8 100644 --- a/addons/report_intrastat/i18n/sl.po +++ b/addons/report_intrastat/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sq.po b/addons/report_intrastat/i18n/sq.po index 2b95f5f9ce8..936ac53fcc5 100644 --- a/addons/report_intrastat/i18n/sq.po +++ b/addons/report_intrastat/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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:59+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/sv.po b/addons/report_intrastat/i18n/sv.po index 285d9550a71..9bbdfd726f5 100644 --- a/addons/report_intrastat/i18n/sv.po +++ b/addons/report_intrastat/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/tlh.po b/addons/report_intrastat/i18n/tlh.po index 85ed57ae185..b88b28a946e 100644 --- a/addons/report_intrastat/i18n/tlh.po +++ b/addons/report_intrastat/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/tr.po b/addons/report_intrastat/i18n/tr.po index 8fed26e5412..d3d5e2699e9 100644 --- a/addons/report_intrastat/i18n/tr.po +++ b/addons/report_intrastat/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/uk.po b/addons/report_intrastat/i18n/uk.po index 61d2adb4766..e147f78a158 100644 --- a/addons/report_intrastat/i18n/uk.po +++ b/addons/report_intrastat/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/vi.po b/addons/report_intrastat/i18n/vi.po index 73249c90ea0..055b699c97a 100644 --- a/addons/report_intrastat/i18n/vi.po +++ b/addons/report_intrastat/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/zh_CN.po b/addons/report_intrastat/i18n/zh_CN.po index 5e9671f7e1d..5536f73f4fb 100644 --- a/addons/report_intrastat/i18n/zh_CN.po +++ b/addons/report_intrastat/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_intrastat/i18n/zh_TW.po b/addons/report_intrastat/i18n/zh_TW.po index 7b9c37cc408..b7df46e8534 100644 --- a/addons/report_intrastat/i18n/zh_TW.po +++ b/addons/report_intrastat/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_webkit/i18n/ar.po b/addons/report_webkit/i18n/ar.po index 4cab40b538c..159e5e9e23b 100644 --- a/addons/report_webkit/i18n/ar.po +++ b/addons/report_webkit/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/bg.po b/addons/report_webkit/i18n/bg.po index 9ec82f70a34..adae5862c2c 100644 --- a/addons/report_webkit/i18n/bg.po +++ b/addons/report_webkit/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ca.po b/addons/report_webkit/i18n/ca.po index baaffa9acfb..5a1282ff15d 100644 --- a/addons/report_webkit/i18n/ca.po +++ b/addons/report_webkit/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/da.po b/addons/report_webkit/i18n/da.po index e806702641a..a435493d971 100644 --- a/addons/report_webkit/i18n/da.po +++ b/addons/report_webkit/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/de.po b/addons/report_webkit/i18n/de.po index 8e12fd783fe..ec8764f4b8a 100644 --- a/addons/report_webkit/i18n/de.po +++ b/addons/report_webkit/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/es.po b/addons/report_webkit/i18n/es.po index 2fd925ea846..140ef5239e7 100644 --- a/addons/report_webkit/i18n/es.po +++ b/addons/report_webkit/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/es_CR.po b/addons/report_webkit/i18n/es_CR.po index 6efa502c2ed..c29dacdd598 100644 --- a/addons/report_webkit/i18n/es_CR.po +++ b/addons/report_webkit/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/fi.po b/addons/report_webkit/i18n/fi.po index 3ac5967dcd4..4f9120aea38 100644 --- a/addons/report_webkit/i18n/fi.po +++ b/addons/report_webkit/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/fr.po b/addons/report_webkit/i18n/fr.po index 93fd3643c57..e71181bcd29 100644 --- a/addons/report_webkit/i18n/fr.po +++ b/addons/report_webkit/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/hr.po b/addons/report_webkit/i18n/hr.po index 5604ba2cdf1..56327da8a59 100644 --- a/addons/report_webkit/i18n/hr.po +++ b/addons/report_webkit/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/hu.po b/addons/report_webkit/i18n/hu.po index 6d80cea79a9..40eef8f111d 100644 --- a/addons/report_webkit/i18n/hu.po +++ b/addons/report_webkit/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/it.po b/addons/report_webkit/i18n/it.po index 8776f0d104a..aa7346e1671 100644 --- a/addons/report_webkit/i18n/it.po +++ b/addons/report_webkit/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ja.po b/addons/report_webkit/i18n/ja.po index 7c35ea694d4..f56e746a8f9 100644 --- a/addons/report_webkit/i18n/ja.po +++ b/addons/report_webkit/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/mk.po b/addons/report_webkit/i18n/mk.po index 0f5d2790134..53ff5e6d1da 100644 --- a/addons/report_webkit/i18n/mk.po +++ b/addons/report_webkit/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/mn.po b/addons/report_webkit/i18n/mn.po index d6cd017e022..47a22d31182 100644 --- a/addons/report_webkit/i18n/mn.po +++ b/addons/report_webkit/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/nl.po b/addons/report_webkit/i18n/nl.po index a4b52fd1f55..00b199b6c61 100644 --- a/addons/report_webkit/i18n/nl.po +++ b/addons/report_webkit/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pl.po b/addons/report_webkit/i18n/pl.po index f073122df1e..1d87574ddaa 100644 --- a/addons/report_webkit/i18n/pl.po +++ b/addons/report_webkit/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pt.po b/addons/report_webkit/i18n/pt.po index 4f139092f7a..12e2134a48d 100644 --- a/addons/report_webkit/i18n/pt.po +++ b/addons/report_webkit/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/pt_BR.po b/addons/report_webkit/i18n/pt_BR.po index 9f77e3fbc20..44c0ff299b5 100644 --- a/addons/report_webkit/i18n/pt_BR.po +++ b/addons/report_webkit/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ro.po b/addons/report_webkit/i18n/ro.po index 33ef09380d4..4f754f097f2 100644 --- a/addons/report_webkit/i18n/ro.po +++ b/addons/report_webkit/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/ru.po b/addons/report_webkit/i18n/ru.po index 0de7675cf04..ead64d6927b 100644 --- a/addons/report_webkit/i18n/ru.po +++ b/addons/report_webkit/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/sl.po b/addons/report_webkit/i18n/sl.po index 5d083d739e8..6b75d319dfe 100644 --- a/addons/report_webkit/i18n/sl.po +++ b/addons/report_webkit/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/sv.po b/addons/report_webkit/i18n/sv.po index 6234a41159f..8d2ef433d5d 100644 --- a/addons/report_webkit/i18n/sv.po +++ b/addons/report_webkit/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/tr.po b/addons/report_webkit/i18n/tr.po index 20ef53787e2..aa340410493 100644 --- a/addons/report_webkit/i18n/tr.po +++ b/addons/report_webkit/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/report_webkit/i18n/zh_CN.po b/addons/report_webkit/i18n/zh_CN.po index a680bf2316a..0d7356813c5 100644 --- a/addons/report_webkit/i18n/zh_CN.po +++ b/addons/report_webkit/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: report_webkit #: view:ir.actions.report.xml:0 diff --git a/addons/resource/i18n/ar.po b/addons/resource/i18n/ar.po index 3aa88ba83d6..5cbd3ae12bb 100644 --- a/addons/resource/i18n/ar.po +++ b/addons/resource/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/bg.po b/addons/resource/i18n/bg.po index 9bafd97b43c..ca3f5b53db9 100644 --- a/addons/resource/i18n/bg.po +++ b/addons/resource/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ca.po b/addons/resource/i18n/ca.po index 72970e723a8..561841d21a5 100644 --- a/addons/resource/i18n/ca.po +++ b/addons/resource/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/cs.po b/addons/resource/i18n/cs.po index 1052f30e272..e946d7ef409 100644 --- a/addons/resource/i18n/cs.po +++ b/addons/resource/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/da.po b/addons/resource/i18n/da.po index d44eb2b5ce0..b3d7f4493fb 100644 --- a/addons/resource/i18n/da.po +++ b/addons/resource/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/de.po b/addons/resource/i18n/de.po index 015ecb9a9b6..8a4e05575a4 100644 --- a/addons/resource/i18n/de.po +++ b/addons/resource/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es.po b/addons/resource/i18n/es.po index 393eb4cf37e..553d894bd46 100644 --- a/addons/resource/i18n/es.po +++ b/addons/resource/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es_CR.po b/addons/resource/i18n/es_CR.po index 40260f15977..3f5ea76c855 100644 --- a/addons/resource/i18n/es_CR.po +++ b/addons/resource/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/es_EC.po b/addons/resource/i18n/es_EC.po index d9aa4033b44..0c5f78eea2d 100644 --- a/addons/resource/i18n/es_EC.po +++ b/addons/resource/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/et.po b/addons/resource/i18n/et.po index 7c7750a83bc..7a11d21c07c 100644 --- a/addons/resource/i18n/et.po +++ b/addons/resource/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/fi.po b/addons/resource/i18n/fi.po index 3097d52e6e2..7f56a2e6805 100644 --- a/addons/resource/i18n/fi.po +++ b/addons/resource/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/fr.po b/addons/resource/i18n/fr.po index a16ae830280..4dd8512a8c9 100644 --- a/addons/resource/i18n/fr.po +++ b/addons/resource/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/gl.po b/addons/resource/i18n/gl.po index 358a2c12689..b3c2b13b236 100644 --- a/addons/resource/i18n/gl.po +++ b/addons/resource/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/hr.po b/addons/resource/i18n/hr.po index e7a7d0d7a35..4c355924c42 100644 --- a/addons/resource/i18n/hr.po +++ b/addons/resource/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/hu.po b/addons/resource/i18n/hu.po index 0ca084c6433..5b303a9d65b 100644 --- a/addons/resource/i18n/hu.po +++ b/addons/resource/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/it.po b/addons/resource/i18n/it.po index 7da0703da4b..f510fd53d71 100644 --- a/addons/resource/i18n/it.po +++ b/addons/resource/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ja.po b/addons/resource/i18n/ja.po index dc8f9928fe1..9d7bdf6c848 100644 --- a/addons/resource/i18n/ja.po +++ b/addons/resource/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/lt.po b/addons/resource/i18n/lt.po index d3625ad0d99..1e4753365f3 100644 --- a/addons/resource/i18n/lt.po +++ b/addons/resource/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/mk.po b/addons/resource/i18n/mk.po index a26a34a1279..d81bca6d8fc 100644 --- a/addons/resource/i18n/mk.po +++ b/addons/resource/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: resource diff --git a/addons/resource/i18n/mn.po b/addons/resource/i18n/mn.po index cadb9cb5d41..d19edbb62ca 100644 --- a/addons/resource/i18n/mn.po +++ b/addons/resource/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/nl.po b/addons/resource/i18n/nl.po index e824c14fb06..a554ff19925 100644 --- a/addons/resource/i18n/nl.po +++ b/addons/resource/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pl.po b/addons/resource/i18n/pl.po index cf2b24a06cb..7a07a483197 100644 --- a/addons/resource/i18n/pl.po +++ b/addons/resource/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pt.po b/addons/resource/i18n/pt.po index 9e049f75ff7..ce53fa3b322 100644 --- a/addons/resource/i18n/pt.po +++ b/addons/resource/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/pt_BR.po b/addons/resource/i18n/pt_BR.po index 69bad5baf81..be4b04859aa 100644 --- a/addons/resource/i18n/pt_BR.po +++ b/addons/resource/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ro.po b/addons/resource/i18n/ro.po index e0f5b2ee24a..c6ee8677a2e 100644 --- a/addons/resource/i18n/ro.po +++ b/addons/resource/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/ru.po b/addons/resource/i18n/ru.po index 8f89d5fd771..5ae1a43a036 100644 --- a/addons/resource/i18n/ru.po +++ b/addons/resource/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/sl.po b/addons/resource/i18n/sl.po index 55d00ffefca..99172e1fd1c 100644 --- a/addons/resource/i18n/sl.po +++ b/addons/resource/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/sv.po b/addons/resource/i18n/sv.po index 0a9989eb2ff..672e93b04c4 100644 --- a/addons/resource/i18n/sv.po +++ b/addons/resource/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/tr.po b/addons/resource/i18n/tr.po index c5a59fbd503..f376f613c1f 100644 --- a/addons/resource/i18n/tr.po +++ b/addons/resource/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/vi.po b/addons/resource/i18n/vi.po index ee029bd0719..72a30091f9a 100644 --- a/addons/resource/i18n/vi.po +++ b/addons/resource/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/resource/i18n/zh_CN.po b/addons/resource/i18n/zh_CN.po index e264d7d14de..5336e4bb570 100644 --- a/addons/resource/i18n/zh_CN.po +++ b/addons/resource/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 diff --git a/addons/sale/i18n/ar.po b/addons/sale/i18n/ar.po index f87dfc58244..9c6edc847cf 100644 --- a/addons/sale/i18n/ar.po +++ b/addons/sale/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/bg.po b/addons/sale/i18n/bg.po index 98941dd8190..274657bfc96 100644 --- a/addons/sale/i18n/bg.po +++ b/addons/sale/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/bs.po b/addons/sale/i18n/bs.po index 8d782bbaf7d..bfeee2f848d 100644 --- a/addons/sale/i18n/bs.po +++ b/addons/sale/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ca.po b/addons/sale/i18n/ca.po index ed90460b0ea..abc55244e36 100644 --- a/addons/sale/i18n/ca.po +++ b/addons/sale/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/cs.po b/addons/sale/i18n/cs.po index 2c03d2f6851..28086660f20 100644 --- a/addons/sale/i18n/cs.po +++ b/addons/sale/i18n/cs.po @@ -7,20 +7,20 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Raphael Collet (OpenERP) \n" +"PO-Revision-Date: 2013-03-27 14:29+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-08 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" -"X-Poedit-Language: Czech\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" +"Language: cs\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting msgid "Analytic Accounting for Sales" -msgstr "" +msgstr "Analytické účtování prodeje" #. module: sale #: model:process.transition,name:sale.process_transition_confirmquotation0 @@ -30,19 +30,19 @@ msgstr "Potvrdit ocenění" #. module: sale #: view:board.board:0 msgid "Sales Dashboard" -msgstr "" +msgstr "Dashboard - prodej" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:92 #, python-format msgid "There is no income account defined as global property." -msgstr "" +msgstr "Příjmový účet není globálně nastavený." #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_tree2 #: model:ir.ui.menu,name:sale.menu_invoicing_sales_order_lines msgid "Order Lines to Invoice" -msgstr "" +msgstr "Položky objednávky k fakturaci" #. module: sale #: field:sale.order,date_confirm:0 @@ -59,17 +59,17 @@ msgstr "Seskupit podle..." #. module: sale #: field:sale.order.line,address_allotment_id:0 msgid "Allotment Partner" -msgstr "Podílový partner" +msgstr "Přidělování kontaktu" #. module: sale #: model:ir.actions.act_window,name:sale.action_view_sale_advance_payment_inv msgid "Invoice Order" -msgstr "" +msgstr "fakturovat objednávku" #. module: sale #: view:sale.config.settings:0 msgid "Product Features" -msgstr "" +msgstr "Vlastnosti výrobku" #. module: sale #: help:sale.config.settings,module_account_analytic_analysis:0 @@ -83,6 +83,13 @@ msgid "" "invoice automatically.\n" " It installs the account_analytic_analysis module." msgstr "" +"Umožňuje nastavit obchodní podmínky pro zákazníka: způsob\n" +" fakturace (pevná cena, dle časového výkazu, zálohová faktura), " +"pevné ceny\n" +" (1200 Kč/den pro vývojáře), dobu trvání (roční podpora).\n" +" Budete mít možnost automaticky sledovat průběh zakázky a " +"fakturaci.\n" +" Tato volba nainstaluje modul account_analytic_analysis." #. module: sale #: model:email.template,report_name:sale.email_template_edi_sale @@ -90,12 +97,14 @@ msgid "" "${(object.name or '').replace('/','_')}_${object.state == 'draft' and " "'draft' or ''}" msgstr "" +"${(object.name or '').replace('/','_')}_${object.state == 'draft' and " +"'draft' or ''}" #. module: sale #: view:sale.order.line:0 #: field:sale.report,product_uom:0 msgid "Unit of Measure" -msgstr "" +msgstr "Jednotka množství" #. module: sale #: field:sale.order.line,type:0 @@ -105,12 +114,12 @@ msgstr "Metoda zásobování" #. module: sale #: help:sale.order,date_confirm:0 msgid "Date on which sales order is confirmed." -msgstr "Datum, pro které prodejní objednávka potvrzena." +msgstr "Datum potvrzení zakázky." #. module: sale #: field:account.config.settings,module_sale_analytic_plans:0 msgid "Use multiple analytic accounts on sales" -msgstr "" +msgstr "Používat více analytických účtů pro prodej" #. module: sale #: selection:sale.report,month:0 @@ -121,18 +130,18 @@ msgstr "Březen" #: code:addons/sale/sale.py:567 #, python-format msgid "First cancel all invoices attached to this sales order." -msgstr "" +msgstr "Nejprve zrušte všechny faktury připojené k této zakázce." #. module: sale #: view:sale.order:0 msgid "Quotation Number" -msgstr "" +msgstr "Číslo nabídky" #. module: sale #: view:sale.order:0 #: field:sale.order,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepřečtené zprávy" #. module: sale #: field:sale.order,company_id:0 @@ -156,7 +165,7 @@ msgstr "Nefakturované a doručené řádky" #. module: sale #: model:mail.message.subtype,description:sale.mt_order_confirmed msgid "Quotation confirmed" -msgstr "" +msgstr "Nabídka schválena" #. module: sale #: selection:sale.order,state:0 @@ -167,17 +176,17 @@ msgstr "Vyjímka faktury" #. module: sale #: view:sale.order:0 msgid "Quotation " -msgstr "" +msgstr "Nabídka " #. module: sale #: selection:sale.order,state:0 msgid "Draft Quotation" -msgstr "" +msgstr "Návrh nabídky" #. module: sale #: field:sale.order,partner_shipping_id:0 msgid "Delivery Address" -msgstr "" +msgstr "Doručovací adresa" #. module: sale #: view:sale.report:0 @@ -190,6 +199,7 @@ msgstr "Analytický účet" #: field:sale.config.settings,module_sale_journal:0 msgid "Allow batch invoicing of delivery orders through journals" msgstr "" +"Umožnit hromadnou fakturaci a objednávky dopravy prostřednictvím deníků" #. module: sale #: field:sale.order.line,price_subtotal:0 @@ -216,23 +226,23 @@ msgstr "Váha" #. module: sale #: view:sale.config.settings:0 msgid "Warehouse Features" -msgstr "" +msgstr "Vlastnosti skladu" #. module: sale #: field:sale.config.settings,time_unit:0 msgid "The default working time unit for services is" -msgstr "" +msgstr "Výchozí jednotka pracovní doby pro služby je" #. module: sale #: field:sale.order.line,product_uom:0 msgid "Unit of Measure " -msgstr "" +msgstr "Jednotka množství " #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:101 #, python-format msgid "Incorrect Data" -msgstr "" +msgstr "Neplatná data" #. module: sale #: view:sale.order.line:0 @@ -242,12 +252,12 @@ msgstr "" #. module: sale #: help:sale.config.settings,group_discount_per_so_line:0 msgid "Allows you to apply some discount per sales order line." -msgstr "" +msgstr "Umožňuje použít slevu pro jednotlivé položky zakázky." #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines that are in 'done' state" -msgstr "" +msgstr "Položky zakázky ve stavu 'hotovo'" #. module: sale #: selection:sale.order.line,type:0 @@ -257,28 +267,28 @@ msgstr "na objednávku" #. module: sale #: field:sale.order,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Zprávy" #. module: sale #: field:sale.report,state:0 msgid "Order Status" -msgstr "" +msgstr "Stav objednávky" #. module: sale #: field:sale.order,amount_tax:0 #: field:sale.order.line,tax_id:0 msgid "Taxes" -msgstr "Daně" +msgstr "DPH" #. module: sale #: field:sale.order,amount_untaxed:0 msgid "Untaxed Amount" -msgstr "Nezdaněná částka" +msgstr "Částka bez DPH" #. module: sale #: field:sale.config.settings,module_project:0 msgid "Project" -msgstr "" +msgstr "Projekt" #. module: sale #: code:addons/sale/sale.py:185 @@ -289,7 +299,7 @@ msgstr "" #: code:addons/sale/sale.py:780 #, python-format msgid "Error!" -msgstr "" +msgstr "Chyba!" #. module: sale #: report:sale.order:0 @@ -303,6 +313,9 @@ msgid "" "replenishment.\n" "On order: When needed, the product is purchased or produced." msgstr "" +"Ze skladu: V případě potřeby se produkt odebere ze skladu nebo se počká na " +"jeho naskladnění. \n" +"Na objednávku: V případě potřeby se produkt zakoupí nebo vyrobí." #. module: sale #: help:sale.config.settings,module_analytic_user_function:0 @@ -315,6 +328,12 @@ msgid "" "available.\n" " This installs the module analytic_user_function." msgstr "" +"Umožňuje definovat, co je standardní funkce určitého uživatele na daném " +"účtu. \n" +"                 Většinou se používá, pokud uživatel šifruje své časové " +"rozvrhy. Hodnoty jsou načítány a pole automaticky vyplněna.\n" +"                 Hodnoty je možno dále upravovat. \n" +" Nainstaluje se modul analytic_user_function." #. module: sale #: selection:sale.order,state:0 @@ -326,22 +345,22 @@ msgstr "Zrušeno" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines related to a Sales Order of mine" -msgstr "" +msgstr "Položky zakázky související s mými zakázkami" #. module: sale #: selection:sale.order,state:0 msgid "Quotation Sent" -msgstr "" +msgstr "Nabídka odeslána" #. module: sale #: model:ir.model,name:sale.model_mail_compose_message msgid "Email composition wizard" -msgstr "" +msgstr "Průvodce vytvořením e-mailu" #. module: sale #: help:sale.order,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Pokud je zaškrtnuto, nové zprávy vyžadují vaši pozornost." #. module: sale #: selection:sale.order,state:0 @@ -360,7 +379,7 @@ msgstr "Množství (PJ)" #: view:sale.report:0 #: field:sale.report,shop_id:0 msgid "Shop" -msgstr "Obchod" +msgstr "Prodejna" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders_exception @@ -375,12 +394,12 @@ msgstr "Fakturační adresa" #. module: sale #: help:sale.order,create_date:0 msgid "Date on which sales order is created." -msgstr "Datum, kdy je vytvořena prodejní objednávka." +msgstr "Datum vytvoření zakázky." #. module: sale #: view:res.partner:0 msgid "False" -msgstr "" +msgstr "Neplatí" #. module: sale #: view:sale.order:0 @@ -396,6 +415,10 @@ msgid "" " Use Some Order Lines to invoice a selection of the sales " "order lines." msgstr "" +"Použijte 'Vše' pro celkovou fakturu.\n" +"Použijte 'Částečně' pro fakturaci jen procentuální části.\n" +"Použijte 'Pevná cena' pro fakturaci speciální ceny.\n" +"Použijte 'Vybrané položky' pro fakturaci jen některých položek zakázky." #. module: sale #: view:sale.make.invoice:0 @@ -406,7 +429,7 @@ msgstr "Vytvořit faktury" #. module: sale #: report:sale.order:0 msgid "Tax" -msgstr "" +msgstr "DPH" #. module: sale #: code:addons/sale/sale.py:278 @@ -414,7 +437,7 @@ msgstr "" #: code:addons/sale/sale.py:983 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neplatná akce!" #. module: sale #: help:sale.order,state:0 @@ -426,6 +449,12 @@ msgid "" "The 'Waiting Schedule' status is set when the invoice is confirmed " " but waiting for the scheduler to run on the order date." msgstr "" +"Poskytuje stav vystavených nabídek nebo zakázek. \n" +"Stav 'Výjimka' se nastaví automaticky při zrušení operace při " +"ověření faktury (Fakturační výjimka) nebo v průběhu vyzvednutí (Přepravní " +"výjimka).\n" +"Stav 'Harmonogram čekající' se nastaví při potvrzení faktury " +"ale čeká na časovač pro spuštění v datu objednání." #. module: sale #: field:sale.report,date_confirm:0 @@ -436,7 +465,7 @@ msgstr "Datum potvrzení" #: view:sale.report:0 #: field:sale.report,nbr:0 msgid "# of Lines" -msgstr "# z řádek" +msgstr "# položek" #. module: sale #: help:sale.order,message_summary:0 @@ -444,17 +473,19 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Udržuje souhrn klábosení (počet zpráv, …). Tento souhrn je přímo ve formátu " +"HTML aby jej bylo možné vložit do pohledů kanban." #. module: sale #: help:sale.order.line,sequence:0 msgid "Gives the sequence order when displaying a list of sales order lines." -msgstr "" +msgstr "Udává pořadí při zobrazení seznamu položek zakázky." #. module: sale #: view:sale.report:0 #: field:sale.report,product_uom_qty:0 msgid "# of Qty" -msgstr "# z množ." +msgstr "# množ." #. module: sale #: report:sale.order:0 @@ -466,24 +497,24 @@ msgstr "Fax :" #, python-format msgid "" "In order to delete a confirmed sales order, you must cancel it before !" -msgstr "" +msgstr "Pro vymazání již potvrzené zakázky ji nejprve musíte zrušit!" #. module: sale #: view:sale.order:0 msgid "(update)" -msgstr "" +msgstr "(aktualizovat)" #. module: sale #: model:ir.model,name:sale.model_res_partner #: view:sale.report:0 #: field:sale.report,partner_id:0 msgid "Partner" -msgstr "Partner" +msgstr "Kontakt" #. module: sale #: view:sale.config.settings:0 msgid "Contract Features" -msgstr "" +msgstr "Vlastnosti kontraktu" #. module: sale #: code:addons/sale/sale.py:288 @@ -497,27 +528,27 @@ msgstr "" #: selection:sale.order,state:0 #, python-format msgid "Sales Order" -msgstr "Prodejní objednávka" +msgstr "Zakázka" #. module: sale #: model:res.groups,name:sale.group_invoice_so_lines msgid "Enable Invoicing Sales order lines" -msgstr "" +msgstr "Povolit fakturaci položek zakázky" #. module: sale #: model:ir.model,name:sale.model_sale_order_line msgid "Sales Order Line" -msgstr "Řádek prodejní objednávky" +msgstr "Položka zakázky" #. module: sale #: field:sale.advance.payment.inv,amount:0 msgid "Advance Amount" -msgstr "Částka dopředu" +msgstr "Částka předem" #. module: sale #: help:sale.order,invoice_exists:0 msgid "It indicates that sales order has at least one invoice." -msgstr "" +msgstr "Označuje, že zakázka má nejméně jednu fakturu." #. module: sale #: help:sale.config.settings,group_sale_pricelist:0 @@ -525,16 +556,19 @@ msgid "" "Allows to manage different prices based on rules per category of customers.\n" "Example: 10% for retailers, promotion of 5 EUR on this product, etc." msgstr "" +"Umožňuje spravovat různé ceny na základě pravidel pro jednotlivé kategorie " +"zákazníků.Například: 10% sleva pro maloobchod, zaváděcí sleva 100 Kč pro " +"tomto produkt, apod." #. module: sale #: field:sale.config.settings,module_analytic_user_function:0 msgid "One employee can have different roles per contract" -msgstr "" +msgstr "Zaměstnanec může mít ve smlouvě rozdílné úlohy" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Invoice the whole sales order" -msgstr "" +msgstr "Fakturovat celou zakázku" #. module: sale #: field:sale.shop,payment_default_id:0 @@ -549,20 +583,20 @@ msgstr "Potvrdit" #. module: sale #: field:sale.config.settings,timesheet:0 msgid "Prepare invoices based on timesheets" -msgstr "" +msgstr "Připravit faktury založené na časových rozvrzích" #. module: sale #: code:addons/sale/sale.py:820 #, python-format msgid "You cannot cancel a sales order line that has already been invoiced." -msgstr "" +msgstr "Nemůžete zrušit položku zakázky, která již byla fakturována." #. module: sale #: view:account.invoice.report:0 #: view:board.board:0 #: model:ir.actions.act_window,name:sale.action_turnover_by_month msgid "Monthly Turnover" -msgstr "" +msgstr "Měsíční obrat" #. module: sale #: selection:sale.order,invoice_quantity:0 @@ -578,22 +612,22 @@ msgstr "Rok" #. module: sale #: field:sale.config.settings,group_uom:0 msgid "Allow using different units of measures" -msgstr "" +msgstr "Umožnit používání různých měrných jednotek" #. module: sale #: model:mail.message.subtype,name:sale.mt_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "Potvrzená zakázka" #. module: sale #: view:sale.order:0 msgid "Sales Order that haven't yet been confirmed" -msgstr "" +msgstr "Dosud nepotvrzené zakázky" #. module: sale #: view:sale.order:0 msgid "Print" -msgstr "" +msgstr "Tisknout" #. module: sale #: report:sale.order:0 @@ -604,7 +638,7 @@ msgstr "Objednávka N° :" #: view:sale.order:0 #: field:sale.order,order_line:0 msgid "Order Lines" -msgstr "Řádky objednávky" +msgstr "Položky objednávky" #. module: sale #: report:sale.order:0 @@ -615,12 +649,12 @@ msgstr "Slev.(%)" #: code:addons/sale/sale.py:764 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Nastavte prosím výnosový účet pro tento produkt: \"%s\" (id: %d)." #. module: sale #: field:sale.order.line,invoice_lines:0 msgid "Invoice Lines" -msgstr "Řádky faktury" +msgstr "Položky faktury" #. module: sale #: view:sale.report:0 @@ -631,7 +665,7 @@ msgstr "Celková cena" #. module: sale #: help:account.config.settings,group_analytic_account_for_sales:0 msgid "Allows you to specify an analytic account on sales orders." -msgstr "" +msgstr "Umožňuje zadat analytický účet přímo v zakázce." #. module: sale #: help:sale.config.settings,module_sale_journal:0 @@ -641,6 +675,10 @@ msgid "" " and perform batch operations on journals.\n" " This installs the module sale_journal." msgstr "" +"Umožňuje kategorizaci prodeje a dopravy (sběrné seznamy) mezi různými " +"deníky, \n" +"                 a provádět dávkové operace pomocí deníků. \n" +"                 Nainstaluje se modul sale_journal." #. module: sale #: help:sale.make.invoice,grouped:0 @@ -657,12 +695,12 @@ msgstr "Vytvoření faktůr" #: code:addons/sale/res_config.py:97 #, python-format msgid "Hour" -msgstr "" +msgstr "Hodina" #. module: sale #: field:res.partner,sale_order_count:0 msgid "# of Sales Order" -msgstr "" +msgstr "# zakázek" #. module: sale #: help:sale.config.settings,timesheet:0 @@ -673,6 +711,11 @@ msgid "" "user-wise as well as month wise.\n" " This installs the module account_analytic_analysis." msgstr "" +"Pro modifikaci zobrazení analytických účtů, aby byla zobrazována důležitá " +"data pro projektového manažera společností zabývajících se službami.\n" +" Můžete také zobrazit hlášení účetních analytických sumářů " +"podle uživatelů nebo podle měsíců.\n" +" Nainstaluje se modul account_analytic_analysis." #. module: sale #: field:sale.order,create_date:0 @@ -688,7 +731,7 @@ msgstr "K fakturaci" #. module: sale #: help:sale.order,partner_invoice_id:0 msgid "Invoice address for current sales order." -msgstr "Fakturační adresa pro aktuální prodejní objednávku." +msgstr "Fakturační adresa pro aktuální zakázku." #. module: sale #: selection:sale.order,invoice_quantity:0 @@ -698,12 +741,12 @@ msgstr "Objednané množství" #. module: sale #: view:sale.report:0 msgid "Ordered Year of the sales order" -msgstr "" +msgstr "Rok objednání zakázky" #. module: sale #: model:res.groups,name:sale.group_delivery_invoice_address msgid "Addresses in Sales Orders" -msgstr "" +msgstr "Adresy v zakázkách" #. module: sale #: field:sale.advance.payment.inv,qtty:0 @@ -720,7 +763,7 @@ msgstr "Celkem :" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines ready to be invoiced" -msgstr "" +msgstr "Položky zakázky připravené k fakturaci" #. module: sale #: view:sale.report:0 @@ -756,6 +799,15 @@ msgid "" " \n" "* The 'Cancelled' status is set when a user cancel the sales order related." msgstr "" +"* Stav 'Návrh' je nastaven, je-li příslušná zakázka ve stadiu návrhu. " +" \n" +"* Stav 'Potvrzeno' je nastaven, je-li zakázka potvrzena. " +"\n" +"* Stav 'Výjimka' je v případě, je-li příslušná zakázka nastavena jako " +"výjimka. \n" +"* Stav 'Hotovo' je nastaven po zpracování příslušné položky zakázky. " +" \n" +"* Stav 'Zrušeno' je nataven, zruší-li uživatel příslušnou zakázku." #. module: sale #: code:addons/sale/sale.py:510 @@ -763,11 +815,12 @@ msgstr "" msgid "" "You cannot group sales having different currencies for the same partner." msgstr "" +"Není možno seskupit obchody vystavené jednomu kontaktu v různých měnách." #. module: sale #: view:sale.config.settings:0 msgid "Default Options" -msgstr "" +msgstr "Výchozí možnosti" #. module: sale #: code:addons/sale/sale.py:960 @@ -775,12 +828,12 @@ msgstr "" #: code:addons/sale/wizard/sale_make_invoice_advance.py:95 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Chyba nastavení!" #. module: sale #: field:account.config.settings,group_analytic_account_for_sales:0 msgid "Analytic accounting for sales" -msgstr "" +msgstr "Analytické účtování prodeje" #. module: sale #: view:sale.order:0 @@ -789,7 +842,7 @@ msgstr "" #: field:sale.order.line,state:0 #: view:sale.report:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: sale #: view:sale.advance.payment.inv:0 @@ -797,27 +850,29 @@ msgid "" "After clicking 'Show Lines to Invoice', select lines to invoice and create " "the invoice from the 'More' dropdown menu." msgstr "" +"Po klepnutí na tlačítko \"Zobrazit položky k fakturaci\", vyberte položky a " +"vystavte fakturu z rozbalovací nabídky \"Více\"." #. module: sale #: view:sale.order:0 msgid "Send by Email" -msgstr "" +msgstr "Odeslat e-mailem" #. module: sale #: code:addons/sale/edi/sale_order.py:140 #, python-format msgid "EDI Pricelist (%s)" -msgstr "" +msgstr "EDI ceník (%s)" #. module: sale #: selection:sale.order,order_policy:0 msgid "On Delivery Order" -msgstr "" +msgstr "Při dodání" #. module: sale #: view:sale.config.settings:0 msgid "Invoicing Process" -msgstr "" +msgstr "Fakturace" #. module: sale #: view:sale.order:0 @@ -827,7 +882,7 @@ msgstr "Datum objednávky" #. module: sale #: view:sale.order:0 msgid "Sales Order done" -msgstr "" +msgstr "Hotová zakázka" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_cancel0 @@ -841,7 +896,7 @@ msgstr "Zrušit" #: model:ir.actions.act_window,name:sale.act_res_partner_2_sale_order #: view:res.partner:0 msgid "Quotations and Sales" -msgstr "" +msgstr "Nabídky a prodej" #. module: sale #: field:sale.order,invoiced:0 @@ -852,22 +907,22 @@ msgstr "Placeno" #: help:sale.config.settings,group_uom:0 msgid "" "Allows you to select and maintain different units of measure for products." -msgstr "" +msgstr "Umožňuje vybírat a udržovat různé měrné jednotky produktů." #. module: sale #: view:sale.report:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Doporučená měrná jednotka" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Create and View Invoice" -msgstr "" +msgstr "Vytvoř a zobraz fakturu" #. module: sale #: view:sale.order.line:0 msgid "Sales order lines done" -msgstr "" +msgstr "Hotové položky zakázky" #. module: sale #: field:sale.make.invoice,grouped:0 @@ -882,13 +937,13 @@ msgstr "Částka, která je fakturována dopředu." #. module: sale #: model:ir.model,name:sale.model_sale_make_invoice msgid "Sales Make Invoice" -msgstr "" +msgstr "?!?Sales Make Invoice" #. module: sale #: code:addons/sale/sale.py:308 #, python-format msgid "Pricelist Warning!" -msgstr "" +msgstr "Ceník - varování!" #. module: sale #: field:sale.order.line,discount:0 @@ -904,17 +959,20 @@ msgid "" "1.The state of this sales order line is either \"draft\" or \"cancel\"!\n" "2.The Sales Order Line is Invoiced!" msgstr "" +"Tuto položku zakázky nelze fakturovat pro některý z těchto důvodů:\n" +"1. Stav této položky je buď \"návrh\" nebo \"zrušeno\"!\n" +"2. Tato položka je již vyfakturována!" #. module: sale #: view:sale.order.line.make.invoice:0 msgid "Create & View Invoice" -msgstr "" +msgstr "Vystavování & prohlížení faktur" #. module: sale #: view:board.board:0 #: model:ir.actions.act_window,name:sale.action_quotation_for_sale msgid "My Quotations" -msgstr "" +msgstr "Mé nabídky" #. module: sale #: field:sale.order,invoice_ids:0 @@ -929,7 +987,7 @@ msgstr "Prosinec" #. module: sale #: view:sale.config.settings:0 msgid "Contracts Management" -msgstr "" +msgstr "Správa smluv" #. module: sale #: view:sale.order.line:0 @@ -945,7 +1003,7 @@ msgstr "Měsíc" #. module: sale #: field:sale.order,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Měna" #. module: sale #: view:sale.order.line:0 @@ -962,7 +1020,7 @@ msgstr "Kategorie výrobku" #: code:addons/sale/sale.py:566 #, python-format msgid "Cannot cancel this sales order!" -msgstr "" +msgstr "Tuto zakázku nelze zrušit!" #. module: sale #: view:sale.order:0 @@ -972,22 +1030,22 @@ msgstr "Znovu vytvořit fakturu" #. module: sale #: field:sale.config.settings,module_warning:0 msgid "Allow configuring alerts by customer or products" -msgstr "" +msgstr "Umožnit nastavení upozorňování podle zákazníka nebo výrobku" #. module: sale #: field:sale.shop,name:0 msgid "Shop Name" -msgstr "Jméno obchodu" +msgstr "Název prodejny" #. module: sale #: view:sale.order:0 msgid "My Sales Orders" -msgstr "" +msgstr "Mé zakázky" #. module: sale #: report:sale.order:0 msgid "Taxes :" -msgstr "Daně :" +msgstr "DPH :" #. module: sale #: field:sale.order,invoice_exists:0 @@ -999,7 +1057,7 @@ msgstr "Fakturováno" #: code:addons/sale/wizard/sale_make_invoice_advance.py:202 #, python-format msgid "Advance Invoice" -msgstr "Faktura dopředu" +msgstr "Fakturace předem" #. module: sale #: help:sale.config.settings,group_invoice_so_lines:0 @@ -1007,22 +1065,24 @@ msgid "" "To allow your salesman to make invoices for sales order lines using the menu " "'Lines to Invoice'." msgstr "" +"Umožní obchodníkovi vytvářet faktury z položek zakázky (menu 'fakturovat " +"položky')." #. module: sale #: model:ir.actions.client,name:sale.action_client_sale_menu msgid "Open Sale Menu" -msgstr "" +msgstr "Otevřít menu prodeje" #. module: sale #: code:addons/sale/sale.py:600 #, python-format msgid "You cannot confirm a sales order which has no line." -msgstr "" +msgstr "Nemůžete potvrdit zakázku, která nemá žádnou položku." #. module: sale #: selection:sale.report,state:0 msgid "In Progress" -msgstr "V běhu" +msgstr "Probíhá" #. module: sale #: code:addons/sale/sale.py:865 @@ -1033,7 +1093,7 @@ msgstr "Neurčen zákazník !" #. module: sale #: field:sale.config.settings,module_sale_stock:0 msgid "Trigger delivery orders automatically from sales orders" -msgstr "" +msgstr "Vystavit objednávky dopravy automaticky ze zakázek" #. module: sale #: view:sale.make.invoice:0 @@ -1050,32 +1110,32 @@ msgstr "Potvrzeno" #: code:addons/sale/wizard/sale_make_invoice_advance.py:106 #, python-format msgid "Advance of %s %%" -msgstr "" +msgstr "Předem %s %%" #. module: sale #: model:ir.model,name:sale.model_sale_order_line_make_invoice msgid "Sale OrderLine Make_invoice" -msgstr "" +msgstr "?!?Sale OrderLine Make_invoice" #. module: sale #: selection:sale.order.line,state:0 msgid "Draft" -msgstr "Koncept" +msgstr "Návrh" #. module: sale #: model:ir.actions.act_window,name:sale.action_email_templates msgid "Email Templates" -msgstr "" +msgstr "Šablony e-mailů" #. module: sale #: help:sale.order.line,address_allotment_id:0 msgid "A partner to whom the particular product needs to be allotted." -msgstr "" +msgstr "Kontakt, kterému mají být přiděleny konkrétní výrobky." #. module: sale #: field:sale.order,project_id:0 msgid "Contract / Analytic" -msgstr "" +msgstr "Smlouva / Analytika" #. module: sale #: selection:sale.order,state:0 @@ -1086,14 +1146,14 @@ msgstr "Čekací rozvrh" #. module: sale #: field:sale.order,note:0 msgid "Terms and conditions" -msgstr "" +msgstr "Podmnínky" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders #: model:ir.ui.menu,name:sale.menu_sale_order #: view:sale.order:0 msgid "Sales Orders" -msgstr "Prodejní objednávky" +msgstr "Zakázky" #. module: sale #: help:sale.order,amount_tax:0 @@ -1103,12 +1163,12 @@ msgstr "Částka daně" #. module: sale #: field:sale.order,invoiced_rate:0 msgid "Invoiced Ratio" -msgstr "" +msgstr "Fakturační koeficient" #. module: sale #: selection:sale.order,order_policy:0 msgid "On Demand" -msgstr "" +msgstr "Dle potřeby" #. module: sale #: selection:sale.report,month:0 @@ -1143,6 +1203,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím nastavíte novou prodejnu.\n" +"

\n" +" Všechny vystavené nabídky a zakázky musí být přiřazeny\n" +" nějaké prodejně. Nastavením prodejny se zároveň definuje " +"sklad,\n" +" ze kterého se budou odebírat položky v jednotlivých " +"obchodních případech.\n" +"

\n" +" " #. module: sale #: view:sale.order.line:0 @@ -1159,7 +1229,7 @@ msgstr "Analýza prodeje" #. module: sale #: field:sale.order,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je odběratel" #. module: sale #: view:sale.order.line:0 @@ -1167,16 +1237,18 @@ msgid "" "Sales Order Lines that are confirmed, done or in exception state and haven't " "yet been invoiced" msgstr "" +"Položky zakázky, které jsou potvrzeny, hotovy nebo ve stavu výjimky, ale " +"nebyly dosud fakturovány" #. module: sale #: model:ir.model,name:sale.model_sale_report msgid "Sales Orders Statistics" -msgstr "Statistiky prodejních objednávek" +msgstr "Statistiky zakázek" #. module: sale #: field:sale.order,date_order:0 msgid "Date" -msgstr "" +msgstr "Datum" #. module: sale #: report:sale.order:0 @@ -1187,7 +1259,7 @@ msgstr "" #: view:sale.report:0 #: field:sale.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Obchodník" #. module: sale #: selection:sale.report,month:0 @@ -1209,12 +1281,12 @@ msgstr "Cenová nabídka" #. module: sale #: field:sale.advance.payment.inv,product_id:0 msgid "Advance Product" -msgstr "" +msgstr "?!?Advance Product" #. module: sale #: selection:sale.order.line,state:0 msgid "Exception" -msgstr "Vyjímka" +msgstr "Výjimka" #. module: sale #: selection:sale.report,month:0 @@ -1228,15 +1300,15 @@ msgid "" "is 'Shipping and Manual in Progress'. The invoice is created automatically " "if the shipping policy is 'Payment before Delivery'." msgstr "" -"Obchodník vytváří fakturu ručně, pokud je přepravní politika prodejní " -"objednávky 'P5eprava a Ručně v běhu'. Faktura je vytvořena automaticky, " -"pokud přepravní politika je 'Zaplacení před doručením'." +"Obchodník vytvoří fakturu ručně, pokud je v přepravních podmínkách uvedeno " +"'Přeprava a Probíhá ručně'. Faktura se vytvoření automaticky, pokud " +"přepravní podmínky obsahují 'Platbu před doručením'." #. module: sale #: model:ir.model,name:sale.model_sale_shop #: view:sale.shop:0 msgid "Sales Shop" -msgstr "Prodejní obchod" +msgstr "Prodejna" #. module: sale #: help:sale.config.settings,module_sale_stock:0 @@ -1245,6 +1317,9 @@ msgid "" "Manage Related Stock.\n" " This installs the module sale_stock." msgstr "" +"Umožňuje vytvářet cenové nabídky a přijaté objednávky s použitím různých " +"obchodních podmínek a spravovat související sklad.\n" +" Nainstaluje se modul sale_stock." #. module: sale #: help:sale.advance.payment.inv,product_id:0 @@ -1253,6 +1328,9 @@ msgid "" " You may have to create it and set it as a default value on " "this field." msgstr "" +"Vyberte produkt nebo druh služby označované jako 'Advance Product'.\n" +" Měl by být vytvořen a nastaven jako výchozí hodnota pro toto " +"pole." #. module: sale #: selection:sale.report,month:0 @@ -1262,12 +1340,12 @@ msgstr "Leden" #. module: sale #: field:sale.config.settings,group_discount_per_so_line:0 msgid "Allow setting a discount on the sales order lines" -msgstr "" +msgstr "Umožnit nastavení slevy u položek zakázky" #. module: sale #: model:ir.actions.act_window,name:sale.action_orders_in_progress msgid "Sales Order in Progress" -msgstr "Prodejní objednávky v běhu" +msgstr "Probíhající zakázka" #. module: sale #: view:sale.order.line.make.invoice:0 @@ -1277,6 +1355,10 @@ msgid "" " or a fixed price (for advances) directly from the sales " "order form if you prefer." msgstr "" +"Fakturovány bude celý obsah těchto položek objednávky. Můžete také " +"fakturovat poměrnou část\n" +" objednávky nebo pevnou částku (jako zálohu) přímo z " +"objednávkového formuláře." #. module: sale #: help:sale.config.settings,module_warning:0 @@ -1286,31 +1368,36 @@ msgid "" "Example: Product: this product is deprecated, do not purchase more than 5.\n" " Supplier: don't forget to ask for an express delivery." msgstr "" +"Umožnit nastavení upozornění na produkt v okamžiku, když má být prodán " +"určitý výrobek nebo určitému zákazníkovi.\n" +"Například: Produkt: tento produkt se už nepoužívá, nenakupuje se více než 5 " +"ks. \n" +" Dodavatel: nezapomeňte požádat o expresní dodávku." #. module: sale #: field:sale.order,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "URL Paypal" #. module: sale #: help:sale.order,project_id:0 msgid "The analytic account related to a sales order." -msgstr "Analytický účet vztažený k prodejní objednávce." +msgstr "Analytický účet vztažený k zakázce" #. module: sale #: view:sale.order:0 msgid "View Invoice" -msgstr "" +msgstr "Zobrazit fakturu" #. module: sale #: field:sale.advance.payment.inv,advance_payment_method:0 msgid "What do you want to invoice?" -msgstr "" +msgstr "Co si přejete fakturovat?" #. module: sale #: field:sale.config.settings,group_sale_pricelist:0 msgid "Use pricelists to adapt your price per customers" -msgstr "" +msgstr "Používat ceníky pro přizpůsobení ceny podle zákazníků" #. module: sale #: model:process.transition,note:sale.process_transition_confirmquotation0 @@ -1318,8 +1405,8 @@ msgid "" "The salesman confirms the quotation. The state of the sales order becomes " "'In progress' or 'Manual in progress'." msgstr "" -"Obchodník potvrdí ocenění. Stav prodejního příkazu přejde na 'V běhu' nebo " -"'Ručně v běhu'." +"Obchodník potvrdí nabídku. Stav zakázky přejde na 'Probíhá' nebo 'Probíhá " +"ručně'." #. module: sale #: code:addons/sale/sale.py:942 @@ -1328,25 +1415,26 @@ msgid "" "You have to select a pricelist or a customer in the sales form !\n" "Please set one before choosing a product." msgstr "" +"Musíte vybrat ceník nebo zákazníka!\n" +"Nastavte jedno z toho ještě před výběrem produktu." #. module: sale #: help:sale.order,origin:0 msgid "Reference of the document that generated this sales order request." -msgstr "" -"Odkaz na dokument, který generoval tento požadavek na prodejní objednávku." +msgstr "Odkaz na dokument, který generoval tento požadavek zakázky." #. module: sale #: code:addons/sale/sale.py:955 #, python-format msgid "No valid pricelist line found ! :" -msgstr "" +msgstr "Nebyla nalezena platná položka ceníku!" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:113 #: code:addons/sale/wizard/sale_make_invoice_advance.py:115 #, python-format msgid "Advance of %s %s" -msgstr "" +msgstr "Předem %s %s" #. module: sale #: view:sale.report:0 @@ -1360,12 +1448,12 @@ msgstr "Zpoždění závazku" #: view:sale.order:0 #: view:sale.report:0 msgid "Quotations" -msgstr "Cenové nabídky" +msgstr "Nabídky" #. module: sale #: help:account.config.settings,module_sale_analytic_plans:0 msgid "This allows install module sale_analytic_plans." -msgstr "" +msgstr "Umožní instalaci modulu sale_analytic_plans." #. module: sale #: view:sale.order:0 @@ -1375,12 +1463,12 @@ msgstr "Ignoravat výjimku" #. module: sale #: help:sale.order,partner_shipping_id:0 msgid "Delivery address for current sales order." -msgstr "" +msgstr "Doručovací adresa současné zakázky." #. module: sale #: field:sale.config.settings,module_sale_margin:0 msgid "Display margins on sales orders" -msgstr "" +msgstr "Zobrazit cenové rozpětí v zakázkách" #. module: sale #: help:sale.order,invoice_ids:0 @@ -1389,19 +1477,18 @@ msgid "" "The same sales order may have been invoiced in several times (by line for " "example)." msgstr "" -"Toto je seznam faktur, které byly generovány pro tuto prodejní objednávku. " -"Stejné prodejní objednávky mohly být vícekrát fakturovány (např. podle " -"řádku)." +"Seznam faktur, které byly pro tuto zakázku vystaveny. Zakázka může být " +"fakturována na vícekrát (např. po položkách)." #. module: sale #: report:sale.order:0 msgid "Your Reference" -msgstr "Váš odkaz" +msgstr "Vaše reference" #. module: sale #: view:sale.advance.payment.inv:0 msgid "Show Lines to Invoice" -msgstr "" +msgstr "Ukaž položky k fakturaci" #. module: sale #: field:sale.report,date:0 @@ -1418,23 +1505,23 @@ msgstr "Ceník" #. module: sale #: report:sale.order:0 msgid "TVA :" -msgstr "TVA :" +msgstr "?!?DPH:" #. module: sale #: code:addons/sale/sale.py:449 #, python-format msgid "Customer Invoices" -msgstr "" +msgstr "Faktury zákazníka" #. module: sale #: model:process.node,note:sale.process_node_order0 msgid "Confirmed sales order to invoice." -msgstr "Potvrzení prodejní objednávky k fakturaci." +msgstr "Potvrzené zakázky k fakturaci." #. module: sale #: field:sale.order.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Pořadí" #. module: sale #: model:ir.actions.act_window,name:sale.open_board_sales @@ -1453,6 +1540,8 @@ msgid "" "If you change the pricelist of this order (and eventually the currency), " "prices of existing order lines will not be updated." msgstr "" +"Změníte-li ceník pro tuto objednávku ( a případně i měnu), ceny jednotlivých " +"položek se neaktualizují." #. module: sale #: view:sale.order.line:0 @@ -1500,7 +1589,7 @@ msgstr "Faktura" #. module: sale #: view:sale.order.line:0 msgid "My Sales Order Lines" -msgstr "" +msgstr "Mé položky zakázky" #. module: sale #: view:sale.order:0 @@ -1510,39 +1599,39 @@ msgstr "" #. module: sale #: field:sale.order,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Odběratelé" #. module: sale #: code:addons/sale/sale.py:944 #, python-format msgid "No Pricelist ! : " -msgstr "" +msgstr "Žádný ceník! : " #. module: sale #: view:sale.order:0 msgid "Sales Order " -msgstr "" +msgstr "Zakázka " #. module: sale #: model:mail.message.subtype,description:sale.mt_order_sent #: model:mail.message.subtype,name:sale.mt_order_sent msgid "Quotation send" -msgstr "" +msgstr "Odeslání nabídku" #. module: sale #: view:sale.order.line:0 msgid "Search Uninvoiced Lines" -msgstr "Hledat nefakturované řádky" +msgstr "Hledat nefakturované položky" #. module: sale #: model:ir.model,name:sale.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: sale #: sql_constraint:sale.order:0 msgid "Order Reference must be unique per Company!" -msgstr "" +msgstr "?!?Reference objednávky musí být jedinečná pro společnost!" #. module: sale #: model:ir.actions.act_window,help:sale.action_order_line_tree2 @@ -1558,6 +1647,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Seznam položek zakázky k fakturaci. Zakázku můžete\n" +" fakturovat po částech, po jednotlivých položkách. Nemusíte\n" +" použít tento seznam, pokud fakturujete podle dodacích listů\n" +" nebo pokud fakturujete celou objednávku najednou.\n" +"

\n" +" " #. module: sale #: report:sale.order:0 @@ -1568,12 +1664,12 @@ msgstr "Dodací adresa :" #: code:addons/sale/sale.py:369 #, python-format msgid "Please define sales journal for this company: \"%s\" (id:%d)." -msgstr "" +msgstr "vytvořte prosím prodejní deník společnosti: \"%s\" (id:%d)." #. module: sale #: view:sale.advance.payment.inv:0 msgid "Invoice Sales Order" -msgstr "" +msgstr "Fakturovat zakázku" #. module: sale #: help:sale.order,invoice_quantity:0 @@ -1582,11 +1678,14 @@ msgid "" "invoice). You have to choose " "if you want your invoice based on ordered " msgstr "" +"Ze zakázkového listu budou automaticky vytvořeny pokyny k fakturaci (návrh " +"faktury). Musíte vybrat, mají-li " +"být vaše faktury vytvářeny podle zakázky " #. module: sale #: field:sale.config.settings,module_account_analytic_analysis:0 msgid "Use contracts management" -msgstr "" +msgstr "Spravovat smlouvy" #. module: sale #: code:addons/sale/sale.py:952 @@ -1595,6 +1694,9 @@ msgid "" "Cannot find a pricelist line matching this product and quantity.\n" "You have to change either the product, the quantity or the pricelist." msgstr "" +"Nepodařilo se vyhledat položku ceníku odpovídající tomuto produktu a " +"množství.\n" +"Musíte změnit buď produkt nebo množství v ceníku." #. module: sale #: code:addons/sale/sale.py:185 @@ -1620,12 +1722,12 @@ msgstr "Vytvořit fakturu" #. module: sale #: help:sale.order,amount_untaxed:0 msgid "The amount without tax." -msgstr "Množství bez daně." +msgstr "Částka bez daně." #. module: sale #: view:sale.order.line:0 msgid "Order reference" -msgstr "" +msgstr "Reference objednávky" #. module: sale #: help:sale.order,invoiced:0 @@ -1641,7 +1743,7 @@ msgstr "Cena za kus" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Percentage" -msgstr "" +msgstr "Procenta" #. module: sale #: view:sale.order:0 @@ -1736,6 +1838,91 @@ msgid "" "
\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Dobrý den ${object.partner_id.name},

\n" +" \n" +"

Zde je vaše ${object.state in ('draft', 'sent') and 'quotation' or " +"'order confirmation'} od ${object.company_id.name}:

\n" +"\n" +"

\n" +"   SHRNUTÍ
\n" +"   Číslo objednávky: ${object.name}
\n" +"   Celková částka objednávky: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Datum objednání: ${object.date_order}
\n" +" % if object.origin:\n" +"   Order reference: ${object.origin}
\n" +" % endif\n" +" % if object.client_order_ref:\n" +"   Vaše reference: ${object.client_order_ref}
\n" +" % endif\n" +" % if object.user_id:\n" +"   Váš kontakt: ${object.user_id.name}\n" +" % endif\n" +"

\n" +"\n" +" % if object.paypal_url:\n" +"
\n" +"

Platbu je možno provést prostřednictvím Paypal:

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

Neváhejte obrátit se na nás v případě jakýchkoliv dotazů.

\n" +"

Děkujeme, že jste si vybrali ${object.company_id.name or 'naši " +"společnost'}!

\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" +" Telefon:  ${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: sale #: view:sale.order.line:0 @@ -1753,13 +1940,13 @@ msgstr "Celkové množství" #. module: sale #: view:sale.order:0 msgid "Confirm Sale" -msgstr "" +msgstr "Potvrdit zakázku" #. module: sale #: code:addons/sale/wizard/sale_make_invoice_advance.py:96 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Pro tento produkt není nastaven příjmový účet: \"%s\" (id:%d)." #. module: sale #: selection:sale.report,month:0 @@ -1772,6 +1959,8 @@ msgid "" "${object.company_id.name} ${object.state in ('draft', 'sent') and " "'Quotation' or 'Order'} (Ref ${object.name or 'n/a' })" msgstr "" +"${object.company_id.name} ${object.state in ('draft', 'sent') and 'Nabídka' " +"or 'Objednávka'} (Ref ${object.name or 'n/a' })" #. module: sale #: report:sale.order:0 @@ -1782,7 +1971,7 @@ msgstr "Cena" #: code:addons/sale/wizard/sale_make_invoice_advance.py:102 #, python-format msgid "The value of Advance Amount must be positive." -msgstr "" +msgstr "Hodnota zálohy musí být kladná." #. module: sale #: help:sale.order,order_policy:0 @@ -1794,6 +1983,11 @@ msgid "" "Before delivery: A draft invoice is created from the sales order and must be " "paid before the products can be delivered." msgstr "" +"Dle potřeby: Faktura může být vytvořen ze zakázky dle potřeby. \n" +"Při dodání: faktura může být vytvořena podle dodacího listu po dodání " +"produktu. \n" +"Před dodáním: Faktura je vytvořen ze zakázkového listu musí být uhrazena " +"před dodáním produktu." #. module: sale #: model:ir.actions.act_window,help:sale.action_order_report_all @@ -1804,11 +1998,15 @@ msgid "" "having invoiced yet. If you want to analyse your turnover, you should use " "the Invoice Analysis report in the Accounting application." msgstr "" +"Tato sestava analyzuje nabídky a zakázky. Kontrolují se tržby a řadí se do " +"skupin podle různých kritérií (obchodník, kontakt, produkt, atd.). " +"Zohledňují se dosud nefakturované zakázky. Pokud chcete analyzovat váš " +"obrat, měli byste použít sestavu Analýza fakturace v účetnictví." #. module: sale #: model:ir.actions.report.xml,name:sale.report_sale_order msgid "Quotation / Order" -msgstr "Ocenění / Objednávka" +msgstr "Nabídka / Objednávka" #. module: sale #: report:sale.order:0 @@ -1839,11 +2037,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte nabídku, první krok nového obchodu.\n" +"

\n" +" OpenERP umožňuje efektivně řídit celý prodejní proces:\n" +" od nabídky přes objednávku, odeslání zákazníkovi,\n" +" fakturaci a úhradu faktury.\n" +"

\n" +" Sociální prvky systému pomáhají vést diskuze o obchodu, " +"zakázkách\n" +" a umožňují zákazníkům sledovat průběh jejich zakázky.\n" +"

\n" +" " #. module: sale #: view:res.partner:0 msgid "sale.group_delivery_invoice_address" -msgstr "" +msgstr "sale.group_delivery_invoice_address" #. module: sale #: code:addons/sale/sale.py:781 @@ -1852,6 +2062,8 @@ msgid "" "There is no Fiscal Position defined or Income category account defined for " "default properties of Product categories." msgstr "" +"Není nastavena žádná účetní směrnice ani příjmový účet jako výchozí hodnota " +"pro kategorii produktů." #. module: sale #: model:process.node,note:sale.process_node_invoice0 @@ -1861,17 +2073,17 @@ msgstr "K překontrolování účetním." #. module: sale #: model:res.groups,name:sale.group_mrp_properties msgid "Properties on lines" -msgstr "" +msgstr "Vlastnosti položek" #. module: sale #: selection:sale.order,state:0 msgid "Sale to Invoice" -msgstr "" +msgstr "K fakturaci" #. module: sale #: view:sale.order:0 msgid "Order Number" -msgstr "" +msgstr "Číslo objednávky přijaté" #. module: sale #: view:sale.order:0 @@ -1883,7 +2095,7 @@ msgstr "Zákazník" #. module: sale #: model:product.template,name:sale.advance_product_0_product_template msgid "Advance" -msgstr "Dopředu" +msgstr "Předem" #. module: sale #: selection:sale.report,month:0 @@ -1904,6 +2116,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte nabídku, která může být později " +"převedena \n" +" na zakázku.\n" +"

\n" +" OpenERP umožňuje efektivně řídit celý prodejní proces:\n" +" nabídky, zakázky, expedici, fakturaci a platby.\n" +"

\n" +" " #. module: sale #: field:sale.order,invoice_quantity:0 @@ -1913,12 +2134,12 @@ msgstr "Faktura pro" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Fixed price (deposit)" -msgstr "" +msgstr "Pevná cena" #. module: sale #: model:ir.model,name:sale.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: sale #: selection:sale.report,month:0 @@ -1928,12 +2149,12 @@ msgstr "Září" #. module: sale #: report:sale.order:0 msgid "Date Ordered" -msgstr "DAtum objednání" +msgstr "Datum objednání" #. module: sale #: selection:sale.order,order_policy:0 msgid "Before Delivery" -msgstr "" +msgstr "Před dodáním" #. module: sale #: field:sale.order.line,product_uos:0 @@ -1943,7 +2164,7 @@ msgstr "UoS výrobku" #. module: sale #: model:process.node,note:sale.process_node_quotation0 msgid "Draft state of sales order" -msgstr "Návrh prodejní objednávky" +msgstr "Stav zakázky 'návrh'" #. module: sale #: field:sale.order,origin:0 @@ -1965,7 +2186,7 @@ msgstr "Ruční v běhu" #: code:addons/sale/wizard/sale_make_invoice.py:43 #, python-format msgid "Warning!" -msgstr "" +msgstr "Varování!" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_tree @@ -1992,22 +2213,33 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klepnutím vytvoříte nabídku nebo přijatou objednávku.\n" +"

\n" +" OpenERP může pomoci zvládnout kompletní prodejní operace:\n" +" nabídku, přijatou objednávku, dodávku, fakturaci a platbu\n" +"

\n" +" Sociální funkce pomáhá organizovat diskuze ohledně " +"objednávek\n" +" a umožňuje zákazníkovi sledovat vývoj jeho objednávky.\n" +"

\n" +" " #. module: sale #: field:sale.order,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Součet" #. module: sale #: help:sale.order,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Zprávy a historie komunikace" #. module: sale #: view:sale.order:0 #: view:sale.order.line:0 msgid "Search Sales Order" -msgstr "Hledat prodejní objednávky" +msgstr "Hledat zakázku" #. module: sale #: report:sale.order:0 @@ -2023,21 +2255,23 @@ msgid "" "with\n" " your customer." msgstr "" +"Uzavřete se zákazníkem smlouvu, abyste byli schopni spravovat zakázku s více " +"fakturacemi." #. module: sale #: view:sale.report:0 msgid "Ordered month of the sales order" -msgstr "" +msgstr "Měsíc objednání zakázky" #. module: sale #: model:process.transition,name:sale.process_transition_saleinvoice0 msgid "From a sales order" -msgstr "Z prodejní objednávky" +msgstr "Ze zakázky" #. module: sale #: view:sale.order.line:0 msgid "Confirmed sales order lines, not yet delivered" -msgstr "" +msgstr "Potvrzené, ale nedodané položky zakázky" #. module: sale #: model:process.transition,note:sale.process_transition_saleinvoice0 @@ -2047,72 +2281,75 @@ msgid "" "generates an invoice or a delivery order as soon as it is confirmed by the " "salesman." msgstr "" +"V závislosti na řízení fakturace může být faktura vystavena buď podle " +"odesílaného nebo podle objednaného množství. Ze zakázky se tudíž může " +"generovat faktura nebo dodací list, jakmile to bude potvrzeno obchodníkem." #. module: sale #: view:sale.order:0 msgid "UoS" -msgstr "" +msgstr "?!?Prodejní jednotky" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 msgid "Some order lines" -msgstr "" +msgstr "položky objednávky" #. module: sale #: code:addons/sale/sale.py:983 #, python-format msgid "Cannot delete a sales order line which is in state '%s'." -msgstr "" +msgstr "Položku zakázky, která je ve stavu '%s', není možno smazat." #. module: sale #: report:sale.order:0 #: field:sale.order,payment_term:0 msgid "Payment Term" -msgstr "Platební období" +msgstr "Splatnost faktury" #. module: sale #: view:sale.order:0 msgid "Sales Order ready to be invoiced" -msgstr "" +msgstr "zakázka připravena k fakturaci" #. module: sale #: field:sale.config.settings,group_invoice_so_lines:0 msgid "Generate invoices based on the sales order lines" -msgstr "" +msgstr "Generovat faktury na základě položek zakázky" #. module: sale #: view:sale.advance.payment.inv:0 #: view:sale.make.invoice:0 #: view:sale.order.line.make.invoice:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_product_tree #: view:sale.order:0 #: view:sale.order.line:0 msgid "Sales Order Lines" -msgstr "Řádky prodejní objednávky" +msgstr "Položky zakázky" #. module: sale #: help:sale.order,pricelist_id:0 msgid "Pricelist for current sales order." -msgstr "Ceník pro aktuální prodejní objednávku." +msgstr "Ceník pro aktuální zakázku." #. module: sale #: report:sale.order:0 msgid "Quotation N°" -msgstr "Množství N°" +msgstr "Nabídka č." #. module: sale #: model:res.groups,name:sale.group_discount_per_so_line msgid "Discount on lines" -msgstr "" +msgstr "Sleva na položce" #. module: sale #: field:sale.order,client_order_ref:0 msgid "Customer Reference" -msgstr "Odkaz zákazníka" +msgstr "Reference zákazníka" #. module: sale #: view:sale.report:0 @@ -2127,6 +2364,10 @@ msgid "" "between the Unit Price and Cost Price.\n" " This installs the module sale_margin." msgstr "" +"Do zakázky se přidá 'Marže'.\n" +"Bude vidět ziskovost jakožto rozdíl mezi jednotkovou cenou a pořizovací " +"cenou.\n" +"Nainstaluje se modul sale_margin." #. module: sale #: code:addons/sale/sale.py:865 @@ -2135,16 +2376,18 @@ msgid "" "Before choosing a product,\n" " select a customer in the sales form." msgstr "" +"Než vyberete produkt, \n" +"zvolte ve formuláři zákazníka." #. module: sale #: view:sale.order:0 msgid "Total Tax Included" -msgstr "Celkem zahrnutá daň" +msgstr "DPH celkem" #. module: sale #: view:sale.order:0 msgid "New Copy of Quotation" -msgstr "" +msgstr "Nová kopie nabídky" #. module: sale #: view:sale.advance.payment.inv:0 @@ -2153,8 +2396,11 @@ msgid "" " will create a draft invoice that can be modified\n" " before validation." msgstr "" +"Vyberte, jak chcete fakturovat tuto objednávku.\n" +" Vytvoří se návrh faktury, který bude možno\n" +" před ověřením upravit." #. module: sale #: view:sale.report:0 msgid "Ordered date of the sales order" -msgstr "" +msgstr "Datum objednání zakázky" diff --git a/addons/sale/i18n/da.po b/addons/sale/i18n/da.po index 918fa585bdd..236757281d4 100644 --- a/addons/sale/i18n/da.po +++ b/addons/sale/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/de.po b/addons/sale/i18n/de.po index df23b64257b..cb97ae9060b 100644 --- a/addons/sale/i18n/de.po +++ b/addons/sale/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-18 05:22+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/el.po b/addons/sale/i18n/el.po index c42aaf8c81b..d903f6f7bbc 100644 --- a/addons/sale/i18n/el.po +++ b/addons/sale/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es.po b/addons/sale/i18n/es.po index e2054898045..030b4472f5d 100644 --- a/addons/sale/i18n/es.po +++ b/addons/sale/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_AR.po b/addons/sale/i18n/es_AR.po index 1310391c42e..367c432e47f 100644 --- a/addons/sale/i18n/es_AR.po +++ b/addons/sale/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_CL.po b/addons/sale/i18n/es_CL.po index 619ca543899..26908d6f422 100644 --- a/addons/sale/i18n/es_CL.po +++ b/addons/sale/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_CR.po b/addons/sale/i18n/es_CR.po index 5113f6bb3ef..175a48e71db 100644 --- a/addons/sale/i18n/es_CR.po +++ b/addons/sale/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_EC.po b/addons/sale/i18n/es_EC.po index ebf3a17fb69..825c70e569d 100644 --- a/addons/sale/i18n/es_EC.po +++ b/addons/sale/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/es_MX.po b/addons/sale/i18n/es_MX.po index 01aea48e323..6de0c6c45e0 100644 --- a/addons/sale/i18n/es_MX.po +++ b/addons/sale/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-23 11:56+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/et.po b/addons/sale/i18n/et.po index e52f03179a2..d0a49a638db 100644 --- a/addons/sale/i18n/et.po +++ b/addons/sale/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/eu.po b/addons/sale/i18n/eu.po index e0df24105f0..a5f5ab60bc6 100644 --- a/addons/sale/i18n/eu.po +++ b/addons/sale/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/fi.po b/addons/sale/i18n/fi.po index 64b8b706b93..3fe6b12da15 100644 --- a/addons/sale/i18n/fi.po +++ b/addons/sale/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/fr.po b/addons/sale/i18n/fr.po index 1d63ae3fb3f..ad022e0e9d5 100644 --- a/addons/sale/i18n/fr.po +++ b/addons/sale/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/gl.po b/addons/sale/i18n/gl.po index 933c4c1b275..40c4e47be3e 100644 --- a/addons/sale/i18n/gl.po +++ b/addons/sale/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/hr.po b/addons/sale/i18n/hr.po index 119cd004dd2..cdda2b804bf 100644 --- a/addons/sale/i18n/hr.po +++ b/addons/sale/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/hu.po b/addons/sale/i18n/hu.po index b5de2e91605..c899f0efd6b 100644 --- a/addons/sale/i18n/hu.po +++ b/addons/sale/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:ir.model,name:sale.model_mail_compose_message diff --git a/addons/sale/i18n/id.po b/addons/sale/i18n/id.po index 0543422a872..6b137a80aa3 100644 --- a/addons/sale/i18n/id.po +++ b/addons/sale/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/is.po b/addons/sale/i18n/is.po index 187b938d8a3..3572bc566e6 100644 --- a/addons/sale/i18n/is.po +++ b/addons/sale/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/it.po b/addons/sale/i18n/it.po index 4967828b245..789a7425f8e 100644 --- a/addons/sale/i18n/it.po +++ b/addons/sale/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ja.po b/addons/sale/i18n/ja.po index d76afef441b..e4f583eac13 100644 --- a/addons/sale/i18n/ja.po +++ b/addons/sale/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ko.po b/addons/sale/i18n/ko.po index 723feb58cfb..19990126c7b 100644 --- a/addons/sale/i18n/ko.po +++ b/addons/sale/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lo.po b/addons/sale/i18n/lo.po index 83d765241ec..17b7f6f9344 100644 --- a/addons/sale/i18n/lo.po +++ b/addons/sale/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lt.po b/addons/sale/i18n/lt.po index ece574dd295..176edad5938 100644 --- a/addons/sale/i18n/lt.po +++ b/addons/sale/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/lv.po b/addons/sale/i18n/lv.po index dc55c0960fd..b9805b1c248 100644 --- a/addons/sale/i18n/lv.po +++ b/addons/sale/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/mk.po b/addons/sale/i18n/mk.po index b60418cb455..6c1599999ef 100644 --- a/addons/sale/i18n/mk.po +++ b/addons/sale/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: sale diff --git a/addons/sale/i18n/mn.po b/addons/sale/i18n/mn.po index 32d66865897..0560578a798 100644 --- a/addons/sale/i18n/mn.po +++ b/addons/sale/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:24+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nb.po b/addons/sale/i18n/nb.po index d9d79eb23c4..70f88e8a5a5 100644 --- a/addons/sale/i18n/nb.po +++ b/addons/sale/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nl.po b/addons/sale/i18n/nl.po index 6a2f1408ee2..08054b7fa2b 100644 --- a/addons/sale/i18n/nl.po +++ b/addons/sale/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/nl_BE.po b/addons/sale/i18n/nl_BE.po index 09b0784864d..6a0549a9af6 100644 --- a/addons/sale/i18n/nl_BE.po +++ b/addons/sale/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/oc.po b/addons/sale/i18n/oc.po index d6b9a306255..2bfa1d31c07 100644 --- a/addons/sale/i18n/oc.po +++ b/addons/sale/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/pl.po b/addons/sale/i18n/pl.po index 867c375f478..07ae2faf989 100644 --- a/addons/sale/i18n/pl.po +++ b/addons/sale/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/pt.po b/addons/sale/i18n/pt.po index 7eaad5030ba..028367e9be4 100644 --- a/addons/sale/i18n/pt.po +++ b/addons/sale/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/pt_BR.po b/addons/sale/i18n/pt_BR.po index 4421cd0ea87..9ced90de79a 100644 --- a/addons/sale/i18n/pt_BR.po +++ b/addons/sale/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/ro.po b/addons/sale/i18n/ro.po index 4342664b6f2..25d71b6f3db 100644 --- a/addons/sale/i18n/ro.po +++ b/addons/sale/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:email.template,body_html:sale.email_template_edi_sale diff --git a/addons/sale/i18n/ru.po b/addons/sale/i18n/ru.po index 7bcaa433161..f4669e31efd 100644 --- a/addons/sale/i18n/ru.po +++ b/addons/sale/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sk.po b/addons/sale/i18n/sk.po index 17f3bc7f456..760eb4b1049 100644 --- a/addons/sale/i18n/sk.po +++ b/addons/sale/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sl.po b/addons/sale/i18n/sl.po index 615f12f7388..f363e1e5e3e 100644 --- a/addons/sale/i18n/sl.po +++ b/addons/sale/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sq.po b/addons/sale/i18n/sq.po index cb4011bdc59..6213961fd67 100644 --- a/addons/sale/i18n/sq.po +++ b/addons/sale/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:00+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:59+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sr.po b/addons/sale/i18n/sr.po index 5fc332227c0..77e4f4810a7 100644 --- a/addons/sale/i18n/sr.po +++ b/addons/sale/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sr@latin.po b/addons/sale/i18n/sr@latin.po index 63de538774a..e6c18d13391 100644 --- a/addons/sale/i18n/sr@latin.po +++ b/addons/sale/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/sv.po b/addons/sale/i18n/sv.po index 89e99d1d20f..41beda870de 100644 --- a/addons/sale/i18n/sv.po +++ b/addons/sale/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/th.po b/addons/sale/i18n/th.po index 59361dedee1..bcce33e2c51 100644 --- a/addons/sale/i18n/th.po +++ b/addons/sale/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/tlh.po b/addons/sale/i18n/tlh.po index e6c73709f41..ba8dac5bd41 100644 --- a/addons/sale/i18n/tlh.po +++ b/addons/sale/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/tr.po b/addons/sale/i18n/tr.po index 6ac9b42f4d6..8cb765234e7 100644 --- a/addons/sale/i18n/tr.po +++ b/addons/sale/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/uk.po b/addons/sale/i18n/uk.po index d03132029e1..33dab9616f2 100644 --- a/addons/sale/i18n/uk.po +++ b/addons/sale/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/vi.po b/addons/sale/i18n/vi.po index fdef3476b83..23cd7d2d968 100644 --- a/addons/sale/i18n/vi.po +++ b/addons/sale/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/zh_CN.po b/addons/sale/i18n/zh_CN.po index 1053247b887..e2f1ce4eb07 100644 --- a/addons/sale/i18n/zh_CN.po +++ b/addons/sale/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale/i18n/zh_TW.po b/addons/sale/i18n/zh_TW.po index f73b043824e..73729c15417 100644 --- a/addons/sale/i18n/zh_TW.po +++ b/addons/sale/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting diff --git a/addons/sale_analytic_plans/i18n/ar.po b/addons/sale_analytic_plans/i18n/ar.po index 2e8466bd390..ec503cb6701 100644 --- a/addons/sale_analytic_plans/i18n/ar.po +++ b/addons/sale_analytic_plans/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/bg.po b/addons/sale_analytic_plans/i18n/bg.po index 8192cacf0d6..fba0156e7e1 100644 --- a/addons/sale_analytic_plans/i18n/bg.po +++ b/addons/sale_analytic_plans/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/bs.po b/addons/sale_analytic_plans/i18n/bs.po index dc267ddb6e1..8f37a3719ef 100644 --- a/addons/sale_analytic_plans/i18n/bs.po +++ b/addons/sale_analytic_plans/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ca.po b/addons/sale_analytic_plans/i18n/ca.po index 52a066305a5..0bedce65b0c 100644 --- a/addons/sale_analytic_plans/i18n/ca.po +++ b/addons/sale_analytic_plans/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/cs.po b/addons/sale_analytic_plans/i18n/cs.po index 2b831c802ac..9cf51965411 100644 --- a/addons/sale_analytic_plans/i18n/cs.po +++ b/addons/sale_analytic_plans/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/da.po b/addons/sale_analytic_plans/i18n/da.po index 022df2ce4b6..540e05fc45b 100644 --- a/addons/sale_analytic_plans/i18n/da.po +++ b/addons/sale_analytic_plans/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/de.po b/addons/sale_analytic_plans/i18n/de.po index 28df8ae1948..9130774ce11 100644 --- a/addons/sale_analytic_plans/i18n/de.po +++ b/addons/sale_analytic_plans/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/el.po b/addons/sale_analytic_plans/i18n/el.po index 73cca60c281..49045bf1d46 100644 --- a/addons/sale_analytic_plans/i18n/el.po +++ b/addons/sale_analytic_plans/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es.po b/addons/sale_analytic_plans/i18n/es.po index fc779297029..456606634c2 100644 --- a/addons/sale_analytic_plans/i18n/es.po +++ b/addons/sale_analytic_plans/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_AR.po b/addons/sale_analytic_plans/i18n/es_AR.po index 071a471adda..5208f9a4f3e 100644 --- a/addons/sale_analytic_plans/i18n/es_AR.po +++ b/addons/sale_analytic_plans/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CL.po b/addons/sale_analytic_plans/i18n/es_CL.po index bbc812c6368..8631ec99a2b 100644 --- a/addons/sale_analytic_plans/i18n/es_CL.po +++ b/addons/sale_analytic_plans/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CO.po b/addons/sale_analytic_plans/i18n/es_CO.po index 938899d29ee..11e8ffcbcea 100644 --- a/addons/sale_analytic_plans/i18n/es_CO.po +++ b/addons/sale_analytic_plans/i18n/es_CO.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-20 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/es_CR.po b/addons/sale_analytic_plans/i18n/es_CR.po index 0c2bd4382b7..e824fc6e188 100644 --- a/addons/sale_analytic_plans/i18n/es_CR.po +++ b/addons/sale_analytic_plans/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/et.po b/addons/sale_analytic_plans/i18n/et.po index b655848a93e..e21e871e5ad 100644 --- a/addons/sale_analytic_plans/i18n/et.po +++ b/addons/sale_analytic_plans/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/fi.po b/addons/sale_analytic_plans/i18n/fi.po index 02798b79f3a..38061ca0126 100644 --- a/addons/sale_analytic_plans/i18n/fi.po +++ b/addons/sale_analytic_plans/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/fr.po b/addons/sale_analytic_plans/i18n/fr.po index 6e571f0d0cf..ca7bca10f78 100644 --- a/addons/sale_analytic_plans/i18n/fr.po +++ b/addons/sale_analytic_plans/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/gl.po b/addons/sale_analytic_plans/i18n/gl.po index e55873bbaef..094867ea782 100644 --- a/addons/sale_analytic_plans/i18n/gl.po +++ b/addons/sale_analytic_plans/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/hr.po b/addons/sale_analytic_plans/i18n/hr.po index 0da77acf55d..68082ae5104 100644 --- a/addons/sale_analytic_plans/i18n/hr.po +++ b/addons/sale_analytic_plans/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/hu.po b/addons/sale_analytic_plans/i18n/hu.po index 4e0b4fe2493..a42a0f7ad68 100644 --- a/addons/sale_analytic_plans/i18n/hu.po +++ b/addons/sale_analytic_plans/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/id.po b/addons/sale_analytic_plans/i18n/id.po index d9f5c7612e5..a7195720f6e 100644 --- a/addons/sale_analytic_plans/i18n/id.po +++ b/addons/sale_analytic_plans/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/it.po b/addons/sale_analytic_plans/i18n/it.po index e5608a816b7..9a8b335ec28 100644 --- a/addons/sale_analytic_plans/i18n/it.po +++ b/addons/sale_analytic_plans/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ja.po b/addons/sale_analytic_plans/i18n/ja.po index e8fc605b0ed..10708de87aa 100644 --- a/addons/sale_analytic_plans/i18n/ja.po +++ b/addons/sale_analytic_plans/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ko.po b/addons/sale_analytic_plans/i18n/ko.po index cac5c95de4b..a41a14fe669 100644 --- a/addons/sale_analytic_plans/i18n/ko.po +++ b/addons/sale_analytic_plans/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/lt.po b/addons/sale_analytic_plans/i18n/lt.po index 47e4b61218b..64ff5c3a6a2 100644 --- a/addons/sale_analytic_plans/i18n/lt.po +++ b/addons/sale_analytic_plans/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/mk.po b/addons/sale_analytic_plans/i18n/mk.po index 0d2ef68b31e..0c2350cf147 100644 --- a/addons/sale_analytic_plans/i18n/mk.po +++ b/addons/sale_analytic_plans/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/mn.po b/addons/sale_analytic_plans/i18n/mn.po index 6c4bbb1988b..9fb0eaa5713 100644 --- a/addons/sale_analytic_plans/i18n/mn.po +++ b/addons/sale_analytic_plans/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-25 05:24+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nb.po b/addons/sale_analytic_plans/i18n/nb.po index 60fc4467011..f630c87f55a 100644 --- a/addons/sale_analytic_plans/i18n/nb.po +++ b/addons/sale_analytic_plans/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nl.po b/addons/sale_analytic_plans/i18n/nl.po index c4bb59bccc8..7e0d6094907 100644 --- a/addons/sale_analytic_plans/i18n/nl.po +++ b/addons/sale_analytic_plans/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/nl_BE.po b/addons/sale_analytic_plans/i18n/nl_BE.po index 6968a1b0c22..c1576e893bf 100644 --- a/addons/sale_analytic_plans/i18n/nl_BE.po +++ b/addons/sale_analytic_plans/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/oc.po b/addons/sale_analytic_plans/i18n/oc.po index 567862c798a..1b15383d791 100644 --- a/addons/sale_analytic_plans/i18n/oc.po +++ b/addons/sale_analytic_plans/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pl.po b/addons/sale_analytic_plans/i18n/pl.po index a5f61089ae8..41f09af38bf 100644 --- a/addons/sale_analytic_plans/i18n/pl.po +++ b/addons/sale_analytic_plans/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pt.po b/addons/sale_analytic_plans/i18n/pt.po index 8064fbd8bc1..a1c2e30c59d 100644 --- a/addons/sale_analytic_plans/i18n/pt.po +++ b/addons/sale_analytic_plans/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/pt_BR.po b/addons/sale_analytic_plans/i18n/pt_BR.po index 8c94e625e60..e6809fc9394 100644 --- a/addons/sale_analytic_plans/i18n/pt_BR.po +++ b/addons/sale_analytic_plans/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ro.po b/addons/sale_analytic_plans/i18n/ro.po index bcb06e8dfde..1640b111695 100644 --- a/addons/sale_analytic_plans/i18n/ro.po +++ b/addons/sale_analytic_plans/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/ru.po b/addons/sale_analytic_plans/i18n/ru.po index 768cb02387c..f2ddab1a7fd 100644 --- a/addons/sale_analytic_plans/i18n/ru.po +++ b/addons/sale_analytic_plans/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sk.po b/addons/sale_analytic_plans/i18n/sk.po index 350484b10b9..4fdcdf79d9d 100644 --- a/addons/sale_analytic_plans/i18n/sk.po +++ b/addons/sale_analytic_plans/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sl.po b/addons/sale_analytic_plans/i18n/sl.po index 816185e5268..890ee46623d 100644 --- a/addons/sale_analytic_plans/i18n/sl.po +++ b/addons/sale_analytic_plans/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sq.po b/addons/sale_analytic_plans/i18n/sq.po index edcde200334..06b3798a04a 100644 --- a/addons/sale_analytic_plans/i18n/sq.po +++ b/addons/sale_analytic_plans/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sr.po b/addons/sale_analytic_plans/i18n/sr.po index be32f43d316..1d23ad71703 100644 --- a/addons/sale_analytic_plans/i18n/sr.po +++ b/addons/sale_analytic_plans/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sr@latin.po b/addons/sale_analytic_plans/i18n/sr@latin.po index 5429c28ddb5..05b668b966b 100644 --- a/addons/sale_analytic_plans/i18n/sr@latin.po +++ b/addons/sale_analytic_plans/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/sv.po b/addons/sale_analytic_plans/i18n/sv.po index e992d62bc54..9bbe3d237f0 100644 --- a/addons/sale_analytic_plans/i18n/sv.po +++ b/addons/sale_analytic_plans/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/tlh.po b/addons/sale_analytic_plans/i18n/tlh.po index b6bbbc59819..ad4bd94d7cf 100644 --- a/addons/sale_analytic_plans/i18n/tlh.po +++ b/addons/sale_analytic_plans/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/tr.po b/addons/sale_analytic_plans/i18n/tr.po index 36ee41f3451..4e6b0b33510 100644 --- a/addons/sale_analytic_plans/i18n/tr.po +++ b/addons/sale_analytic_plans/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/uk.po b/addons/sale_analytic_plans/i18n/uk.po index a013b54e250..5f552b4c596 100644 --- a/addons/sale_analytic_plans/i18n/uk.po +++ b/addons/sale_analytic_plans/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/vi.po b/addons/sale_analytic_plans/i18n/vi.po index fa326a0b33d..957a49d19ae 100644 --- a/addons/sale_analytic_plans/i18n/vi.po +++ b/addons/sale_analytic_plans/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/zh_CN.po b/addons/sale_analytic_plans/i18n/zh_CN.po index 3b5c1e48af1..3d7536e7b31 100644 --- a/addons/sale_analytic_plans/i18n/zh_CN.po +++ b/addons/sale_analytic_plans/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_analytic_plans/i18n/zh_TW.po b/addons/sale_analytic_plans/i18n/zh_TW.po index 8cf0ddba95b..5d6c5e9b4ec 100644 --- a/addons/sale_analytic_plans/i18n/zh_TW.po +++ b/addons/sale_analytic_plans/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_analytic_plans #: field:sale.order.line,analytics_id:0 diff --git a/addons/sale_crm/i18n/ar.po b/addons/sale_crm/i18n/ar.po index a6b491069cd..cc9160b15d9 100644 --- a/addons/sale_crm/i18n/ar.po +++ b/addons/sale_crm/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/bg.po b/addons/sale_crm/i18n/bg.po index 3fa6714b714..3667d402978 100644 --- a/addons/sale_crm/i18n/bg.po +++ b/addons/sale_crm/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/bs.po b/addons/sale_crm/i18n/bs.po index 0dae1d60a2a..9633bece16f 100644 --- a/addons/sale_crm/i18n/bs.po +++ b/addons/sale_crm/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ca.po b/addons/sale_crm/i18n/ca.po index 0aeaec60311..108d86678b5 100644 --- a/addons/sale_crm/i18n/ca.po +++ b/addons/sale_crm/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/cs.po b/addons/sale_crm/i18n/cs.po index 35352684a6a..3549f9535d8 100644 --- a/addons/sale_crm/i18n/cs.po +++ b/addons/sale_crm/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/da.po b/addons/sale_crm/i18n/da.po index 0aa7228f19b..e64fc3b2ba5 100644 --- a/addons/sale_crm/i18n/da.po +++ b/addons/sale_crm/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/de.po b/addons/sale_crm/i18n/de.po index 7107b898901..b316879c37b 100644 --- a/addons/sale_crm/i18n/de.po +++ b/addons/sale_crm/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/el.po b/addons/sale_crm/i18n/el.po index 427348b8daa..4ab0c888af7 100644 --- a/addons/sale_crm/i18n/el.po +++ b/addons/sale_crm/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/es.po b/addons/sale_crm/i18n/es.po index b5b9dc0e01c..4ddf5692e2b 100644 --- a/addons/sale_crm/i18n/es.po +++ b/addons/sale_crm/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/es_AR.po b/addons/sale_crm/i18n/es_AR.po index 5cec8ec73bb..c6e9e349eba 100644 --- a/addons/sale_crm/i18n/es_AR.po +++ b/addons/sale_crm/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/es_CL.po b/addons/sale_crm/i18n/es_CL.po index 93e093f52f4..1ba53ed470d 100644 --- a/addons/sale_crm/i18n/es_CL.po +++ b/addons/sale_crm/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/es_CR.po b/addons/sale_crm/i18n/es_CR.po index d60a5ec8567..437482a98e4 100644 --- a/addons/sale_crm/i18n/es_CR.po +++ b/addons/sale_crm/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/et.po b/addons/sale_crm/i18n/et.po index 5be7de692a7..765ee7e1ec4 100644 --- a/addons/sale_crm/i18n/et.po +++ b/addons/sale_crm/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/fi.po b/addons/sale_crm/i18n/fi.po index 2ce33992f92..7510bc36941 100644 --- a/addons/sale_crm/i18n/fi.po +++ b/addons/sale_crm/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/fr.po b/addons/sale_crm/i18n/fr.po index cb756417c26..5d5736c15a6 100644 --- a/addons/sale_crm/i18n/fr.po +++ b/addons/sale_crm/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/gl.po b/addons/sale_crm/i18n/gl.po index e97a915df25..4e67b5ba5f3 100644 --- a/addons/sale_crm/i18n/gl.po +++ b/addons/sale_crm/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/hr.po b/addons/sale_crm/i18n/hr.po index 1e77ce129e9..7bbd8152513 100644 --- a/addons/sale_crm/i18n/hr.po +++ b/addons/sale_crm/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/hu.po b/addons/sale_crm/i18n/hu.po index 89124387c08..91c5bc38cbe 100644 --- a/addons/sale_crm/i18n/hu.po +++ b/addons/sale_crm/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/id.po b/addons/sale_crm/i18n/id.po index a937d9702a6..df9c62b4b49 100644 --- a/addons/sale_crm/i18n/id.po +++ b/addons/sale_crm/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/it.po b/addons/sale_crm/i18n/it.po index dc4dc0bbddf..a72249924ee 100644 --- a/addons/sale_crm/i18n/it.po +++ b/addons/sale_crm/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ja.po b/addons/sale_crm/i18n/ja.po index b185d313346..f5a2a61ec3b 100644 --- a/addons/sale_crm/i18n/ja.po +++ b/addons/sale_crm/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ko.po b/addons/sale_crm/i18n/ko.po index ba9913a6edf..f312debc935 100644 --- a/addons/sale_crm/i18n/ko.po +++ b/addons/sale_crm/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/lt.po b/addons/sale_crm/i18n/lt.po index 88719e53507..c0f7fa42162 100644 --- a/addons/sale_crm/i18n/lt.po +++ b/addons/sale_crm/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/lv.po b/addons/sale_crm/i18n/lv.po index 78c86dc3897..2e44dc6b276 100644 --- a/addons/sale_crm/i18n/lv.po +++ b/addons/sale_crm/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/mk.po b/addons/sale_crm/i18n/mk.po index 783cc9be515..524a4c260eb 100644 --- a/addons/sale_crm/i18n/mk.po +++ b/addons/sale_crm/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/mn.po b/addons/sale_crm/i18n/mn.po index 52f46e43ac7..e08fb3abb49 100644 --- a/addons/sale_crm/i18n/mn.po +++ b/addons/sale_crm/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/nb.po b/addons/sale_crm/i18n/nb.po index f0eea1decc5..57142e2332b 100644 --- a/addons/sale_crm/i18n/nb.po +++ b/addons/sale_crm/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/nl.po b/addons/sale_crm/i18n/nl.po index 96110d6fc77..85ac4e3f7d6 100644 --- a/addons/sale_crm/i18n/nl.po +++ b/addons/sale_crm/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/nl_BE.po b/addons/sale_crm/i18n/nl_BE.po index 9bd93cf2251..5f4db77af15 100644 --- a/addons/sale_crm/i18n/nl_BE.po +++ b/addons/sale_crm/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/pl.po b/addons/sale_crm/i18n/pl.po index a2f7483d7f7..6cbb7586941 100644 --- a/addons/sale_crm/i18n/pl.po +++ b/addons/sale_crm/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/pt.po b/addons/sale_crm/i18n/pt.po index f7d46591eef..adf08976494 100644 --- a/addons/sale_crm/i18n/pt.po +++ b/addons/sale_crm/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/pt_BR.po b/addons/sale_crm/i18n/pt_BR.po index e7fed7dc667..dcc0cb8b0cb 100644 --- a/addons/sale_crm/i18n/pt_BR.po +++ b/addons/sale_crm/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ro.po b/addons/sale_crm/i18n/ro.po index 8575e303e19..b3fed51f1c8 100644 --- a/addons/sale_crm/i18n/ro.po +++ b/addons/sale_crm/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/ru.po b/addons/sale_crm/i18n/ru.po index b87d7560769..7101dec6661 100644 --- a/addons/sale_crm/i18n/ru.po +++ b/addons/sale_crm/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/sk.po b/addons/sale_crm/i18n/sk.po index 8a8ff25dd2c..7fd0ae7b18d 100644 --- a/addons/sale_crm/i18n/sk.po +++ b/addons/sale_crm/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/sl.po b/addons/sale_crm/i18n/sl.po index 13f17ae9dd9..10ba2f34a29 100644 --- a/addons/sale_crm/i18n/sl.po +++ b/addons/sale_crm/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/sq.po b/addons/sale_crm/i18n/sq.po index 71f1dcc89e9..62994660a8a 100644 --- a/addons/sale_crm/i18n/sq.po +++ b/addons/sale_crm/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/sv.po b/addons/sale_crm/i18n/sv.po index 89f2aef1ad1..b60b7350b13 100644 --- a/addons/sale_crm/i18n/sv.po +++ b/addons/sale_crm/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/tlh.po b/addons/sale_crm/i18n/tlh.po index acf84ee8a23..8e9c1716848 100644 --- a/addons/sale_crm/i18n/tlh.po +++ b/addons/sale_crm/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/tr.po b/addons/sale_crm/i18n/tr.po index 1b99732eafb..63cc1e36ee5 100644 --- a/addons/sale_crm/i18n/tr.po +++ b/addons/sale_crm/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: tr\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/uk.po b/addons/sale_crm/i18n/uk.po index 23c46f26c18..dd1b535b1cb 100644 --- a/addons/sale_crm/i18n/uk.po +++ b/addons/sale_crm/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/vi.po b/addons/sale_crm/i18n/vi.po index 6bf97d6f6e3..45daa3baed1 100644 --- a/addons/sale_crm/i18n/vi.po +++ b/addons/sale_crm/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/zh_CN.po b/addons/sale_crm/i18n/zh_CN.po index 95e08887e04..15695c9b1a6 100644 --- a/addons/sale_crm/i18n/zh_CN.po +++ b/addons/sale_crm/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_crm/i18n/zh_TW.po b/addons/sale_crm/i18n/zh_TW.po index 96c404f82c7..f2258d4e091 100644 --- a/addons/sale_crm/i18n/zh_TW.po +++ b/addons/sale_crm/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 diff --git a/addons/sale_journal/i18n/ar.po b/addons/sale_journal/i18n/ar.po index ebda167b856..36f378a327d 100644 --- a/addons/sale_journal/i18n/ar.po +++ b/addons/sale_journal/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/bg.po b/addons/sale_journal/i18n/bg.po index e2664131869..7dfe6a939e5 100644 --- a/addons/sale_journal/i18n/bg.po +++ b/addons/sale_journal/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/bs.po b/addons/sale_journal/i18n/bs.po index cbf960dbbdd..c2a570a7637 100644 --- a/addons/sale_journal/i18n/bs.po +++ b/addons/sale_journal/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ca.po b/addons/sale_journal/i18n/ca.po index 24b86846419..6c6f9df0821 100644 --- a/addons/sale_journal/i18n/ca.po +++ b/addons/sale_journal/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/cs.po b/addons/sale_journal/i18n/cs.po index f0384c1641a..74bf19c2306 100644 --- a/addons/sale_journal/i18n/cs.po +++ b/addons/sale_journal/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/da.po b/addons/sale_journal/i18n/da.po index 9d29bf3864b..7dd8853b1bd 100644 --- a/addons/sale_journal/i18n/da.po +++ b/addons/sale_journal/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/de.po b/addons/sale_journal/i18n/de.po index c56e9ba4bec..f45462abead 100644 --- a/addons/sale_journal/i18n/de.po +++ b/addons/sale_journal/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/el.po b/addons/sale_journal/i18n/el.po index 695b9dc0b69..8f48974b369 100644 --- a/addons/sale_journal/i18n/el.po +++ b/addons/sale_journal/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es.po b/addons/sale_journal/i18n/es.po index dcf8100ddcb..184e780f2e4 100644 --- a/addons/sale_journal/i18n/es.po +++ b/addons/sale_journal/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_AR.po b/addons/sale_journal/i18n/es_AR.po index 026a59c1f56..e2bd7618625 100644 --- a/addons/sale_journal/i18n/es_AR.po +++ b/addons/sale_journal/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_CL.po b/addons/sale_journal/i18n/es_CL.po index 5c896c6fac6..0fd8c3118e4 100644 --- a/addons/sale_journal/i18n/es_CL.po +++ b/addons/sale_journal/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/es_CR.po b/addons/sale_journal/i18n/es_CR.po index 47e716cb75d..8616d3468fa 100644 --- a/addons/sale_journal/i18n/es_CR.po +++ b/addons/sale_journal/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/et.po b/addons/sale_journal/i18n/et.po index a41277ed733..56fdb36093f 100644 --- a/addons/sale_journal/i18n/et.po +++ b/addons/sale_journal/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/fi.po b/addons/sale_journal/i18n/fi.po index adab6b9233b..81ca05bbbc0 100644 --- a/addons/sale_journal/i18n/fi.po +++ b/addons/sale_journal/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/fr.po b/addons/sale_journal/i18n/fr.po index ca938f8811e..56977eee699 100644 --- a/addons/sale_journal/i18n/fr.po +++ b/addons/sale_journal/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/gl.po b/addons/sale_journal/i18n/gl.po index 3fe15ca1dff..9f28b415e9e 100644 --- a/addons/sale_journal/i18n/gl.po +++ b/addons/sale_journal/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/hr.po b/addons/sale_journal/i18n/hr.po index 4ff5eaba9fa..161202168f2 100644 --- a/addons/sale_journal/i18n/hr.po +++ b/addons/sale_journal/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/hu.po b/addons/sale_journal/i18n/hu.po index 8506e4efb02..2e1ed89dcd4 100644 --- a/addons/sale_journal/i18n/hu.po +++ b/addons/sale_journal/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/id.po b/addons/sale_journal/i18n/id.po index 9562d7ad353..852ca454acb 100644 --- a/addons/sale_journal/i18n/id.po +++ b/addons/sale_journal/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/it.po b/addons/sale_journal/i18n/it.po index e1becb06430..1aacbaf24bf 100644 --- a/addons/sale_journal/i18n/it.po +++ b/addons/sale_journal/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ja.po b/addons/sale_journal/i18n/ja.po index 0c7a5dfbdb0..28b1f13a1a8 100644 --- a/addons/sale_journal/i18n/ja.po +++ b/addons/sale_journal/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ko.po b/addons/sale_journal/i18n/ko.po index 4ca78343824..f139d7a7650 100644 --- a/addons/sale_journal/i18n/ko.po +++ b/addons/sale_journal/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/lt.po b/addons/sale_journal/i18n/lt.po index c2086e4920d..5f93df41e4b 100644 --- a/addons/sale_journal/i18n/lt.po +++ b/addons/sale_journal/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/lv.po b/addons/sale_journal/i18n/lv.po index 569f68fd809..120143ba2f9 100644 --- a/addons/sale_journal/i18n/lv.po +++ b/addons/sale_journal/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/mk.po b/addons/sale_journal/i18n/mk.po index 3a3ab829dae..197237926a2 100644 --- a/addons/sale_journal/i18n/mk.po +++ b/addons/sale_journal/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/mn.po b/addons/sale_journal/i18n/mn.po index bc73c7081e7..5af35d80b27 100644 --- a/addons/sale_journal/i18n/mn.po +++ b/addons/sale_journal/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nb.po b/addons/sale_journal/i18n/nb.po index 0fc7645d2f9..67737a86961 100644 --- a/addons/sale_journal/i18n/nb.po +++ b/addons/sale_journal/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nl.po b/addons/sale_journal/i18n/nl.po index 0c4d913f897..af56d69b4b0 100644 --- a/addons/sale_journal/i18n/nl.po +++ b/addons/sale_journal/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/nl_BE.po b/addons/sale_journal/i18n/nl_BE.po index 68b92f28b0c..2baa2237a39 100644 --- a/addons/sale_journal/i18n/nl_BE.po +++ b/addons/sale_journal/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pl.po b/addons/sale_journal/i18n/pl.po index 9b0ecec5066..7f2caa9e336 100644 --- a/addons/sale_journal/i18n/pl.po +++ b/addons/sale_journal/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pt.po b/addons/sale_journal/i18n/pt.po index f4eed73edd5..a5267ca891a 100644 --- a/addons/sale_journal/i18n/pt.po +++ b/addons/sale_journal/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/pt_BR.po b/addons/sale_journal/i18n/pt_BR.po index 31a13a9aecc..e3e0c1a08bd 100644 --- a/addons/sale_journal/i18n/pt_BR.po +++ b/addons/sale_journal/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ro.po b/addons/sale_journal/i18n/ro.po index f71220e6ed0..98d5a4c39ea 100644 --- a/addons/sale_journal/i18n/ro.po +++ b/addons/sale_journal/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/ru.po b/addons/sale_journal/i18n/ru.po index c00b24a7f8d..c69e3397929 100644 --- a/addons/sale_journal/i18n/ru.po +++ b/addons/sale_journal/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sk.po b/addons/sale_journal/i18n/sk.po index 18d2c5017cd..9c48ec0836b 100644 --- a/addons/sale_journal/i18n/sk.po +++ b/addons/sale_journal/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sl.po b/addons/sale_journal/i18n/sl.po index 7d1b801d12f..891feb283c8 100644 --- a/addons/sale_journal/i18n/sl.po +++ b/addons/sale_journal/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sq.po b/addons/sale_journal/i18n/sq.po index d2000351e87..de7cca6e2ee 100644 --- a/addons/sale_journal/i18n/sq.po +++ b/addons/sale_journal/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/sv.po b/addons/sale_journal/i18n/sv.po index 097f755f3fd..56c276a5f37 100644 --- a/addons/sale_journal/i18n/sv.po +++ b/addons/sale_journal/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/tlh.po b/addons/sale_journal/i18n/tlh.po index 39e10d18f26..a5f4a542e2c 100644 --- a/addons/sale_journal/i18n/tlh.po +++ b/addons/sale_journal/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/tr.po b/addons/sale_journal/i18n/tr.po index 3a4f93ce9cf..a122c6a1cdd 100644 --- a/addons/sale_journal/i18n/tr.po +++ b/addons/sale_journal/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/uk.po b/addons/sale_journal/i18n/uk.po index 8c2e2aefdcd..99cdf9f4947 100644 --- a/addons/sale_journal/i18n/uk.po +++ b/addons/sale_journal/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/vi.po b/addons/sale_journal/i18n/vi.po index 49ed85cf05d..7d01d345d14 100644 --- a/addons/sale_journal/i18n/vi.po +++ b/addons/sale_journal/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/zh_CN.po b/addons/sale_journal/i18n/zh_CN.po index 7c213490c3b..4de4e7d1cf0 100644 --- a/addons/sale_journal/i18n/zh_CN.po +++ b/addons/sale_journal/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_journal/i18n/zh_TW.po b/addons/sale_journal/i18n/zh_TW.po index a66d8653e65..253ba2de211 100644 --- a/addons/sale_journal/i18n/zh_TW.po +++ b/addons/sale_journal/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 diff --git a/addons/sale_margin/i18n/ar.po b/addons/sale_margin/i18n/ar.po index 97df81d8d23..39d3988bd81 100644 --- a/addons/sale_margin/i18n/ar.po +++ b/addons/sale_margin/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/bg.po b/addons/sale_margin/i18n/bg.po index 0aab2c6b2ec..30526c4da0f 100644 --- a/addons/sale_margin/i18n/bg.po +++ b/addons/sale_margin/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ca.po b/addons/sale_margin/i18n/ca.po index f7ceff732d1..13f15b1ee20 100644 --- a/addons/sale_margin/i18n/ca.po +++ b/addons/sale_margin/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/da.po b/addons/sale_margin/i18n/da.po index c77c8f69d10..15df364f7ca 100644 --- a/addons/sale_margin/i18n/da.po +++ b/addons/sale_margin/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/de.po b/addons/sale_margin/i18n/de.po index d889e3933e6..18ea038d1ee 100644 --- a/addons/sale_margin/i18n/de.po +++ b/addons/sale_margin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/el.po b/addons/sale_margin/i18n/el.po index e9c33e4ef1b..4a3aca86cd5 100644 --- a/addons/sale_margin/i18n/el.po +++ b/addons/sale_margin/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es.po b/addons/sale_margin/i18n/es.po index d3fc86a4df1..75330a5898a 100644 --- a/addons/sale_margin/i18n/es.po +++ b/addons/sale_margin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es_CL.po b/addons/sale_margin/i18n/es_CL.po index fd08be580a7..ad9d852e3ad 100644 --- a/addons/sale_margin/i18n/es_CL.po +++ b/addons/sale_margin/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/es_CR.po b/addons/sale_margin/i18n/es_CR.po index 35f1609edf1..305efb08db9 100644 --- a/addons/sale_margin/i18n/es_CR.po +++ b/addons/sale_margin/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/et.po b/addons/sale_margin/i18n/et.po index 4d99e309600..0bf2fdd7eda 100644 --- a/addons/sale_margin/i18n/et.po +++ b/addons/sale_margin/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/fi.po b/addons/sale_margin/i18n/fi.po index 625c95c5f0f..59f540f616e 100644 --- a/addons/sale_margin/i18n/fi.po +++ b/addons/sale_margin/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/fr.po b/addons/sale_margin/i18n/fr.po index e685a0fe5e6..99cff8d0c2c 100644 --- a/addons/sale_margin/i18n/fr.po +++ b/addons/sale_margin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/hr.po b/addons/sale_margin/i18n/hr.po index 34f65fb9e1d..bf3ababbb61 100644 --- a/addons/sale_margin/i18n/hr.po +++ b/addons/sale_margin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/hu.po b/addons/sale_margin/i18n/hu.po index 852e98cd258..0391d59b6fb 100644 --- a/addons/sale_margin/i18n/hu.po +++ b/addons/sale_margin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/it.po b/addons/sale_margin/i18n/it.po index ae40383b492..5cb0f5802aa 100644 --- a/addons/sale_margin/i18n/it.po +++ b/addons/sale_margin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ja.po b/addons/sale_margin/i18n/ja.po index 14c36143bd5..c2fe97b9d81 100644 --- a/addons/sale_margin/i18n/ja.po +++ b/addons/sale_margin/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/mk.po b/addons/sale_margin/i18n/mk.po index 4fb9d992564..14b94e547ce 100644 --- a/addons/sale_margin/i18n/mk.po +++ b/addons/sale_margin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/mn.po b/addons/sale_margin/i18n/mn.po index f64d23d5ecd..fb0cadb384a 100644 --- a/addons/sale_margin/i18n/mn.po +++ b/addons/sale_margin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/nb.po b/addons/sale_margin/i18n/nb.po index b84ec28291f..31026f49642 100644 --- a/addons/sale_margin/i18n/nb.po +++ b/addons/sale_margin/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/nl.po b/addons/sale_margin/i18n/nl.po index 163064a7319..80023a5f2b3 100644 --- a/addons/sale_margin/i18n/nl.po +++ b/addons/sale_margin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pl.po b/addons/sale_margin/i18n/pl.po index b6a36aaf4bd..b7d6664fcca 100644 --- a/addons/sale_margin/i18n/pl.po +++ b/addons/sale_margin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pt.po b/addons/sale_margin/i18n/pt.po index a0c404267a7..f77147e5eb7 100644 --- a/addons/sale_margin/i18n/pt.po +++ b/addons/sale_margin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/pt_BR.po b/addons/sale_margin/i18n/pt_BR.po index e61b2e01349..5a0bf2f9ba7 100644 --- a/addons/sale_margin/i18n/pt_BR.po +++ b/addons/sale_margin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ro.po b/addons/sale_margin/i18n/ro.po index f632c4f6570..1fc7c183d69 100644 --- a/addons/sale_margin/i18n/ro.po +++ b/addons/sale_margin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/ru.po b/addons/sale_margin/i18n/ru.po index e78bfe78217..c5c9761edd2 100644 --- a/addons/sale_margin/i18n/ru.po +++ b/addons/sale_margin/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sk.po b/addons/sale_margin/i18n/sk.po index 1de7d66e72b..675dc17872f 100644 --- a/addons/sale_margin/i18n/sk.po +++ b/addons/sale_margin/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sl.po b/addons/sale_margin/i18n/sl.po index 2522772e68e..38690c0f9a1 100644 --- a/addons/sale_margin/i18n/sl.po +++ b/addons/sale_margin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/sv.po b/addons/sale_margin/i18n/sv.po index bffe9ae03c3..bd2b06ca317 100644 --- a/addons/sale_margin/i18n/sv.po +++ b/addons/sale_margin/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/tr.po b/addons/sale_margin/i18n/tr.po index 4365b73a764..aa01190ef82 100644 --- a/addons/sale_margin/i18n/tr.po +++ b/addons/sale_margin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_margin/i18n/zh_CN.po b/addons/sale_margin/i18n/zh_CN.po index d586eb1ea54..55bdbac75c1 100644 --- a/addons/sale_margin/i18n/zh_CN.po +++ b/addons/sale_margin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_margin #: field:sale.order.line,purchase_price:0 diff --git a/addons/sale_mrp/i18n/ar.po b/addons/sale_mrp/i18n/ar.po index d58129e1924..5e80716d8e5 100644 --- a/addons/sale_mrp/i18n/ar.po +++ b/addons/sale_mrp/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/bg.po b/addons/sale_mrp/i18n/bg.po index c3466a583c9..0ee8dd77374 100644 --- a/addons/sale_mrp/i18n/bg.po +++ b/addons/sale_mrp/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ca.po b/addons/sale_mrp/i18n/ca.po index 4b8bd9245df..a3cd0e497e7 100644 --- a/addons/sale_mrp/i18n/ca.po +++ b/addons/sale_mrp/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/da.po b/addons/sale_mrp/i18n/da.po index 8cdf7839a21..921902961ed 100644 --- a/addons/sale_mrp/i18n/da.po +++ b/addons/sale_mrp/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/de.po b/addons/sale_mrp/i18n/de.po index a64ddf615a6..c00fecbc0bd 100644 --- a/addons/sale_mrp/i18n/de.po +++ b/addons/sale_mrp/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es.po b/addons/sale_mrp/i18n/es.po index 0e6bb084c93..e4e65b2198a 100644 --- a/addons/sale_mrp/i18n/es.po +++ b/addons/sale_mrp/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es_CL.po b/addons/sale_mrp/i18n/es_CL.po index 14bd02e181f..27b575bdee8 100644 --- a/addons/sale_mrp/i18n/es_CL.po +++ b/addons/sale_mrp/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/es_CR.po b/addons/sale_mrp/i18n/es_CR.po index 34bcc11de86..45f4cdee74f 100644 --- a/addons/sale_mrp/i18n/es_CR.po +++ b/addons/sale_mrp/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/et.po b/addons/sale_mrp/i18n/et.po index eda85da15a8..f424118450f 100644 --- a/addons/sale_mrp/i18n/et.po +++ b/addons/sale_mrp/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/fi.po b/addons/sale_mrp/i18n/fi.po index c517e621c73..7016b15161f 100644 --- a/addons/sale_mrp/i18n/fi.po +++ b/addons/sale_mrp/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/fr.po b/addons/sale_mrp/i18n/fr.po index 3e1536ac16a..d59502de4cc 100644 --- a/addons/sale_mrp/i18n/fr.po +++ b/addons/sale_mrp/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/gl.po b/addons/sale_mrp/i18n/gl.po index 10d987ee726..3f2359ecda0 100644 --- a/addons/sale_mrp/i18n/gl.po +++ b/addons/sale_mrp/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/hr.po b/addons/sale_mrp/i18n/hr.po index 6ad7ce993e3..fee3cfd8353 100644 --- a/addons/sale_mrp/i18n/hr.po +++ b/addons/sale_mrp/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/hu.po b/addons/sale_mrp/i18n/hu.po index 49397961a4b..150743a946f 100644 --- a/addons/sale_mrp/i18n/hu.po +++ b/addons/sale_mrp/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/it.po b/addons/sale_mrp/i18n/it.po index ef29288f8e6..2fb59c75c0c 100644 --- a/addons/sale_mrp/i18n/it.po +++ b/addons/sale_mrp/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ja.po b/addons/sale_mrp/i18n/ja.po index a5c618de22d..a8e9d21b7e4 100644 --- a/addons/sale_mrp/i18n/ja.po +++ b/addons/sale_mrp/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/mk.po b/addons/sale_mrp/i18n/mk.po index e0c823e5e42..5a15412a0cf 100644 --- a/addons/sale_mrp/i18n/mk.po +++ b/addons/sale_mrp/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: sale_mrp diff --git a/addons/sale_mrp/i18n/mn.po b/addons/sale_mrp/i18n/mn.po index 4d8ed96ca41..cdf918b6791 100644 --- a/addons/sale_mrp/i18n/mn.po +++ b/addons/sale_mrp/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nb.po b/addons/sale_mrp/i18n/nb.po index f74e61e0bf5..058ad501122 100644 --- a/addons/sale_mrp/i18n/nb.po +++ b/addons/sale_mrp/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nl.po b/addons/sale_mrp/i18n/nl.po index 7dbb1184b29..7f92e3c65a3 100644 --- a/addons/sale_mrp/i18n/nl.po +++ b/addons/sale_mrp/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/nl_BE.po b/addons/sale_mrp/i18n/nl_BE.po index a9e4199477c..090c0bb2298 100644 --- a/addons/sale_mrp/i18n/nl_BE.po +++ b/addons/sale_mrp/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pl.po b/addons/sale_mrp/i18n/pl.po index bafd64dc016..fc8170e74ff 100644 --- a/addons/sale_mrp/i18n/pl.po +++ b/addons/sale_mrp/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:01+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pt.po b/addons/sale_mrp/i18n/pt.po index 59331cf701e..2cd87015722 100644 --- a/addons/sale_mrp/i18n/pt.po +++ b/addons/sale_mrp/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/pt_BR.po b/addons/sale_mrp/i18n/pt_BR.po index 273c7321e59..22fa8341f5c 100644 --- a/addons/sale_mrp/i18n/pt_BR.po +++ b/addons/sale_mrp/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ro.po b/addons/sale_mrp/i18n/ro.po index f0e073e8c36..d04ba8cd6b7 100644 --- a/addons/sale_mrp/i18n/ro.po +++ b/addons/sale_mrp/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/ru.po b/addons/sale_mrp/i18n/ru.po index c66c39b68d3..981e5ac970e 100644 --- a/addons/sale_mrp/i18n/ru.po +++ b/addons/sale_mrp/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sl.po b/addons/sale_mrp/i18n/sl.po index 164f60496db..2c739f76907 100644 --- a/addons/sale_mrp/i18n/sl.po +++ b/addons/sale_mrp/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sr@latin.po b/addons/sale_mrp/i18n/sr@latin.po index c9d4eef9a8c..023b08009f2 100644 --- a/addons/sale_mrp/i18n/sr@latin.po +++ b/addons/sale_mrp/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/sv.po b/addons/sale_mrp/i18n/sv.po index 13192c68a9e..f3471d90be9 100644 --- a/addons/sale_mrp/i18n/sv.po +++ b/addons/sale_mrp/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/tr.po b/addons/sale_mrp/i18n/tr.po index 30d41bdeafc..4ed00c28adf 100644 --- a/addons/sale_mrp/i18n/tr.po +++ b/addons/sale_mrp/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_mrp/i18n/zh_CN.po b/addons/sale_mrp/i18n/zh_CN.po index d8f8d4793ba..38df379e4fb 100644 --- a/addons/sale_mrp/i18n/zh_CN.po +++ b/addons/sale_mrp/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_mrp #: model:ir.model,name:sale_mrp.model_mrp_production diff --git a/addons/sale_order_dates/i18n/ar.po b/addons/sale_order_dates/i18n/ar.po index 7f8f23cb765..bc62971919d 100644 --- a/addons/sale_order_dates/i18n/ar.po +++ b/addons/sale_order_dates/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/bg.po b/addons/sale_order_dates/i18n/bg.po index cab60f7c659..5735f8af18b 100644 --- a/addons/sale_order_dates/i18n/bg.po +++ b/addons/sale_order_dates/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ca.po b/addons/sale_order_dates/i18n/ca.po index a57e20b5e02..7d0fc6f93e3 100644 --- a/addons/sale_order_dates/i18n/ca.po +++ b/addons/sale_order_dates/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/da.po b/addons/sale_order_dates/i18n/da.po index b85f06af2bf..8c547cdacae 100644 --- a/addons/sale_order_dates/i18n/da.po +++ b/addons/sale_order_dates/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/de.po b/addons/sale_order_dates/i18n/de.po index 9cc3d53700a..75adeb18be8 100644 --- a/addons/sale_order_dates/i18n/de.po +++ b/addons/sale_order_dates/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/el.po b/addons/sale_order_dates/i18n/el.po index 501921b4582..bd9a5637425 100644 --- a/addons/sale_order_dates/i18n/el.po +++ b/addons/sale_order_dates/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es.po b/addons/sale_order_dates/i18n/es.po index a381dcf97a7..3070ac62a68 100644 --- a/addons/sale_order_dates/i18n/es.po +++ b/addons/sale_order_dates/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es_CL.po b/addons/sale_order_dates/i18n/es_CL.po index ecaef0015c6..ef49d0982bc 100644 --- a/addons/sale_order_dates/i18n/es_CL.po +++ b/addons/sale_order_dates/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/es_CR.po b/addons/sale_order_dates/i18n/es_CR.po index b6adcb00c3e..c1890234814 100644 --- a/addons/sale_order_dates/i18n/es_CR.po +++ b/addons/sale_order_dates/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/fi.po b/addons/sale_order_dates/i18n/fi.po index 0ce5dd37e75..dc478810e9b 100644 --- a/addons/sale_order_dates/i18n/fi.po +++ b/addons/sale_order_dates/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/fr.po b/addons/sale_order_dates/i18n/fr.po index 938203d7007..a0cb1df3ca1 100644 --- a/addons/sale_order_dates/i18n/fr.po +++ b/addons/sale_order_dates/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/gl.po b/addons/sale_order_dates/i18n/gl.po index 34db511e866..0f3eeb3957a 100644 --- a/addons/sale_order_dates/i18n/gl.po +++ b/addons/sale_order_dates/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/hr.po b/addons/sale_order_dates/i18n/hr.po index e7727331b95..2433c0339da 100644 --- a/addons/sale_order_dates/i18n/hr.po +++ b/addons/sale_order_dates/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/hu.po b/addons/sale_order_dates/i18n/hu.po index 569511eb4ab..efcfb34c5cb 100644 --- a/addons/sale_order_dates/i18n/hu.po +++ b/addons/sale_order_dates/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/id.po b/addons/sale_order_dates/i18n/id.po index 946280835a0..9be9e10c6c5 100644 --- a/addons/sale_order_dates/i18n/id.po +++ b/addons/sale_order_dates/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/it.po b/addons/sale_order_dates/i18n/it.po index f89efa18269..2fc307d696e 100644 --- a/addons/sale_order_dates/i18n/it.po +++ b/addons/sale_order_dates/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ja.po b/addons/sale_order_dates/i18n/ja.po index 9ceba7b0595..6eb8b9c75b6 100644 --- a/addons/sale_order_dates/i18n/ja.po +++ b/addons/sale_order_dates/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/mk.po b/addons/sale_order_dates/i18n/mk.po index 158ec66af2b..7c1a88ab7ce 100644 --- a/addons/sale_order_dates/i18n/mk.po +++ b/addons/sale_order_dates/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/mn.po b/addons/sale_order_dates/i18n/mn.po index c302227d5dd..027d91b5aac 100644 --- a/addons/sale_order_dates/i18n/mn.po +++ b/addons/sale_order_dates/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/nb.po b/addons/sale_order_dates/i18n/nb.po index 824fc320011..b49e0950ec8 100644 --- a/addons/sale_order_dates/i18n/nb.po +++ b/addons/sale_order_dates/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/nl.po b/addons/sale_order_dates/i18n/nl.po index 2a60a38eaaf..27fb6985e21 100644 --- a/addons/sale_order_dates/i18n/nl.po +++ b/addons/sale_order_dates/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pl.po b/addons/sale_order_dates/i18n/pl.po index 75676c15479..2b1d6e8634e 100644 --- a/addons/sale_order_dates/i18n/pl.po +++ b/addons/sale_order_dates/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pt.po b/addons/sale_order_dates/i18n/pt.po index eee2929b49e..c90a6dbcc20 100644 --- a/addons/sale_order_dates/i18n/pt.po +++ b/addons/sale_order_dates/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/pt_BR.po b/addons/sale_order_dates/i18n/pt_BR.po index 288cb562925..1e4736a9a2d 100644 --- a/addons/sale_order_dates/i18n/pt_BR.po +++ b/addons/sale_order_dates/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ro.po b/addons/sale_order_dates/i18n/ro.po index 1776b0bd4fc..deadbd5de4e 100644 --- a/addons/sale_order_dates/i18n/ro.po +++ b/addons/sale_order_dates/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/ru.po b/addons/sale_order_dates/i18n/ru.po index f63a5f2c085..5be838ddb91 100644 --- a/addons/sale_order_dates/i18n/ru.po +++ b/addons/sale_order_dates/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sk.po b/addons/sale_order_dates/i18n/sk.po index 94f3ac11639..ebc2ddcc438 100644 --- a/addons/sale_order_dates/i18n/sk.po +++ b/addons/sale_order_dates/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sl.po b/addons/sale_order_dates/i18n/sl.po index abfdba15139..f3af59aa2ad 100644 --- a/addons/sale_order_dates/i18n/sl.po +++ b/addons/sale_order_dates/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sr@latin.po b/addons/sale_order_dates/i18n/sr@latin.po index e8a356b561a..cff2d6b0b05 100644 --- a/addons/sale_order_dates/i18n/sr@latin.po +++ b/addons/sale_order_dates/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/sv.po b/addons/sale_order_dates/i18n/sv.po index fc2c152c12d..5f0353e9788 100644 --- a/addons/sale_order_dates/i18n/sv.po +++ b/addons/sale_order_dates/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/tr.po b/addons/sale_order_dates/i18n/tr.po index 9d184df770e..cf22c90f13a 100644 --- a/addons/sale_order_dates/i18n/tr.po +++ b/addons/sale_order_dates/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_order_dates/i18n/zh_CN.po b/addons/sale_order_dates/i18n/zh_CN.po index ba7898a9341..8b8f59e504d 100644 --- a/addons/sale_order_dates/i18n/zh_CN.po +++ b/addons/sale_order_dates/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_order_dates #: view:sale.order:0 diff --git a/addons/sale_stock/i18n/ar.po b/addons/sale_stock/i18n/ar.po index 7ade8b9d268..0683f983eda 100644 --- a/addons/sale_stock/i18n/ar.po +++ b/addons/sale_stock/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/bg.po b/addons/sale_stock/i18n/bg.po index 8417dd03925..8ba700f8ded 100644 --- a/addons/sale_stock/i18n/bg.po +++ b/addons/sale_stock/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/bs.po b/addons/sale_stock/i18n/bs.po index fee5c54ff44..492a39f91a9 100644 --- a/addons/sale_stock/i18n/bs.po +++ b/addons/sale_stock/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ca.po b/addons/sale_stock/i18n/ca.po index c6addf1fa52..2fe6e6f9a98 100644 --- a/addons/sale_stock/i18n/ca.po +++ b/addons/sale_stock/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/cs.po b/addons/sale_stock/i18n/cs.po index d3b0277145d..1feed860e50 100644 --- a/addons/sale_stock/i18n/cs.po +++ b/addons/sale_stock/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/da.po b/addons/sale_stock/i18n/da.po index f84d83b714e..1ef49895d15 100644 --- a/addons/sale_stock/i18n/da.po +++ b/addons/sale_stock/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/de.po b/addons/sale_stock/i18n/de.po index 426629c5ca5..0c73eb05d20 100644 --- a/addons/sale_stock/i18n/de.po +++ b/addons/sale_stock/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/el.po b/addons/sale_stock/i18n/el.po index 7f880b15717..ea8df521d1f 100644 --- a/addons/sale_stock/i18n/el.po +++ b/addons/sale_stock/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/es.po b/addons/sale_stock/i18n/es.po index 2688509de61..f1f247d8b69 100644 --- a/addons/sale_stock/i18n/es.po +++ b/addons/sale_stock/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/et.po b/addons/sale_stock/i18n/et.po index 924e2b81d30..b676a39173a 100644 --- a/addons/sale_stock/i18n/et.po +++ b/addons/sale_stock/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/fi.po b/addons/sale_stock/i18n/fi.po index 0e58a31fd1d..1b50192ad8b 100644 --- a/addons/sale_stock/i18n/fi.po +++ b/addons/sale_stock/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/fr.po b/addons/sale_stock/i18n/fr.po index 5390aa3519a..d95846f950b 100644 --- a/addons/sale_stock/i18n/fr.po +++ b/addons/sale_stock/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/gl.po b/addons/sale_stock/i18n/gl.po index 379bb2b31bd..849948173df 100644 --- a/addons/sale_stock/i18n/gl.po +++ b/addons/sale_stock/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/hr.po b/addons/sale_stock/i18n/hr.po index 7cbf157ca0c..8760152564b 100644 --- a/addons/sale_stock/i18n/hr.po +++ b/addons/sale_stock/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/hu.po b/addons/sale_stock/i18n/hu.po index 31f0ec75055..019259e3d8f 100644 --- a/addons/sale_stock/i18n/hu.po +++ b/addons/sale_stock/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/id.po b/addons/sale_stock/i18n/id.po index f80d1bf002e..3b5030b0d44 100644 --- a/addons/sale_stock/i18n/id.po +++ b/addons/sale_stock/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/is.po b/addons/sale_stock/i18n/is.po index cf2bbe7575d..4b800d22473 100644 --- a/addons/sale_stock/i18n/is.po +++ b/addons/sale_stock/i18n/is.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/it.po b/addons/sale_stock/i18n/it.po index 62f0a81dc36..8968b546699 100644 --- a/addons/sale_stock/i18n/it.po +++ b/addons/sale_stock/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ja.po b/addons/sale_stock/i18n/ja.po index fdf88e58272..568e6c46033 100644 --- a/addons/sale_stock/i18n/ja.po +++ b/addons/sale_stock/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ko.po b/addons/sale_stock/i18n/ko.po index 1571d8d2545..07fff8b3b47 100644 --- a/addons/sale_stock/i18n/ko.po +++ b/addons/sale_stock/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lo.po b/addons/sale_stock/i18n/lo.po index f8abe8b3289..ba648c46c85 100644 --- a/addons/sale_stock/i18n/lo.po +++ b/addons/sale_stock/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lt.po b/addons/sale_stock/i18n/lt.po index 8bafe1f8e2e..be791109973 100644 --- a/addons/sale_stock/i18n/lt.po +++ b/addons/sale_stock/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/lv.po b/addons/sale_stock/i18n/lv.po index 9b359094c8e..ab026ba2cb4 100644 --- a/addons/sale_stock/i18n/lv.po +++ b/addons/sale_stock/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/mk.po b/addons/sale_stock/i18n/mk.po index 7fdc6d2db8a..13be3f4bbcf 100644 --- a/addons/sale_stock/i18n/mk.po +++ b/addons/sale_stock/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: sale_stock diff --git a/addons/sale_stock/i18n/mn.po b/addons/sale_stock/i18n/mn.po index 8d51fe04ae5..e33867b5c92 100644 --- a/addons/sale_stock/i18n/mn.po +++ b/addons/sale_stock/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/nb.po b/addons/sale_stock/i18n/nb.po index 7987674fb42..3779394f56b 100644 --- a/addons/sale_stock/i18n/nb.po +++ b/addons/sale_stock/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/nl.po b/addons/sale_stock/i18n/nl.po index e43ff28f9b8..fea475965f1 100644 --- a/addons/sale_stock/i18n/nl.po +++ b/addons/sale_stock/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/oc.po b/addons/sale_stock/i18n/oc.po index 3cc9edec34c..739798e19c8 100644 --- a/addons/sale_stock/i18n/oc.po +++ b/addons/sale_stock/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pl.po b/addons/sale_stock/i18n/pl.po index 7acb15a16f8..192ece13554 100644 --- a/addons/sale_stock/i18n/pl.po +++ b/addons/sale_stock/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pt.po b/addons/sale_stock/i18n/pt.po index ccedc817fea..9211719b2d4 100644 --- a/addons/sale_stock/i18n/pt.po +++ b/addons/sale_stock/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/pt_BR.po b/addons/sale_stock/i18n/pt_BR.po index 89166ff9465..93369d93eb1 100644 --- a/addons/sale_stock/i18n/pt_BR.po +++ b/addons/sale_stock/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ro.po b/addons/sale_stock/i18n/ro.po index f0563d10bf1..2fc835e95ec 100644 --- a/addons/sale_stock/i18n/ro.po +++ b/addons/sale_stock/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/ru.po b/addons/sale_stock/i18n/ru.po index 746c5635d8c..19d15fc7ad8 100644 --- a/addons/sale_stock/i18n/ru.po +++ b/addons/sale_stock/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sk.po b/addons/sale_stock/i18n/sk.po index 9930a2dec43..5b98a35f219 100644 --- a/addons/sale_stock/i18n/sk.po +++ b/addons/sale_stock/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sl.po b/addons/sale_stock/i18n/sl.po index badd596b7f2..fca4c435891 100644 --- a/addons/sale_stock/i18n/sl.po +++ b/addons/sale_stock/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sq.po b/addons/sale_stock/i18n/sq.po index db39c93b32d..3c7406cbb2e 100644 --- a/addons/sale_stock/i18n/sq.po +++ b/addons/sale_stock/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sr.po b/addons/sale_stock/i18n/sr.po index 9c8cd5dc8b9..60edb7c8916 100644 --- a/addons/sale_stock/i18n/sr.po +++ b/addons/sale_stock/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sr@latin.po b/addons/sale_stock/i18n/sr@latin.po index de0af1e7ba5..b5cbb214620 100644 --- a/addons/sale_stock/i18n/sr@latin.po +++ b/addons/sale_stock/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/sv.po b/addons/sale_stock/i18n/sv.po index d8c7aade44a..c195304721f 100644 --- a/addons/sale_stock/i18n/sv.po +++ b/addons/sale_stock/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/th.po b/addons/sale_stock/i18n/th.po index 6285bb261ee..a4f076ac2f7 100644 --- a/addons/sale_stock/i18n/th.po +++ b/addons/sale_stock/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/tlh.po b/addons/sale_stock/i18n/tlh.po index 1f650acd8fb..384f8db6854 100644 --- a/addons/sale_stock/i18n/tlh.po +++ b/addons/sale_stock/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/tr.po b/addons/sale_stock/i18n/tr.po index 898b5da2033..72172567f5b 100644 --- a/addons/sale_stock/i18n/tr.po +++ b/addons/sale_stock/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/uk.po b/addons/sale_stock/i18n/uk.po index 1706f13b1dd..3f8b0c5ae8d 100644 --- a/addons/sale_stock/i18n/uk.po +++ b/addons/sale_stock/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/vi.po b/addons/sale_stock/i18n/vi.po index c097ab8bf2d..bdb33269ffe 100644 --- a/addons/sale_stock/i18n/vi.po +++ b/addons/sale_stock/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/zh_CN.po b/addons/sale_stock/i18n/zh_CN.po index 43f5ab417e2..71a4f5dd0a6 100644 --- a/addons/sale_stock/i18n/zh_CN.po +++ b/addons/sale_stock/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/sale_stock/i18n/zh_TW.po b/addons/sale_stock/i18n/zh_TW.po index 6e3ac34ce25..016547a8c62 100644 --- a/addons/sale_stock/i18n/zh_TW.po +++ b/addons/sale_stock/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 diff --git a/addons/share/i18n/ar.po b/addons/share/i18n/ar.po index f0f34d12147..c20155690e8 100644 --- a/addons/share/i18n/ar.po +++ b/addons/share/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/bg.po b/addons/share/i18n/bg.po index cc5d8525d6c..9c84ba1b629 100644 --- a/addons/share/i18n/bg.po +++ b/addons/share/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/ca.po b/addons/share/i18n/ca.po index 91ea6f0f5d6..50a3e0f73ee 100644 --- a/addons/share/i18n/ca.po +++ b/addons/share/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/cs.po b/addons/share/i18n/cs.po index e67d6a7adf8..d04f10cd3c7 100644 --- a/addons/share/i18n/cs.po +++ b/addons/share/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:42+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/da.po b/addons/share/i18n/da.po index 25a7c94f1b5..6f4042eabeb 100644 --- a/addons/share/i18n/da.po +++ b/addons/share/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/de.po b/addons/share/i18n/de.po index 14785a66942..ae8bc11e77b 100644 --- a/addons/share/i18n/de.po +++ b/addons/share/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/es.po b/addons/share/i18n/es.po index 351ebc9c06a..fbda940d533 100644 --- a/addons/share/i18n/es.po +++ b/addons/share/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/es_CR.po b/addons/share/i18n/es_CR.po index 716335717af..0e4c9912f14 100644 --- a/addons/share/i18n/es_CR.po +++ b/addons/share/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/et.po b/addons/share/i18n/et.po index c1c3c03c7db..f86230c65b6 100644 --- a/addons/share/i18n/et.po +++ b/addons/share/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/fi.po b/addons/share/i18n/fi.po index 07756930fd4..7cd1693b550 100644 --- a/addons/share/i18n/fi.po +++ b/addons/share/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/fr.po b/addons/share/i18n/fr.po index 04f992017f9..42fde3f64de 100644 --- a/addons/share/i18n/fr.po +++ b/addons/share/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/gl.po b/addons/share/i18n/gl.po index 91eb8e7001a..086e552ba90 100644 --- a/addons/share/i18n/gl.po +++ b/addons/share/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/hr.po b/addons/share/i18n/hr.po index 27c399b17f9..870f3c4e1ee 100644 --- a/addons/share/i18n/hr.po +++ b/addons/share/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/hu.po b/addons/share/i18n/hu.po index 12559c16ed6..b1cb6db4e01 100644 --- a/addons/share/i18n/hu.po +++ b/addons/share/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/it.po b/addons/share/i18n/it.po index 4e0c7d837f5..9e491a05693 100644 --- a/addons/share/i18n/it.po +++ b/addons/share/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/ja.po b/addons/share/i18n/ja.po index d7acb0b72f4..e44c2545c9d 100644 --- a/addons/share/i18n/ja.po +++ b/addons/share/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/mk.po b/addons/share/i18n/mk.po index 1333498f835..7889fc89d3d 100644 --- a/addons/share/i18n/mk.po +++ b/addons/share/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:58+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: share diff --git a/addons/share/i18n/mn.po b/addons/share/i18n/mn.po index 9f1c6a872bf..31a1d76ef32 100644 --- a/addons/share/i18n/mn.po +++ b/addons/share/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/nl.po b/addons/share/i18n/nl.po index 9435bbba3d5..18a0e3e05b9 100644 --- a/addons/share/i18n/nl.po +++ b/addons/share/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/pl.po b/addons/share/i18n/pl.po index ebf48fdb0dc..a9011bb7dfd 100644 --- a/addons/share/i18n/pl.po +++ b/addons/share/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/pt.po b/addons/share/i18n/pt.po index 44e7f4d4e6a..1ec83b8ee2e 100644 --- a/addons/share/i18n/pt.po +++ b/addons/share/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/pt_BR.po b/addons/share/i18n/pt_BR.po index ce58cc392d8..16606efad1b 100644 --- a/addons/share/i18n/pt_BR.po +++ b/addons/share/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/ro.po b/addons/share/i18n/ro.po index 10cfaaf2f6a..34df86aedbe 100644 --- a/addons/share/i18n/ro.po +++ b/addons/share/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/ru.po b/addons/share/i18n/ru.po index 8a2ec3c2bb2..b48de937be2 100644 --- a/addons/share/i18n/ru.po +++ b/addons/share/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/sl.po b/addons/share/i18n/sl.po index cf7be48db6d..6aaa8699865 100644 --- a/addons/share/i18n/sl.po +++ b/addons/share/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/sv.po b/addons/share/i18n/sv.po index 79e9280479b..1ca671fbf65 100644 --- a/addons/share/i18n/sv.po +++ b/addons/share/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/tr.po b/addons/share/i18n/tr.po index c4f202e911a..d944a56a0e9 100644 --- a/addons/share/i18n/tr.po +++ b/addons/share/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/share/i18n/zh_CN.po b/addons/share/i18n/zh_CN.po index a13a189baa0..f6035cc2302 100644 --- a/addons/share/i18n/zh_CN.po +++ b/addons/share/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: share #: code:addons/share/wizard/share_wizard.py:841 diff --git a/addons/stock/i18n/ar.po b/addons/stock/i18n/ar.po index fc6b5bddf52..15c84176f6e 100644 --- a/addons/stock/i18n/ar.po +++ b/addons/stock/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/bg.po b/addons/stock/i18n/bg.po index dd9e05fdb43..f524dae8f45 100644 --- a/addons/stock/i18n/bg.po +++ b/addons/stock/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/bs.po b/addons/stock/i18n/bs.po index 3b048dd6915..9b7bf372fc7 100644 --- a/addons/stock/i18n/bs.po +++ b/addons/stock/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ca.po b/addons/stock/i18n/ca.po index cf019faf2d7..5a363c6f677 100644 --- a/addons/stock/i18n/ca.po +++ b/addons/stock/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/cs.po b/addons/stock/i18n/cs.po index 4054b92bb0e..d03f6803baf 100644 --- a/addons/stock/i18n/cs.po +++ b/addons/stock/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/da.po b/addons/stock/i18n/da.po index cabecb943d6..2fff176781c 100644 --- a/addons/stock/i18n/da.po +++ b/addons/stock/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/de.po b/addons/stock/i18n/de.po index 837a5af2741..bb0cbaab1ab 100644 --- a/addons/stock/i18n/de.po +++ b/addons/stock/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/el.po b/addons/stock/i18n/el.po index 53d4746b89a..21c815d390e 100644 --- a/addons/stock/i18n/el.po +++ b/addons/stock/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es.po b/addons/stock/i18n/es.po index 589ee7f0db9..24d7cad8c0e 100644 --- a/addons/stock/i18n/es.po +++ b/addons/stock/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_AR.po b/addons/stock/i18n/es_AR.po index 567ee99e0ae..8e4f5fa3bde 100644 --- a/addons/stock/i18n/es_AR.po +++ b/addons/stock/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_CL.po b/addons/stock/i18n/es_CL.po index 0fc851d199d..33a947f67f2 100644 --- a/addons/stock/i18n/es_CL.po +++ b/addons/stock/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_CR.po b/addons/stock/i18n/es_CR.po index 048090cadbd..4b64adee338 100644 --- a/addons/stock/i18n/es_CR.po +++ b/addons/stock/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_DO.po b/addons/stock/i18n/es_DO.po index d7e34fbf212..bcd21557654 100644 --- a/addons/stock/i18n/es_DO.po +++ b/addons/stock/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_EC.po b/addons/stock/i18n/es_EC.po index d752099a7ed..dd2b8c258df 100644 --- a/addons/stock/i18n/es_EC.po +++ b/addons/stock/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_MX.po b/addons/stock/i18n/es_MX.po index e492707324a..cc5a7819a30 100644 --- a/addons/stock/i18n/es_MX.po +++ b/addons/stock/i18n/es_MX.po @@ -15,8 +15,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/es_VE.po b/addons/stock/i18n/es_VE.po index de6dfaed024..d1e15eafbd0 100644 --- a/addons/stock/i18n/es_VE.po +++ b/addons/stock/i18n/es_VE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/et.po b/addons/stock/i18n/et.po index 210b35a514d..46ec97cb9fa 100644 --- a/addons/stock/i18n/et.po +++ b/addons/stock/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/fi.po b/addons/stock/i18n/fi.po index 0f37d01e5a5..26059eb6814 100644 --- a/addons/stock/i18n/fi.po +++ b/addons/stock/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/fr.po b/addons/stock/i18n/fr.po index 927c0db5101..55b7369ec20 100644 --- a/addons/stock/i18n/fr.po +++ b/addons/stock/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/gl.po b/addons/stock/i18n/gl.po index 366cee06665..0046666b2cb 100644 --- a/addons/stock/i18n/gl.po +++ b/addons/stock/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/hr.po b/addons/stock/i18n/hr.po index 6b3d3e139b9..c5d2c2a82bf 100644 --- a/addons/stock/i18n/hr.po +++ b/addons/stock/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/hu.po b/addons/stock/i18n/hu.po index 2c1c51c855f..13d02dd9473 100644 --- a/addons/stock/i18n/hu.po +++ b/addons/stock/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: view:stock.inventory:0 diff --git a/addons/stock/i18n/id.po b/addons/stock/i18n/id.po index 11823ff48a9..91683552d40 100644 --- a/addons/stock/i18n/id.po +++ b/addons/stock/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/it.po b/addons/stock/i18n/it.po index 73448401684..771f3cbfa54 100644 --- a/addons/stock/i18n/it.po +++ b/addons/stock/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ja.po b/addons/stock/i18n/ja.po index efdbeda7192..7c0a65e38e8 100644 --- a/addons/stock/i18n/ja.po +++ b/addons/stock/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ko.po b/addons/stock/i18n/ko.po index 093368ab4c1..a1ee47b6f83 100644 --- a/addons/stock/i18n/ko.po +++ b/addons/stock/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/lt.po b/addons/stock/i18n/lt.po index beede6c065f..f39b2f32f08 100644 --- a/addons/stock/i18n/lt.po +++ b/addons/stock/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/lv.po b/addons/stock/i18n/lv.po index cf26fdd33e1..499bc6c139d 100644 --- a/addons/stock/i18n/lv.po +++ b/addons/stock/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/mk.po b/addons/stock/i18n/mk.po index f0554c07b4f..56d23546533 100644 --- a/addons/stock/i18n/mk.po +++ b/addons/stock/i18n/mk.po @@ -16,8 +16,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: stock diff --git a/addons/stock/i18n/mn.po b/addons/stock/i18n/mn.po index 7196766a872..283ce033160 100644 --- a/addons/stock/i18n/mn.po +++ b/addons/stock/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-14 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nb.po b/addons/stock/i18n/nb.po index 362502b7e86..cf0d2ba0bad 100644 --- a/addons/stock/i18n/nb.po +++ b/addons/stock/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nl.po b/addons/stock/i18n/nl.po index 83dfe3f284f..ad87cc1eab6 100644 --- a/addons/stock/i18n/nl.po +++ b/addons/stock/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 06:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/nl_BE.po b/addons/stock/i18n/nl_BE.po index 7a30776ca92..121e5816820 100644 --- a/addons/stock/i18n/nl_BE.po +++ b/addons/stock/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pl.po b/addons/stock/i18n/pl.po index 3d32d4e606e..fd4921c8885 100644 --- a/addons/stock/i18n/pl.po +++ b/addons/stock/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pt.po b/addons/stock/i18n/pt.po index da77390cabe..61576ed4ef4 100644 --- a/addons/stock/i18n/pt.po +++ b/addons/stock/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/pt_BR.po b/addons/stock/i18n/pt_BR.po index 6dbbd3ff781..3ac957f9394 100644 --- a/addons/stock/i18n/pt_BR.po +++ b/addons/stock/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ro.po b/addons/stock/i18n/ro.po index a64dec8a39c..533fa3578fe 100644 --- a/addons/stock/i18n/ro.po +++ b/addons/stock/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/ru.po b/addons/stock/i18n/ru.po index 17437da3991..1faa3474e29 100644 --- a/addons/stock/i18n/ru.po +++ b/addons/stock/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index f4d75fb3f43..04ba8bdebb7 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sq.po b/addons/stock/i18n/sq.po index eab1ddde826..0f6377c2b62 100644 --- a/addons/stock/i18n/sq.po +++ b/addons/stock/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:02+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sr.po b/addons/stock/i18n/sr.po index f20f93fe14d..62073629341 100644 --- a/addons/stock/i18n/sr.po +++ b/addons/stock/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sr@latin.po b/addons/stock/i18n/sr@latin.po index 955aa609a36..b79a6e331e5 100644 --- a/addons/stock/i18n/sr@latin.po +++ b/addons/stock/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/sv.po b/addons/stock/i18n/sv.po index 7193785117b..4cc24b6feb8 100644 --- a/addons/stock/i18n/sv.po +++ b/addons/stock/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/th.po b/addons/stock/i18n/th.po index a167db7d0db..aaaec62e56c 100644 --- a/addons/stock/i18n/th.po +++ b/addons/stock/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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 06:03+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/tlh.po b/addons/stock/i18n/tlh.po index ee9a9a09bf3..3c45912a79e 100644 --- a/addons/stock/i18n/tlh.po +++ b/addons/stock/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index 4a98108a16f..e49e94eb52c 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-27 05:41+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/uk.po b/addons/stock/i18n/uk.po index a55edc882ec..33e424229b6 100644 --- a/addons/stock/i18n/uk.po +++ b/addons/stock/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/vi.po b/addons/stock/i18n/vi.po index 8ddb6dd0a14..01093aa58b7 100644 --- a/addons/stock/i18n/vi.po +++ b/addons/stock/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/zh_CN.po b/addons/stock/i18n/zh_CN.po index a2ad2d6acae..088d3a13278 100644 --- a/addons/stock/i18n/zh_CN.po +++ b/addons/stock/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-22 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock/i18n/zh_TW.po b/addons/stock/i18n/zh_TW.po index 5d702f8d449..8f6b04cff54 100644 --- a/addons/stock/i18n/zh_TW.po +++ b/addons/stock/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 diff --git a/addons/stock_invoice_directly/i18n/ar.po b/addons/stock_invoice_directly/i18n/ar.po index d6841a72d5c..aedbf32e451 100644 --- a/addons/stock_invoice_directly/i18n/ar.po +++ b/addons/stock_invoice_directly/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/bg.po b/addons/stock_invoice_directly/i18n/bg.po index 7d500384b6b..ac7730bd78c 100644 --- a/addons/stock_invoice_directly/i18n/bg.po +++ b/addons/stock_invoice_directly/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/bs.po b/addons/stock_invoice_directly/i18n/bs.po index 5227cdef7f7..ebaa891f1bf 100644 --- a/addons/stock_invoice_directly/i18n/bs.po +++ b/addons/stock_invoice_directly/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ca.po b/addons/stock_invoice_directly/i18n/ca.po index 634e7d4958c..0b6067c3496 100644 --- a/addons/stock_invoice_directly/i18n/ca.po +++ b/addons/stock_invoice_directly/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/cs.po b/addons/stock_invoice_directly/i18n/cs.po index e506b7060c6..2a0aeb9a040 100644 --- a/addons/stock_invoice_directly/i18n/cs.po +++ b/addons/stock_invoice_directly/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/da.po b/addons/stock_invoice_directly/i18n/da.po index 4394ace6a3d..f71ce929208 100644 --- a/addons/stock_invoice_directly/i18n/da.po +++ b/addons/stock_invoice_directly/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/de.po b/addons/stock_invoice_directly/i18n/de.po index 0fe90b6f5ff..ca87c5034dc 100644 --- a/addons/stock_invoice_directly/i18n/de.po +++ b/addons/stock_invoice_directly/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/el.po b/addons/stock_invoice_directly/i18n/el.po index d8f55d28dc2..aaa1150dcb5 100644 --- a/addons/stock_invoice_directly/i18n/el.po +++ b/addons/stock_invoice_directly/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es.po b/addons/stock_invoice_directly/i18n/es.po index 47f17f1effe..8ddfd4c66a3 100644 --- a/addons/stock_invoice_directly/i18n/es.po +++ b/addons/stock_invoice_directly/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_AR.po b/addons/stock_invoice_directly/i18n/es_AR.po index 88216149648..5446e7e352c 100644 --- a/addons/stock_invoice_directly/i18n/es_AR.po +++ b/addons/stock_invoice_directly/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_CL.po b/addons/stock_invoice_directly/i18n/es_CL.po index 21e3775f94b..0d75136ba6e 100644 --- a/addons/stock_invoice_directly/i18n/es_CL.po +++ b/addons/stock_invoice_directly/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/es_CR.po b/addons/stock_invoice_directly/i18n/es_CR.po index 8fea4b9bf29..8201e357023 100644 --- a/addons/stock_invoice_directly/i18n/es_CR.po +++ b/addons/stock_invoice_directly/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/et.po b/addons/stock_invoice_directly/i18n/et.po index 3c750e2f98d..e4c2ce89b3c 100644 --- a/addons/stock_invoice_directly/i18n/et.po +++ b/addons/stock_invoice_directly/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/fi.po b/addons/stock_invoice_directly/i18n/fi.po index 225dd434630..016e6406e52 100644 --- a/addons/stock_invoice_directly/i18n/fi.po +++ b/addons/stock_invoice_directly/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/fr.po b/addons/stock_invoice_directly/i18n/fr.po index 44b1218e3f9..3effa9ff6eb 100644 --- a/addons/stock_invoice_directly/i18n/fr.po +++ b/addons/stock_invoice_directly/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/gl.po b/addons/stock_invoice_directly/i18n/gl.po index 422e2e1ec21..00a1760dbe0 100644 --- a/addons/stock_invoice_directly/i18n/gl.po +++ b/addons/stock_invoice_directly/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/hr.po b/addons/stock_invoice_directly/i18n/hr.po index 0c18c6d0ff4..983e60a25ce 100644 --- a/addons/stock_invoice_directly/i18n/hr.po +++ b/addons/stock_invoice_directly/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/hu.po b/addons/stock_invoice_directly/i18n/hu.po index 7ae70613400..1e943a52e60 100644 --- a/addons/stock_invoice_directly/i18n/hu.po +++ b/addons/stock_invoice_directly/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/id.po b/addons/stock_invoice_directly/i18n/id.po index cca2f666e96..c1c693c117a 100644 --- a/addons/stock_invoice_directly/i18n/id.po +++ b/addons/stock_invoice_directly/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/it.po b/addons/stock_invoice_directly/i18n/it.po index 9dbd07675a9..44de83488b6 100644 --- a/addons/stock_invoice_directly/i18n/it.po +++ b/addons/stock_invoice_directly/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ja.po b/addons/stock_invoice_directly/i18n/ja.po index 4d8bd3c468a..5d0429385a2 100644 --- a/addons/stock_invoice_directly/i18n/ja.po +++ b/addons/stock_invoice_directly/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ko.po b/addons/stock_invoice_directly/i18n/ko.po index 1a314742f3f..22f1ee943ea 100644 --- a/addons/stock_invoice_directly/i18n/ko.po +++ b/addons/stock_invoice_directly/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/lt.po b/addons/stock_invoice_directly/i18n/lt.po index 27909978d19..d16073e47c0 100644 --- a/addons/stock_invoice_directly/i18n/lt.po +++ b/addons/stock_invoice_directly/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/lv.po b/addons/stock_invoice_directly/i18n/lv.po index 720330c454e..bcceac47ff3 100644 --- a/addons/stock_invoice_directly/i18n/lv.po +++ b/addons/stock_invoice_directly/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/mk.po b/addons/stock_invoice_directly/i18n/mk.po index cd858d0466b..751e6cfc42f 100644 --- a/addons/stock_invoice_directly/i18n/mk.po +++ b/addons/stock_invoice_directly/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/mn.po b/addons/stock_invoice_directly/i18n/mn.po index 6bc77001684..74346a64073 100644 --- a/addons/stock_invoice_directly/i18n/mn.po +++ b/addons/stock_invoice_directly/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nb.po b/addons/stock_invoice_directly/i18n/nb.po index cc55c9b486d..836cc1a9e26 100644 --- a/addons/stock_invoice_directly/i18n/nb.po +++ b/addons/stock_invoice_directly/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nl.po b/addons/stock_invoice_directly/i18n/nl.po index 4b4414bda44..2e1ca9b4f03 100644 --- a/addons/stock_invoice_directly/i18n/nl.po +++ b/addons/stock_invoice_directly/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/nl_BE.po b/addons/stock_invoice_directly/i18n/nl_BE.po index 1d014d4d2da..1e2c4146f82 100644 --- a/addons/stock_invoice_directly/i18n/nl_BE.po +++ b/addons/stock_invoice_directly/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/oc.po b/addons/stock_invoice_directly/i18n/oc.po index 4829157c6e0..59d29f3d74c 100644 --- a/addons/stock_invoice_directly/i18n/oc.po +++ b/addons/stock_invoice_directly/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pl.po b/addons/stock_invoice_directly/i18n/pl.po index a7429a69c96..111dea85521 100644 --- a/addons/stock_invoice_directly/i18n/pl.po +++ b/addons/stock_invoice_directly/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pt.po b/addons/stock_invoice_directly/i18n/pt.po index 7e2e34c8fa2..198ded7ec7e 100644 --- a/addons/stock_invoice_directly/i18n/pt.po +++ b/addons/stock_invoice_directly/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/pt_BR.po b/addons/stock_invoice_directly/i18n/pt_BR.po index 890c5fa8d63..4b2f81f9c8d 100644 --- a/addons/stock_invoice_directly/i18n/pt_BR.po +++ b/addons/stock_invoice_directly/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ro.po b/addons/stock_invoice_directly/i18n/ro.po index a164eef5bac..b0776ad5b01 100644 --- a/addons/stock_invoice_directly/i18n/ro.po +++ b/addons/stock_invoice_directly/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/ru.po b/addons/stock_invoice_directly/i18n/ru.po index a10746c3106..e06b9dff46f 100644 --- a/addons/stock_invoice_directly/i18n/ru.po +++ b/addons/stock_invoice_directly/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sl.po b/addons/stock_invoice_directly/i18n/sl.po index b2aa597ffea..fabf38993ae 100644 --- a/addons/stock_invoice_directly/i18n/sl.po +++ b/addons/stock_invoice_directly/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sq.po b/addons/stock_invoice_directly/i18n/sq.po index ebb05690c85..b7e965d96d2 100644 --- a/addons/stock_invoice_directly/i18n/sq.po +++ b/addons/stock_invoice_directly/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sr.po b/addons/stock_invoice_directly/i18n/sr.po index 899ebbc503e..b10d76bcbd3 100644 --- a/addons/stock_invoice_directly/i18n/sr.po +++ b/addons/stock_invoice_directly/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sr@latin.po b/addons/stock_invoice_directly/i18n/sr@latin.po index 0a4a2272c52..42af0d46526 100644 --- a/addons/stock_invoice_directly/i18n/sr@latin.po +++ b/addons/stock_invoice_directly/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/sv.po b/addons/stock_invoice_directly/i18n/sv.po index b2a48dd64cf..deb9e393e99 100644 --- a/addons/stock_invoice_directly/i18n/sv.po +++ b/addons/stock_invoice_directly/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/tr.po b/addons/stock_invoice_directly/i18n/tr.po index 700f1a2b9c9..a4ff14b15f5 100644 --- a/addons/stock_invoice_directly/i18n/tr.po +++ b/addons/stock_invoice_directly/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/uk.po b/addons/stock_invoice_directly/i18n/uk.po index 7f5c2fa31f9..e7ca0566b5a 100644 --- a/addons/stock_invoice_directly/i18n/uk.po +++ b/addons/stock_invoice_directly/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/vi.po b/addons/stock_invoice_directly/i18n/vi.po index a0e85606388..68b719ee90c 100644 --- a/addons/stock_invoice_directly/i18n/vi.po +++ b/addons/stock_invoice_directly/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/zh_CN.po b/addons/stock_invoice_directly/i18n/zh_CN.po index 6aa4f4c3a26..3513c028b5f 100644 --- a/addons/stock_invoice_directly/i18n/zh_CN.po +++ b/addons/stock_invoice_directly/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_invoice_directly/i18n/zh_TW.po b/addons/stock_invoice_directly/i18n/zh_TW.po index 3f5a0fbf234..60be395d98d 100644 --- a/addons/stock_invoice_directly/i18n/zh_TW.po +++ b/addons/stock_invoice_directly/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_invoice_directly #: model:ir.model,name:stock_invoice_directly.model_stock_partial_picking diff --git a/addons/stock_location/i18n/ar.po b/addons/stock_location/i18n/ar.po index 58d6cc59655..e3179c61a7a 100644 --- a/addons/stock_location/i18n/ar.po +++ b/addons/stock_location/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/bg.po b/addons/stock_location/i18n/bg.po index 006a6412a8f..70f0dc2c54b 100644 --- a/addons/stock_location/i18n/bg.po +++ b/addons/stock_location/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/bs.po b/addons/stock_location/i18n/bs.po index 81b2ee44602..242e21ff1be 100644 --- a/addons/stock_location/i18n/bs.po +++ b/addons/stock_location/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ca.po b/addons/stock_location/i18n/ca.po index a4e40b7c748..42e72ab97e8 100644 --- a/addons/stock_location/i18n/ca.po +++ b/addons/stock_location/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/cs.po b/addons/stock_location/i18n/cs.po index 147004171fc..b953c05b2f0 100644 --- a/addons/stock_location/i18n/cs.po +++ b/addons/stock_location/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/da.po b/addons/stock_location/i18n/da.po index 12968d07571..a266c1aba31 100644 --- a/addons/stock_location/i18n/da.po +++ b/addons/stock_location/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/de.po b/addons/stock_location/i18n/de.po index 290f6132571..d46669e4ff9 100644 --- a/addons/stock_location/i18n/de.po +++ b/addons/stock_location/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/el.po b/addons/stock_location/i18n/el.po index 9525f5b2767..ea22ab97da9 100644 --- a/addons/stock_location/i18n/el.po +++ b/addons/stock_location/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock_location/i18n/es.po b/addons/stock_location/i18n/es.po index 77e05d25ee4..c8bb446d849 100644 --- a/addons/stock_location/i18n/es.po +++ b/addons/stock_location/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_AR.po b/addons/stock_location/i18n/es_AR.po index ee8bc4a4586..386fd06d9ab 100644 --- a/addons/stock_location/i18n/es_AR.po +++ b/addons/stock_location/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_CL.po b/addons/stock_location/i18n/es_CL.po index 3d9b562b2b6..6bed05e6107 100644 --- a/addons/stock_location/i18n/es_CL.po +++ b/addons/stock_location/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/es_CR.po b/addons/stock_location/i18n/es_CR.po index fdd2fda14db..a03a6795f70 100644 --- a/addons/stock_location/i18n/es_CR.po +++ b/addons/stock_location/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/et.po b/addons/stock_location/i18n/et.po index c2d89b56f49..0022934dbdb 100644 --- a/addons/stock_location/i18n/et.po +++ b/addons/stock_location/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/fi.po b/addons/stock_location/i18n/fi.po index 24de7c53ab1..70529a1ef47 100644 --- a/addons/stock_location/i18n/fi.po +++ b/addons/stock_location/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/fr.po b/addons/stock_location/i18n/fr.po index 7abbf926458..b002008763a 100644 --- a/addons/stock_location/i18n/fr.po +++ b/addons/stock_location/i18n/fr.po @@ -13,13 +13,15 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 msgid "Is used to know to which company the pickings and moves belong." msgstr "" +"Est utilisé pour savoir à quelle société appartiennent les opérations de " +"manutention et les mouvements." #. module: stock_location #: selection:product.pulled.flow,picking_type:0 @@ -199,7 +201,7 @@ msgstr "Production sur stock" #: code:addons/stock_location/procurement_pull.py:118 #, python-format msgid "Pulled from another location." -msgstr "" +msgstr "Tiré à partir d'un autre emplacement." #. module: stock_location #: field:product.pulled.flow,partner_address_id:0 @@ -325,12 +327,12 @@ msgstr "" #. module: stock_location #: view:product.product:0 msgid "Push Flow" -msgstr "" +msgstr "Flux poussé" #. module: stock_location #: view:product.product:0 msgid "Pull Flow" -msgstr "" +msgstr "Flux tiré" #. module: stock_location #: model:ir.model,name:stock_location.model_procurement_order diff --git a/addons/stock_location/i18n/gl.po b/addons/stock_location/i18n/gl.po index 3fd6017b090..a30d0282297 100644 --- a/addons/stock_location/i18n/gl.po +++ b/addons/stock_location/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/hr.po b/addons/stock_location/i18n/hr.po index 5c437680192..c5612494e7f 100644 --- a/addons/stock_location/i18n/hr.po +++ b/addons/stock_location/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/hu.po b/addons/stock_location/i18n/hu.po index 0a6da8be187..ebe402fa25f 100644 --- a/addons/stock_location/i18n/hu.po +++ b/addons/stock_location/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/id.po b/addons/stock_location/i18n/id.po index c7af6ed8814..c5f91818e27 100644 --- a/addons/stock_location/i18n/id.po +++ b/addons/stock_location/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/it.po b/addons/stock_location/i18n/it.po index 2e704b0d7e8..44e6412fff4 100644 --- a/addons/stock_location/i18n/it.po +++ b/addons/stock_location/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ja.po b/addons/stock_location/i18n/ja.po index 16011169947..7f2973b827d 100644 --- a/addons/stock_location/i18n/ja.po +++ b/addons/stock_location/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ko.po b/addons/stock_location/i18n/ko.po index 800a25dd433..5515f4eb146 100644 --- a/addons/stock_location/i18n/ko.po +++ b/addons/stock_location/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/lt.po b/addons/stock_location/i18n/lt.po index c98ab687fa8..33fb4076b20 100644 --- a/addons/stock_location/i18n/lt.po +++ b/addons/stock_location/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/lv.po b/addons/stock_location/i18n/lv.po index 965e56f41b2..de804b5eedb 100644 --- a/addons/stock_location/i18n/lv.po +++ b/addons/stock_location/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/mk.po b/addons/stock_location/i18n/mk.po index abd5fd98cd2..04f1f47e1d1 100644 --- a/addons/stock_location/i18n/mk.po +++ b/addons/stock_location/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/mn.po b/addons/stock_location/i18n/mn.po index edc5036c27e..10b2d9736ef 100644 --- a/addons/stock_location/i18n/mn.po +++ b/addons/stock_location/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nb.po b/addons/stock_location/i18n/nb.po index 4876ed5bd5a..942bbede9b9 100644 --- a/addons/stock_location/i18n/nb.po +++ b/addons/stock_location/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nl.po b/addons/stock_location/i18n/nl.po index 2b409eec102..6c8befaf760 100644 --- a/addons/stock_location/i18n/nl.po +++ b/addons/stock_location/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/nl_BE.po b/addons/stock_location/i18n/nl_BE.po index 5d1a0d66d28..26fcbfc5faf 100644 --- a/addons/stock_location/i18n/nl_BE.po +++ b/addons/stock_location/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pl.po b/addons/stock_location/i18n/pl.po index d9f10c7634b..4c9c42255fa 100644 --- a/addons/stock_location/i18n/pl.po +++ b/addons/stock_location/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pt.po b/addons/stock_location/i18n/pt.po index 7e918c11261..3a87bed3520 100644 --- a/addons/stock_location/i18n/pt.po +++ b/addons/stock_location/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/pt_BR.po b/addons/stock_location/i18n/pt_BR.po index 83d56fe29b9..61ae114089e 100644 --- a/addons/stock_location/i18n/pt_BR.po +++ b/addons/stock_location/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ro.po b/addons/stock_location/i18n/ro.po index 65db47c3e59..a300deb0b11 100644 --- a/addons/stock_location/i18n/ro.po +++ b/addons/stock_location/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/ru.po b/addons/stock_location/i18n/ru.po index 0159f04aa43..d23022166b5 100644 --- a/addons/stock_location/i18n/ru.po +++ b/addons/stock_location/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sl.po b/addons/stock_location/i18n/sl.po index ab186122457..a0f41b3f729 100644 --- a/addons/stock_location/i18n/sl.po +++ b/addons/stock_location/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sq.po b/addons/stock_location/i18n/sq.po index 66155c6cb7c..c7cdf673d1c 100644 --- a/addons/stock_location/i18n/sq.po +++ b/addons/stock_location/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:03+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/sv.po b/addons/stock_location/i18n/sv.po index 93bdf8af628..6bda02d89ba 100644 --- a/addons/stock_location/i18n/sv.po +++ b/addons/stock_location/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/tlh.po b/addons/stock_location/i18n/tlh.po index 3def4704023..18d0685420b 100644 --- a/addons/stock_location/i18n/tlh.po +++ b/addons/stock_location/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/tr.po b/addons/stock_location/i18n/tr.po index e02bee1b4ba..bf01390ed6a 100644 --- a/addons/stock_location/i18n/tr.po +++ b/addons/stock_location/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/uk.po b/addons/stock_location/i18n/uk.po index 12157bac6dc..4d6850d48f0 100644 --- a/addons/stock_location/i18n/uk.po +++ b/addons/stock_location/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/vi.po b/addons/stock_location/i18n/vi.po index 1d41539cf49..20974986293 100644 --- a/addons/stock_location/i18n/vi.po +++ b/addons/stock_location/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/zh_CN.po b/addons/stock_location/i18n/zh_CN.po index 6ef56c57201..ccf186ad1a0 100644 --- a/addons/stock_location/i18n/zh_CN.po +++ b/addons/stock_location/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_location/i18n/zh_TW.po b/addons/stock_location/i18n/zh_TW.po index c7c173af716..b203f270000 100644 --- a/addons/stock_location/i18n/zh_TW.po +++ b/addons/stock_location/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 diff --git a/addons/stock_no_autopicking/i18n/ar.po b/addons/stock_no_autopicking/i18n/ar.po index a5cda7e6fd3..095e5d77424 100644 --- a/addons/stock_no_autopicking/i18n/ar.po +++ b/addons/stock_no_autopicking/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/bg.po b/addons/stock_no_autopicking/i18n/bg.po index 16e9ab284ae..0ee397eedfb 100644 --- a/addons/stock_no_autopicking/i18n/bg.po +++ b/addons/stock_no_autopicking/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/bs.po b/addons/stock_no_autopicking/i18n/bs.po index b986ec8cb45..0b0b791f4d8 100644 --- a/addons/stock_no_autopicking/i18n/bs.po +++ b/addons/stock_no_autopicking/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ca.po b/addons/stock_no_autopicking/i18n/ca.po index 598e6681f1f..5abf02521ec 100644 --- a/addons/stock_no_autopicking/i18n/ca.po +++ b/addons/stock_no_autopicking/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/cs.po b/addons/stock_no_autopicking/i18n/cs.po index 8e9aa2f7201..8b1772c122c 100644 --- a/addons/stock_no_autopicking/i18n/cs.po +++ b/addons/stock_no_autopicking/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/da.po b/addons/stock_no_autopicking/i18n/da.po index fb2064191da..2a2e5c25f11 100644 --- a/addons/stock_no_autopicking/i18n/da.po +++ b/addons/stock_no_autopicking/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/de.po b/addons/stock_no_autopicking/i18n/de.po index d227b687de8..3509994de9d 100644 --- a/addons/stock_no_autopicking/i18n/de.po +++ b/addons/stock_no_autopicking/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/el.po b/addons/stock_no_autopicking/i18n/el.po index 359813f4d83..d94d95a3f10 100644 --- a/addons/stock_no_autopicking/i18n/el.po +++ b/addons/stock_no_autopicking/i18n/el.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/stock_no_autopicking/i18n/es.po b/addons/stock_no_autopicking/i18n/es.po index f5e0534c611..6d53c585053 100644 --- a/addons/stock_no_autopicking/i18n/es.po +++ b/addons/stock_no_autopicking/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_AR.po b/addons/stock_no_autopicking/i18n/es_AR.po index ea7eff730ef..81f4ce8b8de 100644 --- a/addons/stock_no_autopicking/i18n/es_AR.po +++ b/addons/stock_no_autopicking/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_CL.po b/addons/stock_no_autopicking/i18n/es_CL.po index 42c4309871c..05f6266c616 100644 --- a/addons/stock_no_autopicking/i18n/es_CL.po +++ b/addons/stock_no_autopicking/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/es_CR.po b/addons/stock_no_autopicking/i18n/es_CR.po index d43110b6f39..38fe5dc50e4 100644 --- a/addons/stock_no_autopicking/i18n/es_CR.po +++ b/addons/stock_no_autopicking/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/et.po b/addons/stock_no_autopicking/i18n/et.po index 86a882d2209..f1bfccc01e1 100644 --- a/addons/stock_no_autopicking/i18n/et.po +++ b/addons/stock_no_autopicking/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/fi.po b/addons/stock_no_autopicking/i18n/fi.po index 0a2945069f3..ad7d32d1a3c 100644 --- a/addons/stock_no_autopicking/i18n/fi.po +++ b/addons/stock_no_autopicking/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/fr.po b/addons/stock_no_autopicking/i18n/fr.po index 1c45785c104..b3c3d750ce9 100644 --- a/addons/stock_no_autopicking/i18n/fr.po +++ b/addons/stock_no_autopicking/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/gl.po b/addons/stock_no_autopicking/i18n/gl.po index f3b0cceffda..236e2cf69f3 100644 --- a/addons/stock_no_autopicking/i18n/gl.po +++ b/addons/stock_no_autopicking/i18n/gl.po @@ -15,8 +15,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/hr.po b/addons/stock_no_autopicking/i18n/hr.po index 256a0a894e5..0c15a72b5d2 100644 --- a/addons/stock_no_autopicking/i18n/hr.po +++ b/addons/stock_no_autopicking/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/hu.po b/addons/stock_no_autopicking/i18n/hu.po index 94f7bf5a973..e56c4f7a7ec 100644 --- a/addons/stock_no_autopicking/i18n/hu.po +++ b/addons/stock_no_autopicking/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/id.po b/addons/stock_no_autopicking/i18n/id.po index 890162dd0d9..6c70d8b6e2c 100644 --- a/addons/stock_no_autopicking/i18n/id.po +++ b/addons/stock_no_autopicking/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/it.po b/addons/stock_no_autopicking/i18n/it.po index 86f6b5e4a54..90e3bf014ae 100644 --- a/addons/stock_no_autopicking/i18n/it.po +++ b/addons/stock_no_autopicking/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ja.po b/addons/stock_no_autopicking/i18n/ja.po index 2ebd587d67d..0e4b913a749 100644 --- a/addons/stock_no_autopicking/i18n/ja.po +++ b/addons/stock_no_autopicking/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ko.po b/addons/stock_no_autopicking/i18n/ko.po index e70ae5b0246..3a31f4dd724 100644 --- a/addons/stock_no_autopicking/i18n/ko.po +++ b/addons/stock_no_autopicking/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/lt.po b/addons/stock_no_autopicking/i18n/lt.po index 33292faddb7..cb8193d1cd8 100644 --- a/addons/stock_no_autopicking/i18n/lt.po +++ b/addons/stock_no_autopicking/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/lv.po b/addons/stock_no_autopicking/i18n/lv.po index 89bb4174b6e..8b324f0fae8 100644 --- a/addons/stock_no_autopicking/i18n/lv.po +++ b/addons/stock_no_autopicking/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/mk.po b/addons/stock_no_autopicking/i18n/mk.po index c7188353650..febc8a7f151 100644 --- a/addons/stock_no_autopicking/i18n/mk.po +++ b/addons/stock_no_autopicking/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/mn.po b/addons/stock_no_autopicking/i18n/mn.po index cd4a96daad7..87d84b111f2 100644 --- a/addons/stock_no_autopicking/i18n/mn.po +++ b/addons/stock_no_autopicking/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/nl.po b/addons/stock_no_autopicking/i18n/nl.po index 2625790e21d..734f1b778cd 100644 --- a/addons/stock_no_autopicking/i18n/nl.po +++ b/addons/stock_no_autopicking/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/nl_BE.po b/addons/stock_no_autopicking/i18n/nl_BE.po index 487ae6cb083..0aa2e6a5887 100644 --- a/addons/stock_no_autopicking/i18n/nl_BE.po +++ b/addons/stock_no_autopicking/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/oc.po b/addons/stock_no_autopicking/i18n/oc.po index 98240997afa..b29e4d15f25 100644 --- a/addons/stock_no_autopicking/i18n/oc.po +++ b/addons/stock_no_autopicking/i18n/oc.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pl.po b/addons/stock_no_autopicking/i18n/pl.po index b20c58f6f31..f8864d25c06 100644 --- a/addons/stock_no_autopicking/i18n/pl.po +++ b/addons/stock_no_autopicking/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pt.po b/addons/stock_no_autopicking/i18n/pt.po index 9f0a79f635b..4572a0b7400 100644 --- a/addons/stock_no_autopicking/i18n/pt.po +++ b/addons/stock_no_autopicking/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/pt_BR.po b/addons/stock_no_autopicking/i18n/pt_BR.po index 48a98e9ee00..6e336865695 100644 --- a/addons/stock_no_autopicking/i18n/pt_BR.po +++ b/addons/stock_no_autopicking/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ro.po b/addons/stock_no_autopicking/i18n/ro.po index 1ebe3081726..844de129009 100644 --- a/addons/stock_no_autopicking/i18n/ro.po +++ b/addons/stock_no_autopicking/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/ru.po b/addons/stock_no_autopicking/i18n/ru.po index 741495ad63b..e52eb12695a 100644 --- a/addons/stock_no_autopicking/i18n/ru.po +++ b/addons/stock_no_autopicking/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sl.po b/addons/stock_no_autopicking/i18n/sl.po index 2c4f9320b65..e37b66557f5 100644 --- a/addons/stock_no_autopicking/i18n/sl.po +++ b/addons/stock_no_autopicking/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sq.po b/addons/stock_no_autopicking/i18n/sq.po index 786a8f22d51..d0e68c8ed97 100644 --- a/addons/stock_no_autopicking/i18n/sq.po +++ b/addons/stock_no_autopicking/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:04+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sr@latin.po b/addons/stock_no_autopicking/i18n/sr@latin.po index a500e7b5f4d..3f8c621e85c 100644 --- a/addons/stock_no_autopicking/i18n/sr@latin.po +++ b/addons/stock_no_autopicking/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/sv.po b/addons/stock_no_autopicking/i18n/sv.po index 1c0de294a34..668653998fb 100644 --- a/addons/stock_no_autopicking/i18n/sv.po +++ b/addons/stock_no_autopicking/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/tlh.po b/addons/stock_no_autopicking/i18n/tlh.po index 106a4a52ba2..9f4c6bf2f13 100644 --- a/addons/stock_no_autopicking/i18n/tlh.po +++ b/addons/stock_no_autopicking/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/tr.po b/addons/stock_no_autopicking/i18n/tr.po index 0f32f94d7e0..d69dede75fa 100644 --- a/addons/stock_no_autopicking/i18n/tr.po +++ b/addons/stock_no_autopicking/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/uk.po b/addons/stock_no_autopicking/i18n/uk.po index d592977babf..2e8e9bfa29a 100644 --- a/addons/stock_no_autopicking/i18n/uk.po +++ b/addons/stock_no_autopicking/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/vi.po b/addons/stock_no_autopicking/i18n/vi.po index 5603ea6f651..8727f2f7b96 100644 --- a/addons/stock_no_autopicking/i18n/vi.po +++ b/addons/stock_no_autopicking/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/zh_CN.po b/addons/stock_no_autopicking/i18n/zh_CN.po index bf3e516a376..1dda0912169 100644 --- a/addons/stock_no_autopicking/i18n/zh_CN.po +++ b/addons/stock_no_autopicking/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/stock_no_autopicking/i18n/zh_TW.po b/addons/stock_no_autopicking/i18n/zh_TW.po index 39d895a2732..f33e0bd459a 100644 --- a/addons/stock_no_autopicking/i18n/zh_TW.po +++ b/addons/stock_no_autopicking/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: stock_no_autopicking #: model:ir.model,name:stock_no_autopicking.model_mrp_production diff --git a/addons/subscription/i18n/ar.po b/addons/subscription/i18n/ar.po index a6e2aa20adb..e911d225270 100644 --- a/addons/subscription/i18n/ar.po +++ b/addons/subscription/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/bg.po b/addons/subscription/i18n/bg.po index 24bbd2d8ff6..31d2001d547 100644 --- a/addons/subscription/i18n/bg.po +++ b/addons/subscription/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/bs.po b/addons/subscription/i18n/bs.po index 5e7772e7d23..5a3415504fa 100644 --- a/addons/subscription/i18n/bs.po +++ b/addons/subscription/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ca.po b/addons/subscription/i18n/ca.po index f8088560a21..ab0382f05f2 100644 --- a/addons/subscription/i18n/ca.po +++ b/addons/subscription/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/cs.po b/addons/subscription/i18n/cs.po index fcb428294bf..5a4b94271aa 100644 --- a/addons/subscription/i18n/cs.po +++ b/addons/subscription/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/da.po b/addons/subscription/i18n/da.po index b109d5e08f1..3bba8426545 100644 --- a/addons/subscription/i18n/da.po +++ b/addons/subscription/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/de.po b/addons/subscription/i18n/de.po index ad10d406761..874d20e08fa 100644 --- a/addons/subscription/i18n/de.po +++ b/addons/subscription/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es.po b/addons/subscription/i18n/es.po index 6b2c4f69ca8..a639ef26953 100644 --- a/addons/subscription/i18n/es.po +++ b/addons/subscription/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es_AR.po b/addons/subscription/i18n/es_AR.po index 21df559bb17..7281844bf9e 100644 --- a/addons/subscription/i18n/es_AR.po +++ b/addons/subscription/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/es_CR.po b/addons/subscription/i18n/es_CR.po index 47d98fc4226..786298657d6 100644 --- a/addons/subscription/i18n/es_CR.po +++ b/addons/subscription/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/et.po b/addons/subscription/i18n/et.po index 8eb4298c5a6..5a8ad4da0ad 100644 --- a/addons/subscription/i18n/et.po +++ b/addons/subscription/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/fi.po b/addons/subscription/i18n/fi.po index ee0af5a908a..532c25c2b62 100644 --- a/addons/subscription/i18n/fi.po +++ b/addons/subscription/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/fr.po b/addons/subscription/i18n/fr.po index f3bbbe9531a..03396e15dfd 100644 --- a/addons/subscription/i18n/fr.po +++ b/addons/subscription/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/gl.po b/addons/subscription/i18n/gl.po index e621d42951f..5676606cab9 100644 --- a/addons/subscription/i18n/gl.po +++ b/addons/subscription/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/hr.po b/addons/subscription/i18n/hr.po index de51cd7974a..36069a20b13 100644 --- a/addons/subscription/i18n/hr.po +++ b/addons/subscription/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/hu.po b/addons/subscription/i18n/hu.po index d21097659c5..8cf0c596a98 100644 --- a/addons/subscription/i18n/hu.po +++ b/addons/subscription/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/id.po b/addons/subscription/i18n/id.po index a0b51022c82..dfe0dffca9f 100644 --- a/addons/subscription/i18n/id.po +++ b/addons/subscription/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/it.po b/addons/subscription/i18n/it.po index 62730c44b27..c13a4d2551b 100644 --- a/addons/subscription/i18n/it.po +++ b/addons/subscription/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ja.po b/addons/subscription/i18n/ja.po index 2e2591d6547..e45c63e9ce4 100644 --- a/addons/subscription/i18n/ja.po +++ b/addons/subscription/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ko.po b/addons/subscription/i18n/ko.po index 651f27f4319..8bc2a352740 100644 --- a/addons/subscription/i18n/ko.po +++ b/addons/subscription/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/lt.po b/addons/subscription/i18n/lt.po index 8964a7bd625..b2c26e08807 100644 --- a/addons/subscription/i18n/lt.po +++ b/addons/subscription/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/mk.po b/addons/subscription/i18n/mk.po index a2f3e5df176..e260ca33c48 100644 --- a/addons/subscription/i18n/mk.po +++ b/addons/subscription/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/nl.po b/addons/subscription/i18n/nl.po index 8e9d2535dbf..729fe0fa274 100644 --- a/addons/subscription/i18n/nl.po +++ b/addons/subscription/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/nl_BE.po b/addons/subscription/i18n/nl_BE.po index d7b7ecca951..95640dd89fb 100644 --- a/addons/subscription/i18n/nl_BE.po +++ b/addons/subscription/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pl.po b/addons/subscription/i18n/pl.po index 14694b6429e..4585a81cd6c 100644 --- a/addons/subscription/i18n/pl.po +++ b/addons/subscription/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pt.po b/addons/subscription/i18n/pt.po index 51d57cb489f..347f6486c2d 100644 --- a/addons/subscription/i18n/pt.po +++ b/addons/subscription/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/pt_BR.po b/addons/subscription/i18n/pt_BR.po index 799387016ed..77c1ebf19e9 100644 --- a/addons/subscription/i18n/pt_BR.po +++ b/addons/subscription/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ro.po b/addons/subscription/i18n/ro.po index d8fde5f6ae2..f3c142543d1 100644 --- a/addons/subscription/i18n/ro.po +++ b/addons/subscription/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/ru.po b/addons/subscription/i18n/ru.po index b789d96d33f..131573da8b1 100644 --- a/addons/subscription/i18n/ru.po +++ b/addons/subscription/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sl.po b/addons/subscription/i18n/sl.po index 32cc60ef90f..de07fd8a60f 100644 --- a/addons/subscription/i18n/sl.po +++ b/addons/subscription/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sq.po b/addons/subscription/i18n/sq.po index fe5b297debc..134b8178d60 100644 --- a/addons/subscription/i18n/sq.po +++ b/addons/subscription/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/sv.po b/addons/subscription/i18n/sv.po index c191edb61ad..fc7791aba4c 100644 --- a/addons/subscription/i18n/sv.po +++ b/addons/subscription/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/tlh.po b/addons/subscription/i18n/tlh.po index aba3fa286bd..e08679a7fd0 100644 --- a/addons/subscription/i18n/tlh.po +++ b/addons/subscription/i18n/tlh.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/tr.po b/addons/subscription/i18n/tr.po index 1ccf3243647..d8a91fed056 100644 --- a/addons/subscription/i18n/tr.po +++ b/addons/subscription/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/uk.po b/addons/subscription/i18n/uk.po index dfb4de2fc41..c45e97c879d 100644 --- a/addons/subscription/i18n/uk.po +++ b/addons/subscription/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/vi.po b/addons/subscription/i18n/vi.po index 7e11a0bb20f..b2f7cc84550 100644 --- a/addons/subscription/i18n/vi.po +++ b/addons/subscription/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/zh_CN.po b/addons/subscription/i18n/zh_CN.po index 82a036d8321..f2e6dbb0aef 100644 --- a/addons/subscription/i18n/zh_CN.po +++ b/addons/subscription/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/subscription/i18n/zh_TW.po b/addons/subscription/i18n/zh_TW.po index 700835671b0..8cfe81cf05e 100644 --- a/addons/subscription/i18n/zh_TW.po +++ b/addons/subscription/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: subscription #: field:subscription.subscription,doc_source:0 diff --git a/addons/survey/i18n/ar.po b/addons/survey/i18n/ar.po index 6d8e29e89d2..bb981d510c7 100644 --- a/addons/survey/i18n/ar.po +++ b/addons/survey/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/bg.po b/addons/survey/i18n/bg.po index ef9ff1995ec..ca10c3eefae 100644 --- a/addons/survey/i18n/bg.po +++ b/addons/survey/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ca.po b/addons/survey/i18n/ca.po index 5140f90f033..156f3372638 100644 --- a/addons/survey/i18n/ca.po +++ b/addons/survey/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/cs.po b/addons/survey/i18n/cs.po index 883f704a37b..52ff3938673 100644 --- a/addons/survey/i18n/cs.po +++ b/addons/survey/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/da.po b/addons/survey/i18n/da.po index 357b5239886..fd05253d613 100644 --- a/addons/survey/i18n/da.po +++ b/addons/survey/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/de.po b/addons/survey/i18n/de.po index fd0eb3d6402..873d0b74edc 100644 --- a/addons/survey/i18n/de.po +++ b/addons/survey/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/es.po b/addons/survey/i18n/es.po index 06b34ce1f48..919d51cb5b8 100644 --- a/addons/survey/i18n/es.po +++ b/addons/survey/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/es_CR.po b/addons/survey/i18n/es_CR.po index 50f66138ed8..c9609e13703 100644 --- a/addons/survey/i18n/es_CR.po +++ b/addons/survey/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/et.po b/addons/survey/i18n/et.po index 314b7684515..fad831b5c0d 100644 --- a/addons/survey/i18n/et.po +++ b/addons/survey/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/fi.po b/addons/survey/i18n/fi.po index 763bf0bb36b..0827b3dd9ed 100644 --- a/addons/survey/i18n/fi.po +++ b/addons/survey/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/fr.po b/addons/survey/i18n/fr.po index 27eeff854ab..cc2c7defebc 100644 --- a/addons/survey/i18n/fr.po +++ b/addons/survey/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 @@ -613,7 +613,7 @@ msgstr "" #. module: survey #: model:ir.ui.menu,name:survey.menu_reporting msgid "Reporting" -msgstr "" +msgstr "Rapports" #. module: survey #: model:ir.actions.act_window,name:survey.act_survey_answer diff --git a/addons/survey/i18n/gl.po b/addons/survey/i18n/gl.po index 498d2ae3911..1f58781710f 100644 --- a/addons/survey/i18n/gl.po +++ b/addons/survey/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/hr.po b/addons/survey/i18n/hr.po index 895165132be..002ee2bbb41 100644 --- a/addons/survey/i18n/hr.po +++ b/addons/survey/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/hu.po b/addons/survey/i18n/hu.po index c051397685e..40bbb432a54 100644 --- a/addons/survey/i18n/hu.po +++ b/addons/survey/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/it.po b/addons/survey/i18n/it.po index 8e23761a8ae..39968dee15a 100644 --- a/addons/survey/i18n/it.po +++ b/addons/survey/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ja.po b/addons/survey/i18n/ja.po index b998942f2af..9c8a1266d82 100644 --- a/addons/survey/i18n/ja.po +++ b/addons/survey/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/mk.po b/addons/survey/i18n/mk.po index 0a1f6d1613b..bf53899ca83 100644 --- a/addons/survey/i18n/mk.po +++ b/addons/survey/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/mn.po b/addons/survey/i18n/mn.po index ce7ccfe25e0..07b5b6266fe 100644 --- a/addons/survey/i18n/mn.po +++ b/addons/survey/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/nl.po b/addons/survey/i18n/nl.po index 17104551459..b1cabb79b7f 100644 --- a/addons/survey/i18n/nl.po +++ b/addons/survey/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pl.po b/addons/survey/i18n/pl.po index 204f914e3c3..453cad60ce2 100644 --- a/addons/survey/i18n/pl.po +++ b/addons/survey/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pt.po b/addons/survey/i18n/pt.po index b0144a93f0f..da9e8b981f8 100644 --- a/addons/survey/i18n/pt.po +++ b/addons/survey/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/pt_BR.po b/addons/survey/i18n/pt_BR.po index 264a3904777..0547c194b0b 100644 --- a/addons/survey/i18n/pt_BR.po +++ b/addons/survey/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ro.po b/addons/survey/i18n/ro.po index e95e1104a1c..57cd2c09ca9 100644 --- a/addons/survey/i18n/ro.po +++ b/addons/survey/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/ru.po b/addons/survey/i18n/ru.po index c5f79c3c9e0..fe51571050b 100644 --- a/addons/survey/i18n/ru.po +++ b/addons/survey/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sl.po b/addons/survey/i18n/sl.po index 02ce68f0af7..05261cae917 100644 --- a/addons/survey/i18n/sl.po +++ b/addons/survey/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sr.po b/addons/survey/i18n/sr.po index 74ff409336c..7fd3d2e0cf7 100644 --- a/addons/survey/i18n/sr.po +++ b/addons/survey/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sr@latin.po b/addons/survey/i18n/sr@latin.po index 3011b9b2810..b0d9947ae91 100644 --- a/addons/survey/i18n/sr@latin.po +++ b/addons/survey/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/sv.po b/addons/survey/i18n/sv.po index 44509298b6a..1a45f37e309 100644 --- a/addons/survey/i18n/sv.po +++ b/addons/survey/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/tr.po b/addons/survey/i18n/tr.po index 5195a7c32a4..68da03c69f1 100644 --- a/addons/survey/i18n/tr.po +++ b/addons/survey/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/survey/i18n/zh_CN.po b/addons/survey/i18n/zh_CN.po index 4a0029d3521..d8641039b99 100644 --- a/addons/survey/i18n/zh_CN.po +++ b/addons/survey/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: survey #: view:survey.response.line:0 diff --git a/addons/warning/i18n/ar.po b/addons/warning/i18n/ar.po index ddca5a175ea..3aa8cb05da3 100644 --- a/addons/warning/i18n/ar.po +++ b/addons/warning/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/bg.po b/addons/warning/i18n/bg.po index 8db27bcf471..a7a5df0bab1 100644 --- a/addons/warning/i18n/bg.po +++ b/addons/warning/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/bs.po b/addons/warning/i18n/bs.po index a551ef6954e..9b349c363a5 100644 --- a/addons/warning/i18n/bs.po +++ b/addons/warning/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ca.po b/addons/warning/i18n/ca.po index 56177834d40..7c51085ba26 100644 --- a/addons/warning/i18n/ca.po +++ b/addons/warning/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/cs.po b/addons/warning/i18n/cs.po index b51c8f21222..b8836f5b971 100644 --- a/addons/warning/i18n/cs.po +++ b/addons/warning/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/da.po b/addons/warning/i18n/da.po index c68e42b02c3..7fd25c84584 100644 --- a/addons/warning/i18n/da.po +++ b/addons/warning/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/de.po b/addons/warning/i18n/de.po index d2763271979..9a23454df16 100644 --- a/addons/warning/i18n/de.po +++ b/addons/warning/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/el.po b/addons/warning/i18n/el.po index cc332e31a5a..941c3a56ae6 100644 --- a/addons/warning/i18n/el.po +++ b/addons/warning/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es.po b/addons/warning/i18n/es.po index bee7889a1e6..50086fcbd05 100644 --- a/addons/warning/i18n/es.po +++ b/addons/warning/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es_AR.po b/addons/warning/i18n/es_AR.po index ce88e79e8ea..bdb367e8a67 100644 --- a/addons/warning/i18n/es_AR.po +++ b/addons/warning/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/es_CR.po b/addons/warning/i18n/es_CR.po index 08d90e8d284..cec6de1c58b 100644 --- a/addons/warning/i18n/es_CR.po +++ b/addons/warning/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/et.po b/addons/warning/i18n/et.po index e3daadafa77..1ea0a6dfe5e 100644 --- a/addons/warning/i18n/et.po +++ b/addons/warning/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/fi.po b/addons/warning/i18n/fi.po index fae5411ae32..08faf22bb65 100644 --- a/addons/warning/i18n/fi.po +++ b/addons/warning/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/fr.po b/addons/warning/i18n/fr.po index d91610ad385..e82ed39cf53 100644 --- a/addons/warning/i18n/fr.po +++ b/addons/warning/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/gl.po b/addons/warning/i18n/gl.po index 6699364172c..03ba725dcea 100644 --- a/addons/warning/i18n/gl.po +++ b/addons/warning/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/hr.po b/addons/warning/i18n/hr.po index 9f04451f811..5286756f2c9 100644 --- a/addons/warning/i18n/hr.po +++ b/addons/warning/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: hr\n" #. module: warning diff --git a/addons/warning/i18n/hu.po b/addons/warning/i18n/hu.po index 2693331a9e0..67a22a89fd1 100644 --- a/addons/warning/i18n/hu.po +++ b/addons/warning/i18n/hu.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/id.po b/addons/warning/i18n/id.po index 1d8dc7f51e0..d693d19461b 100644 --- a/addons/warning/i18n/id.po +++ b/addons/warning/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/it.po b/addons/warning/i18n/it.po index 52ceb54851d..451195f3525 100644 --- a/addons/warning/i18n/it.po +++ b/addons/warning/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ja.po b/addons/warning/i18n/ja.po index d37ae8bd757..42c521a9116 100644 --- a/addons/warning/i18n/ja.po +++ b/addons/warning/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ko.po b/addons/warning/i18n/ko.po index 2a2461a1676..f922fb81209 100644 --- a/addons/warning/i18n/ko.po +++ b/addons/warning/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/lt.po b/addons/warning/i18n/lt.po index 02672f1d567..0b2593a138f 100644 --- a/addons/warning/i18n/lt.po +++ b/addons/warning/i18n/lt.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/mk.po b/addons/warning/i18n/mk.po index a10f59be898..0dd62fc9457 100644 --- a/addons/warning/i18n/mk.po +++ b/addons/warning/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/mn.po b/addons/warning/i18n/mn.po index 5bb5587bd71..ec4bebc5a0a 100644 --- a/addons/warning/i18n/mn.po +++ b/addons/warning/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nb.po b/addons/warning/i18n/nb.po index e029352283a..58a9b5a32b1 100644 --- a/addons/warning/i18n/nb.po +++ b/addons/warning/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nl.po b/addons/warning/i18n/nl.po index 2cddd299441..bef89314c06 100644 --- a/addons/warning/i18n/nl.po +++ b/addons/warning/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/nl_BE.po b/addons/warning/i18n/nl_BE.po index 6b7987613ae..cf8d8ff26bc 100644 --- a/addons/warning/i18n/nl_BE.po +++ b/addons/warning/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pl.po b/addons/warning/i18n/pl.po index f9e0d180023..cd44442c3a0 100644 --- a/addons/warning/i18n/pl.po +++ b/addons/warning/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pt.po b/addons/warning/i18n/pt.po index 7cd7b8ae626..136302f2381 100644 --- a/addons/warning/i18n/pt.po +++ b/addons/warning/i18n/pt.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/pt_BR.po b/addons/warning/i18n/pt_BR.po index 789bd5bc014..91360badc6d 100644 --- a/addons/warning/i18n/pt_BR.po +++ b/addons/warning/i18n/pt_BR.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ro.po b/addons/warning/i18n/ro.po index 651a893da87..496215c3e8a 100644 --- a/addons/warning/i18n/ro.po +++ b/addons/warning/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/ru.po b/addons/warning/i18n/ru.po index 33190db76ea..a22aaa1af93 100644 --- a/addons/warning/i18n/ru.po +++ b/addons/warning/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sl.po b/addons/warning/i18n/sl.po index ca45cf8db6d..b72cd65af5e 100644 --- a/addons/warning/i18n/sl.po +++ b/addons/warning/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sq.po b/addons/warning/i18n/sq.po index ffd97a20b5f..b731ad437b3 100644 --- a/addons/warning/i18n/sq.po +++ b/addons/warning/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sr.po b/addons/warning/i18n/sr.po index df2499357a9..542fba38667 100644 --- a/addons/warning/i18n/sr.po +++ b/addons/warning/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sr@latin.po b/addons/warning/i18n/sr@latin.po index 4c44fb4c625..8eec8124b72 100644 --- a/addons/warning/i18n/sr@latin.po +++ b/addons/warning/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/sv.po b/addons/warning/i18n/sv.po index 8e40793849f..ca90d32a743 100644 --- a/addons/warning/i18n/sv.po +++ b/addons/warning/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/tlh.po b/addons/warning/i18n/tlh.po index 6e9664d5265..960636fe0fd 100644 --- a/addons/warning/i18n/tlh.po +++ b/addons/warning/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/tr.po b/addons/warning/i18n/tr.po index bb8db8b6bce..09796ff244a 100644 --- a/addons/warning/i18n/tr.po +++ b/addons/warning/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/uk.po b/addons/warning/i18n/uk.po index 34ff929e37d..3beaa9a83c6 100644 --- a/addons/warning/i18n/uk.po +++ b/addons/warning/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/vi.po b/addons/warning/i18n/vi.po index c32f5adad5d..ead1d4822ba 100644 --- a/addons/warning/i18n/vi.po +++ b/addons/warning/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/zh_CN.po b/addons/warning/i18n/zh_CN.po index 4c405f53a1b..ebdd372663a 100644 --- a/addons/warning/i18n/zh_CN.po +++ b/addons/warning/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/warning/i18n/zh_TW.po b/addons/warning/i18n/zh_TW.po index 54ddf4a53b3..f5069a5bc6a 100644 --- a/addons/warning/i18n/zh_TW.po +++ b/addons/warning/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line diff --git a/addons/web_linkedin/i18n/de.po b/addons/web_linkedin/i18n/de.po index f3ca68ed06f..03d5eb1c6c6 100644 --- a/addons/web_linkedin/i18n/de.po +++ b/addons/web_linkedin/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/es.po b/addons/web_linkedin/i18n/es.po index eb54633602e..7f2324689e7 100644 --- a/addons/web_linkedin/i18n/es.po +++ b/addons/web_linkedin/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/fr.po b/addons/web_linkedin/i18n/fr.po index 72fa64415c6..f64f02a7e67 100644 --- a/addons/web_linkedin/i18n/fr.po +++ b/addons/web_linkedin/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/hr.po b/addons/web_linkedin/i18n/hr.po index 83178dd2b99..5943ee0e5c7 100644 --- a/addons/web_linkedin/i18n/hr.po +++ b/addons/web_linkedin/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/hu.po b/addons/web_linkedin/i18n/hu.po index 08988ff609c..44ed7d2abe2 100644 --- a/addons/web_linkedin/i18n/hu.po +++ b/addons/web_linkedin/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/it.po b/addons/web_linkedin/i18n/it.po index 84270d4a139..45faf2a9941 100644 --- a/addons/web_linkedin/i18n/it.po +++ b/addons/web_linkedin/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/mk.po b/addons/web_linkedin/i18n/mk.po index 18e3ac68895..ab29c310453 100644 --- a/addons/web_linkedin/i18n/mk.po +++ b/addons/web_linkedin/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/mn.po b/addons/web_linkedin/i18n/mn.po index 30ded6457b7..ebca48ca2f1 100644 --- a/addons/web_linkedin/i18n/mn.po +++ b/addons/web_linkedin/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/nl.po b/addons/web_linkedin/i18n/nl.po index d30dead122a..e7c4a306d0a 100644 --- a/addons/web_linkedin/i18n/nl.po +++ b/addons/web_linkedin/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/pl.po b/addons/web_linkedin/i18n/pl.po index f0e716a72c1..846cab53447 100644 --- a/addons/web_linkedin/i18n/pl.po +++ b/addons/web_linkedin/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/pt.po b/addons/web_linkedin/i18n/pt.po index eb1fc74f1a9..9c7446128bd 100644 --- a/addons/web_linkedin/i18n/pt.po +++ b/addons/web_linkedin/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/pt_BR.po b/addons/web_linkedin/i18n/pt_BR.po index 8f3c25435b9..4f12ae6377a 100644 --- a/addons/web_linkedin/i18n/pt_BR.po +++ b/addons/web_linkedin/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/ro.po b/addons/web_linkedin/i18n/ro.po index cd015a6db55..8ab09211d41 100644 --- a/addons/web_linkedin/i18n/ro.po +++ b/addons/web_linkedin/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/sl.po b/addons/web_linkedin/i18n/sl.po index 6fbfdba2041..d438dcebd48 100644 --- a/addons/web_linkedin/i18n/sl.po +++ b/addons/web_linkedin/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/tr.po b/addons/web_linkedin/i18n/tr.po index 4a928c992a9..bd3ad0cc030 100644 --- a/addons/web_linkedin/i18n/tr.po +++ b/addons/web_linkedin/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_linkedin/i18n/zh_CN.po b/addons/web_linkedin/i18n/zh_CN.po index c1d0c631801..6dedbf1ade8 100644 --- a/addons/web_linkedin/i18n/zh_CN.po +++ b/addons/web_linkedin/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_linkedin #: view:sale.config.settings:0 diff --git a/addons/web_shortcuts/i18n/cs.po b/addons/web_shortcuts/i18n/cs.po index f9e3eb5f508..24778431dee 100644 --- a/addons/web_shortcuts/i18n/cs.po +++ b/addons/web_shortcuts/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/de.po b/addons/web_shortcuts/i18n/de.po index 1121af8dd6e..e7e51cadec2 100644 --- a/addons/web_shortcuts/i18n/de.po +++ b/addons/web_shortcuts/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/es.po b/addons/web_shortcuts/i18n/es.po index bda0288cf68..3291ca3fb3b 100644 --- a/addons/web_shortcuts/i18n/es.po +++ b/addons/web_shortcuts/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/fr.po b/addons/web_shortcuts/i18n/fr.po index d29764124f3..eea1ee13cfa 100644 --- a/addons/web_shortcuts/i18n/fr.po +++ b/addons/web_shortcuts/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/hr.po b/addons/web_shortcuts/i18n/hr.po index 1979110b716..0ba372be2a0 100644 --- a/addons/web_shortcuts/i18n/hr.po +++ b/addons/web_shortcuts/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/hu.po b/addons/web_shortcuts/i18n/hu.po index 41cba5a59f4..f562f45f7cf 100644 --- a/addons/web_shortcuts/i18n/hu.po +++ b/addons/web_shortcuts/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/it.po b/addons/web_shortcuts/i18n/it.po index 9db0d3a2bba..2a0465608ad 100644 --- a/addons/web_shortcuts/i18n/it.po +++ b/addons/web_shortcuts/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/mk.po b/addons/web_shortcuts/i18n/mk.po index bc17ff497ca..73becd5c0bc 100644 --- a/addons/web_shortcuts/i18n/mk.po +++ b/addons/web_shortcuts/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/mn.po b/addons/web_shortcuts/i18n/mn.po index 0ba18a38e20..f9e691b8ee7 100644 --- a/addons/web_shortcuts/i18n/mn.po +++ b/addons/web_shortcuts/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/nl.po b/addons/web_shortcuts/i18n/nl.po index 4e1741b3221..4887fe68406 100644 --- a/addons/web_shortcuts/i18n/nl.po +++ b/addons/web_shortcuts/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pl.po b/addons/web_shortcuts/i18n/pl.po index a650fa7b5b5..89c7d3c19e0 100644 --- a/addons/web_shortcuts/i18n/pl.po +++ b/addons/web_shortcuts/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pt.po b/addons/web_shortcuts/i18n/pt.po index 0ba6d990e82..8c31f3101be 100644 --- a/addons/web_shortcuts/i18n/pt.po +++ b/addons/web_shortcuts/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/pt_BR.po b/addons/web_shortcuts/i18n/pt_BR.po index a142fbf0441..ebab56c520f 100644 --- a/addons/web_shortcuts/i18n/pt_BR.po +++ b/addons/web_shortcuts/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/ro.po b/addons/web_shortcuts/i18n/ro.po index f345fc09b2a..624de772958 100644 --- a/addons/web_shortcuts/i18n/ro.po +++ b/addons/web_shortcuts/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/ru.po b/addons/web_shortcuts/i18n/ru.po index 656db8b0e60..bbaf9efba7b 100644 --- a/addons/web_shortcuts/i18n/ru.po +++ b/addons/web_shortcuts/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/sl.po b/addons/web_shortcuts/i18n/sl.po index 87da3366c91..d9efac1eb3f 100644 --- a/addons/web_shortcuts/i18n/sl.po +++ b/addons/web_shortcuts/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/sv.po b/addons/web_shortcuts/i18n/sv.po index 51f836dc3f9..cdba9bb0fee 100644 --- a/addons/web_shortcuts/i18n/sv.po +++ b/addons/web_shortcuts/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/tr.po b/addons/web_shortcuts/i18n/tr.po index c245bea164a..25ecd24688a 100644 --- a/addons/web_shortcuts/i18n/tr.po +++ b/addons/web_shortcuts/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/zh_CN.po b/addons/web_shortcuts/i18n/zh_CN.po index b69db4b6514..21df41f9380 100644 --- a/addons/web_shortcuts/i18n/zh_CN.po +++ b/addons/web_shortcuts/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web diff --git a/addons/web_shortcuts/i18n/zh_TW.po b/addons/web_shortcuts/i18n/zh_TW.po index 033ec4a173e..c2148524d99 100644 --- a/addons/web_shortcuts/i18n/zh_TW.po +++ b/addons/web_shortcuts/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:05+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 06:04+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_shortcuts #. openerp-web From 4f8f192df0ae0a11c340d8f35934761d5398fac5 Mon Sep 17 00:00:00 2001 From: chirag patel Date: Thu, 28 Mar 2013 12:03:46 +0530 Subject: [PATCH 25/35] [FIX] Fixed autocomplete of search view hide behind overlay. bzr revid: cpa@tinyerp.com-20130328063346-1aib1n3on9pdr81u --- addons/web/static/src/js/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/js/search.js b/addons/web/static/src/js/search.js index c284dcb513b..c1ace6b57f3 100644 --- a/addons/web/static/src/js/search.js +++ b/addons/web/static/src/js/search.js @@ -326,7 +326,7 @@ instance.web.SearchView = instance.web.Widget.extend(/** @lends instance.web.Sea } }, 'autocompleteopen': function () { - this.$el.autocomplete('widget').css('z-index', 3); + this.$el.autocomplete('widget').css('z-index', 1004); }, }, /** From e43b87787615d85a98c837bf870e54ae96fdd05b Mon Sep 17 00:00:00 2001 From: Fabien Meghazi Date: Thu, 28 Mar 2013 09:47:28 +0100 Subject: [PATCH 26/35] [IMP] Hide login box on oauth auto signin bzr revid: fme@openerp.com-20130328084728-sofa4z0wxf9x8jnf --- addons/auth_oauth/static/src/js/auth_oauth.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/addons/auth_oauth/static/src/js/auth_oauth.js b/addons/auth_oauth/static/src/js/auth_oauth.js index 7ee83bd99e9..131ae5c1c42 100644 --- a/addons/auth_oauth/static/src/js/auth_oauth.js +++ b/addons/auth_oauth/static/src/js/auth_oauth.js @@ -5,6 +5,7 @@ openerp.auth_oauth = function(instance) { start: function(parent, params) { var self = this; var d = this._super.apply(this, arguments); + this.$el.hide(); this.$el.on('click', 'a.zocial', this.on_oauth_sign_in); this.oauth_providers = []; if(this.params.oauth_error === 1) { @@ -24,6 +25,8 @@ openerp.auth_oauth = function(instance) { var db = this.$("form [name=db]").val(); if (db) { this.rpc("/auth_oauth/list_providers", { dbname: db }).done(this.on_oauth_loaded); + } else { + this.$el.show(); } }, on_oauth_loaded: function(result) { @@ -32,6 +35,7 @@ openerp.auth_oauth = function(instance) { if (this.oauth_providers.length === 1 && params.type === 'signup') { this.do_oauth_sign_in(this.oauth_providers[0]); } else { + this.$el.show(); this.$('.oe_oauth_provider_login_button').remove(); var buttons = QWeb.render("auth_oauth.Login.button",{"widget":this}); this.$(".oe_login_pane form ul").after(buttons); @@ -57,7 +61,7 @@ openerp.auth_oauth = function(instance) { state: JSON.stringify(state), }; var url = provider.auth_endpoint + '?' + $.param(params); - window.location = url; + instance.web.redirect(url); }, _oauth_state: function(provider) { // return the state object sent back with the redirected uri From 6d696a65f083a2916b81e761dad392fa23493277 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Thu, 28 Mar 2013 09:51:40 +0100 Subject: [PATCH 27/35] [REV] Portal is back bzr revid: tde@openerp.com-20130328085140-wscr6uk8loydelpm --- addons/portal/portal_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/portal/portal_view.xml b/addons/portal/portal_view.xml index c608bdc9484..1ff98bdc77f 100644 --- a/addons/portal/portal_view.xml +++ b/addons/portal/portal_view.xml @@ -3,7 +3,7 @@ - From c94c81c8ac789b117957bc06ac23cd5b78c1c7a0 Mon Sep 17 00:00:00 2001 From: Fabien Meghazi Date: Thu, 28 Mar 2013 22:07:18 +0100 Subject: [PATCH 28/35] [FIX] Remove dirty flag on save lp bug: https://launchpad.net/bugs/1099380 fixed bzr revid: fme@openerp.com-20130328210718-85lemijdjc79hhea --- addons/web/static/src/js/view_form.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/web/static/src/js/view_form.js b/addons/web/static/src/js/view_form.js index a2091bb5c40..a77e50afb66 100644 --- a/addons/web/static/src/js/view_form.js +++ b/addons/web/static/src/js/view_form.js @@ -802,6 +802,8 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM if (save_obj.error) return $.Deferred().reject(); return $.when.apply($, save_obj.ret); + }).done(function() { + self.$el.removeClass('oe_form_dirty'); }); }, _process_save: function(save_obj) { @@ -2126,7 +2128,7 @@ instance.web.form.AbstractField = instance.web.form.FormWidget.extend(instance.w value without triggering a re-rendering. */ internal_set_value: function(value_) { - var tmp = this.no_render; + var tmp = this.no_rerender; this.no_rerender = true; this.set({'value': value_}); this.no_rerender = tmp; From 42e713aab28ec25ead4f3d8a890696f94f2f9036 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 29 Mar 2013 05:07:32 +0000 Subject: [PATCH 29/35] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130328052132-4jmsvd1psrn33q8l bzr revid: launchpad_translations_on_behalf_of_openerp-20130329050732-0qno0says8riolps --- openerp/addons/base/i18n/cs.po | 955 +++++++++++++++++---------------- openerp/addons/base/i18n/fr.po | 85 ++- openerp/addons/base/i18n/ko.po | 40 +- 3 files changed, 596 insertions(+), 484 deletions(-) diff --git a/openerp/addons/base/i18n/cs.po b/openerp/addons/base/i18n/cs.po index 36b911486df..167547514b5 100644 --- a/openerp/addons/base/i18n/cs.po +++ b/openerp/addons/base/i18n/cs.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-28 22:49+0000\n" -"Last-Translator: Jan Grmela \n" +"PO-Revision-Date: 2013-03-29 01:41+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \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-03-29 05:07+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Language: cs_CZ\n" "X-Source-Language: en\n" @@ -66,12 +66,12 @@ msgstr "" #: field:ir.ui.view,arch:0 #: field:ir.ui.view.custom,arch:0 msgid "View Architecture" -msgstr "Architektura pohledu" +msgstr "Architektura zobrazení" #. module: base #: model:ir.module.module,summary:base.module_sale_stock msgid "Quotation, Sale Orders, Delivery & Invoicing Control" -msgstr "Poptávky, potvrzení objednávek, dodávky a řízení fakturace" +msgstr "Nabídky, zakázky, řízení dopravy a fakturace" #. module: base #: selection:ir.sequence,implementation:0 @@ -95,7 +95,7 @@ msgid "" "plannings, etc..." msgstr "" "Pomůže vám spravovat projekty a úkoly jejich sledováním, generováním plánů, " -"aj." +"apod." #. module: base #: model:ir.module.module,summary:base.module_point_of_sale @@ -111,7 +111,8 @@ msgstr "Indická výplatní páska" #: help:ir.cron,model:0 msgid "" "Model name on which the method to be called is located, e.g. 'res.partner'." -msgstr "Název modelu umístění volané metody, např. 'res.partner'." +msgstr "" +"Název modelu ve kterém je volaná metoda umístěna, např. 'res.partner'." #. module: base #: view:ir.module.module:0 @@ -194,7 +195,7 @@ msgstr "Cílové okno" #. module: base #: field:ir.actions.report.xml,report_rml:0 msgid "Main Report File Path" -msgstr "Cesta k souboru hlavního výkazu" +msgstr "Cesta k souboru hlavní sestavy" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_analytic_plans @@ -219,8 +220,7 @@ msgstr "" "Vygenerujte své faktury z výdajů a položek výkazu práce.\n" "========================================================\n" "\n" -"Modul pro generování faktur na základě nákladů (lidské zdroje, výdaje, " -"...).\n" +"Modul pro generování faktur na základě nákladů (lidské zdroje, výdaje, …).\n" "\n" "V analytickém účtu můžete definovat seznamy cen a vytvořit teoretické " "zprávy\n" @@ -241,8 +241,8 @@ msgid "" "Properties of base fields cannot be altered in this manner! Please modify " "them through Python code, preferably through a custom addon!" msgstr "" -"Tímto způsobem nemůžou být změněny vlastnosti základních polí! Prosíme " -"upravte je přes kód Pythonu, přednostně přes vlastní doplněk!" +"Tímto způsobem nemohou být změněny vlastnosti základních polí! Upravte je " +"přes kód Pythonu, nejlépe prostřednictvím vlastního doplňku!" #. module: base #: code:addons/osv.py:151 @@ -259,7 +259,7 @@ msgstr "ir.ui.view.custom" #: code:addons/base/ir/ir_model.py:375 #, python-format msgid "Renaming sparse field \"%s\" is not allowed" -msgstr "Přejmenování řídkého pole \"%s\" není povoleno" +msgstr "Přejmenování 'sparse field' \"%s\" není povoleno" #. module: base #: model:res.country,name:base.sz @@ -275,7 +275,7 @@ msgstr "vytvořeno." #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL Path" -msgstr "Cesta XSL" +msgstr "XSL Path" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tr @@ -291,7 +291,7 @@ msgstr "Přírůstek čísla" #: model:ir.actions.act_window,name:base.action_res_company_tree #: model:ir.ui.menu,name:base.menu_action_res_company_tree msgid "Company's Structure" -msgstr "Struktura společnosti" +msgstr "Struktura firem" #. module: base #: selection:base.language.install,lang:0 @@ -301,7 +301,7 @@ msgstr "Inuktitut / ᐃᓄᒃᑎᑐᑦ" #. module: base #: model:res.groups,name:base.group_multi_currency msgid "Multi Currencies" -msgstr "Různé měny" +msgstr "Více měn" #. module: base #: model:ir.module.module,description:base.module_l10n_cl @@ -337,7 +337,7 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "Hledat partnera" +msgstr "Hledat kontakt" #. module: base #: field:ir.module.category,module_nr:0 @@ -347,7 +347,7 @@ msgstr "Počet modulů" #. module: base #: help:multi_company.default,company_dest_id:0 msgid "Company to store the current record" -msgstr "Společnost k uložení aktuálního záznamu" +msgstr "Firma k uložení aktuálního záznamu" #. module: base #: field:res.partner.bank.type.field,size:0 @@ -512,7 +512,7 @@ msgid "" "allowed directives, displayed when you edit a language." msgstr "" "Chybná specifikace formátu data/času. Prosím, projděte si seznam povolených " -"direktiv zobrazený při editaci jazyka." +"formátů zobrazený při editaci jazyka." #. module: base #: code:addons/orm.py:4153 @@ -564,7 +564,7 @@ msgstr "Formát data" #. module: base #: model:ir.module.module,shortdesc:base.module_base_report_designer msgid "OpenOffice Report Designer" -msgstr "Návrhář výkazů OpenOffice" +msgstr "OpenOffice Report Designer" #. module: base #: model:res.country,name:base.an @@ -579,12 +579,12 @@ msgid "" "created by OpenERP (updates, module installation, ...)" msgstr "" "Nemůžete odstranit uživatele správce, protože je vnitřně používán pro zdroje " -"vytvářené OpenERP (aktualizace, instalace modulů, ...)" +"vytvářené OpenERP (aktualizace, instalace modulů, …)" #. module: base #: view:workflow.transition:0 msgid "Workflow Transition" -msgstr "Přechod mezi pracovními postupy" +msgstr "Rozestup mezi pracovními postupy" #. module: base #: model:res.country,name:base.gf @@ -666,8 +666,8 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" -"Pokud toto zaškrtnete, vrátí předchozí výkaz, pokud uživatel podruhé " -"vytiskne stejné jméno přílohy." +"Zaškrtnete-li, vrátí předchozí sestavu, pokud uživatel podruhé tiskne se " +"stejným názvem přílohy." #. module: base #: model:ir.module.module,description:base.module_mrp_byproduct @@ -740,7 +740,7 @@ msgstr "Kolumbie" #. module: base #: model:res.partner.title,name:base.res_partner_title_mister msgid "Mister" -msgstr "Pan" +msgstr "mistr" #. module: base #: help:res.country,code:0 @@ -759,7 +759,7 @@ msgstr "Palau" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "Prodeje & Nákupy" +msgstr "Prodej & Nákup" #. module: base #: view:res.partner:0 @@ -774,7 +774,7 @@ msgstr "Nepřeložené" #. module: base #: view:ir.mail_server:0 msgid "Outgoing Mail Server" -msgstr "Odchozí poštovní server" +msgstr "Server odchozí pošty" #. module: base #: help:ir.actions.act_window,context:0 @@ -804,7 +804,7 @@ msgstr "Mexiko - Účetnictví" #. module: base #: help:ir.actions.server,action_id:0 msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "Vyberte ke spuštění Okno akce, Výkaz, Průvodce." +msgstr "Vyberte ke spuštění okno akce, sestavu, průvodce." #. module: base #: sql_constraint:ir.config_parameter:0 @@ -865,7 +865,7 @@ msgstr "" "Modul vytváří dashboard pro účetní, který zahrnuje:\n" "--------------------------------------------------\n" " * Seznam vydaných faktur ke schválení\n" -" * Analýzu společnosti\n" +" * Analýzu firmy\n" " * Graf majetku\n" "\n" "Procesy jako vedení hlavní účetní knihy jsou prováděny prostřednictvím " @@ -917,7 +917,8 @@ msgstr "" #: help:ir.actions.act_window,src_model:0 msgid "" "Optional model name of the objects on which this action should be visible" -msgstr "Volitelný název modelu objektů, u kterých má tato akce být dostupná" +msgstr "" +"Volitelný název modelu pro objekty, u kterých má tato akce být dostupná" #. module: base #: field:workflow.transition,trigger_expr_id:0 @@ -937,7 +938,7 @@ msgstr "Chorvatsko - RRIF 2012 COA" #. module: base #: help:ir.cron,nextcall:0 msgid "Next planned execution date for this job." -msgstr "Další plánované datum vykonání této úlohy." +msgstr "Další plánovaný datum provedení této úlohy." #. module: base #: model:ir.model,name:base.model_ir_ui_view @@ -952,7 +953,7 @@ msgstr "Eritrea" #. module: base #: sql_constraint:res.company:0 msgid "The company name must be unique !" -msgstr "Název společnosti musí být jedinečný !" +msgstr "Název firmy musí být jedinečný !" #. module: base #: model:ir.ui.menu,name:base.menu_base_action_rule_admin @@ -976,7 +977,7 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" -"Malý obrázek tohoto kontaktu. Je automaticky zmenšen na rozměr 64x64 se " +"Malý obrázek tohoto kontaktu. Je automaticky zmenšen na rozměr 64x64 bodů se " "zachováním poměru stran. Použijte toto pole kdekoli je požadován malý " "obrázek." @@ -987,14 +988,14 @@ msgid "" "invoice, then `object.invoice_address_id.mobile` is the field which gives " "the correct mobile number" msgstr "" -"Poskytuje pole, které jsou použity pro vyčtení mobilního čísla, např. " -"vyberete fakturu, pak `object.invoice_address_id.mobile` je pole, které dává " -"aktuální mobilní číslo" +"Poskytuje pole, která se používají pro získání mobilního čísla, např. " +"vyberete fakturu, pak 'object.invoice_address_id.mobile' je pole se správným " +"mobilním číslem." #. module: base #: view:ir.mail_server:0 msgid "Security and Authentication" -msgstr "Zabezpečení a ověřování" +msgstr "Zabezpečení a ověření" #. module: base #: model:ir.module.module,shortdesc:base.module_web_calendar @@ -1065,13 +1066,13 @@ msgstr "" "Spravuje dovolené a pracovní požadavky\n" "=====================================\n" "\n" -"Tato aplikace řídí plán dovolených vaší společnosti. Umožňuje zaměstancům " +"Tato aplikace řídí plán dovolených vaší firmy. Umožňuje zaměstancům " "požadovat dovolenou. Manažeři si potom mohou požadavky prohlížet a " "schvalovat je nebo je odmítat. Tímto způsobem lze řídit celkový plán " -"dovolených společnosti nebo oddělení.\n" +"dovolených firmy nebo oddělení.\n" "\n" "Můžete nastavit různé druhy dovolených (nemoc, prázdniny, placená dovolená, " -"...) a rychle přiřadit dovolenou zaměstnanci nebo oddělení za pomoci " +"…) a rychle přiřadit dovolenou zaměstnanci nebo oddělení za pomoci " "určujících požadavků. Zaměstnanec si může též vyžádat více dní volna zadáním " "nového požadavku což zvýší celkový počet dostupných dní dovolené (pokud je " "požadavek schválen).\n" @@ -1110,7 +1111,7 @@ msgstr "Papua - Nová Guinea" #: help:ir.actions.report.xml,report_type:0 msgid "Report Type, e.g. pdf, html, raw, sxw, odt, html2html, mako2html, ..." msgstr "" -"Typ výkazu, např. pdf, html, raw, sxw, odt, html2html, mako2html, ..." +"Druh sestavy, např. pdf, html, raw, sxw, odt, html2html, mako2html, …" #. module: base #: model:ir.module.module,shortdesc:base.module_document_webdav @@ -1131,7 +1132,7 @@ msgstr "'%s' není platné datum v poli '%%(field)s'" #. module: base #: view:res.partner:0 msgid "My Partners" -msgstr "Moji partneři" +msgstr "Moje kontakty" #. module: base #: model:res.country,name:base.zw @@ -1147,7 +1148,7 @@ msgstr "Druh omezení: `f` pro cizí klíč, `u` pro ostatní omezení." #. module: base #: view:ir.actions.report.xml:0 msgid "XML Report" -msgstr "Výkaz XML" +msgstr "Sestava XML" #. module: base #: model:res.country,name:base.es @@ -1158,7 +1159,7 @@ msgstr "Španělsko" #: help:ir.actions.act_window,domain:0 msgid "" "Optional domain filtering of the destination data, as a Python expression" -msgstr "Volitelné filtrování domény cílových dat jako výraz Pythonu" +msgstr "Volitelné filtrování domény cílových dat - jako výraz Pythonu" #. module: base #: model:ir.model,name:base.model_base_module_upgrade @@ -1225,7 +1226,7 @@ msgstr "Správa členství" #. module: base #: selection:ir.module.module,license:0 msgid "Other OSI Approved Licence" -msgstr "Jiné schválené licence OSI" +msgstr "Jiné OSI Approved Licence" #. module: base #: model:ir.module.module,shortdesc:base.module_web_gantt @@ -1281,7 +1282,7 @@ msgstr "Andorra, Knížectví" #. module: base #: field:ir.rule,perm_read:0 msgid "Apply for Read" -msgstr "" +msgstr "Použít pro čtení" #. module: base #: model:res.country,name:base.mn @@ -1360,7 +1361,7 @@ msgstr "Archív TGZ" msgid "" "Users added to this group are automatically added in the following groups." msgstr "" -"Uživatelé přidány do této skupiny jsou automaticky přidány do následujících " +"Uživatelé přidáni do této skupiny jsou automaticky přidáni do následujících " "skupin." #. module: base @@ -1393,7 +1394,7 @@ msgstr "%B - Celý název měsíce." #: view:ir.values:0 #: field:ir.values,key:0 msgid "Type" -msgstr "Typ" +msgstr "Druh" #. module: base #: field:ir.mail_server,smtp_user:0 @@ -1454,8 +1455,8 @@ msgid "" "Language with code \"%s\" is not defined in your system !\n" "Define it through the Administration menu." msgstr "" -"Kód jazyka \"%s\" není v systému určen !\n" -"Určete jej přes Nabídku správy." +"Kód jazyka \"%s\" není v systému nastaven!\n" +"Nastavte jej přes menu Nastavení." #. module: base #: model:res.country,name:base.gu @@ -1528,7 +1529,7 @@ msgstr "Přispěvatelé" #. module: base #: field:ir.rule,perm_unlink:0 msgid "Apply for Delete" -msgstr "" +msgstr "Použít pro smazání" #. module: base #: selection:ir.property,type:0 @@ -1578,7 +1579,7 @@ msgstr "Bosna-Hercegovina" #. module: base #: selection:ir.translation,type:0 msgid "Wizard Field" -msgstr "Pole průvodců" +msgstr "Pole průvodce" #. module: base #: selection:base.language.install,lang:0 @@ -1593,7 +1594,7 @@ msgstr "Port SMTP" #. module: base #: help:res.users,login:0 msgid "Used to log into the system" -msgstr "Použito k záznamu do systému" +msgstr "Použito k přihlášení do systému" #. module: base #: view:base.language.export:0 @@ -1781,7 +1782,7 @@ msgstr "" #: model:ir.module.category,name:base.module_category_purchase_management #: model:ir.ui.menu,name:base.menu_purchase_root msgid "Purchases" -msgstr "Nákupy" +msgstr "Nákup" #. module: base #: model:res.country,name:base.md @@ -1847,9 +1848,9 @@ msgid "" "use the accounting application of OpenERP, journals and accounts will be " "created automatically based on these data." msgstr "" -"Nastavte bankovní účty vaší společnosti a vyberty ty, které se musí zobrazit " -"v patičce zprávy. V seznamu můžete změnit pořadí účtů. Pokud používáte " -"účetní aplikaci OpenERP, deníky a účty budou na základě těchto dat vytvořeny " +"Nastavte bankovní účty vaší firmy a vyberty ty, které se musí zobrazit v " +"zápatí zprávy. V seznamu můžete změnit pořadí účtů. Pokud používáte účetní " +"aplikaci OpenERP, deníky a účty budou na základě těchto dat vytvořeny " "automaticky." #. module: base @@ -1863,8 +1864,8 @@ msgid "" "If specified, this action will be opened at logon for this user, in addition " "to the standard menu." msgstr "" -"Pokud je zadáno, akce bude otevřena při přihlášení tohoto uživatele, navíc k " -"standardní nabídce." +"Je-li určeno, akce bude otevřena při přihlášení tohoto uživatele, navíc ke " +"standardnímu menu." #. module: base #: model:res.country,name:base.mf @@ -1910,7 +1911,7 @@ msgstr "%Y - Rok se stoletím." #. module: base #: view:res.company:0 msgid "Report Footer Configuration" -msgstr "Nastavení patičky zprávy" +msgstr "Nastavení zápatí sestavy" #. module: base #: field:ir.translation,comments:0 @@ -1945,10 +1946,10 @@ msgstr "" "Zákaladní modul pro správu stravování.\n" "================================\n" "\n" -"Mnoho společností si objednává sendviče, pizzu a jiné pokrmy od obvyklých " +"Mnoho firem si objednává sendviče, pizzu a jiné pokrmy od obvyklých " "dodavatelů aby je mohly nabídnout zaměstnancům. \n" "\n" -"Správa stravování společnosti však vyžaduje pořádné řízení, zejména když je " +"Správa stravování firmy však vyžaduje pořádné řízení, zejména když je " "podstatné množství zaměstnanců nebo dodavatelů. \n" "\n" "Modul \"Objednávka stravování\" byl vyvinut pro usnadnění tohoto úkolu, " @@ -1994,13 +1995,13 @@ msgid "" "Helps you manage your purchase-related processes such as requests for " "quotations, supplier invoices, etc..." msgstr "" -"Pomůže vám spravovat vaše nákupní procesy jako požadavky na ocenění, faktury " -"dodavatelů, aj." +"Pomůže vám spravovat vaše nákupní procesy jako požadavky na nacenění, " +"faktury dodavatelů, apod." #. module: base #: help:res.partner,website:0 msgid "Website of Partner or Company" -msgstr "Webová stránka partnera nebo společnosti" +msgstr "Webová stránka kontaktu" #. module: base #: help:base.language.install,overwrite:0 @@ -2008,7 +2009,7 @@ msgid "" "If you check this box, your customized translations will be overwritten and " "replaced by the official ones." msgstr "" -"Pokud toto zaškrtnete, vaše vlastní překlady budou přepsány a nahrazeny těmi " +"Zaškrtnete-li, vaše vlastní překlady budou přepsány a nahrazeny těmi " "oficiálními." #. module: base @@ -2016,7 +2017,7 @@ msgstr "" #: field:ir.module.module,reports_by_module:0 #: model:ir.ui.menu,name:base.menu_ir_action_report_xml msgid "Reports" -msgstr "Výkazy" +msgstr "Sestavy" #. module: base #: help:ir.actions.act_window.view,multi:0 @@ -2025,8 +2026,8 @@ msgid "" "If set to true, the action will not be displayed on the right toolbar of a " "form view." msgstr "" -"Pokud je nastaveno na pravda, akce nebude zobrazena v pravm nástrojovém " -"panelu formulářového pohledu." +"Je-li nastaveno 'správně', akce nebude zobrazena v pravm nástrojovém panelu " +"zobrazení 'formulář'." #. module: base #: field:workflow,on_create:0 @@ -2060,7 +2061,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_project_issue msgid "Portal Issue" -msgstr "Úkol portálu" +msgstr "Portál problémů" #. module: base #: model:ir.ui.menu,name:base.menu_tools @@ -2082,7 +2083,7 @@ msgid "" msgstr "" "Ručně: Spuštěno ručně.\n" "Automaticky: Spustí se při změně nastavení systému.\n" -"Jednou ručně spustit: jakmile je ručně spuštěno, nastaví se automaticky na " +"Spustit jednou ručně: jakmile je ručně spuštěno, nastaví se automaticky na " "Hotovo." #. module: base @@ -2109,7 +2110,7 @@ msgstr "Informace průvodce" #: model:ir.actions.act_window,name:base.action_wizard_lang_export #: model:ir.ui.menu,name:base.menu_wizard_lang_export msgid "Export Translation" -msgstr "Exportovat překlad" +msgstr "Export překladu" #. module: base #: model:ir.actions.act_window,name:base.action_server_action @@ -2184,7 +2185,7 @@ msgid "" msgstr "" "Pomůže získat maximum z vašich prodejních míst díky rychlému zadávání " "prodejů, zjednodušenému zádávání režimu plateb, automatickému generování " -"dodacích listů a další." +"dodacích listů a dalším." #. module: base #: code:addons/base/ir/ir_fields.py:164 @@ -2201,7 +2202,7 @@ msgstr "Nizozemsko" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_event msgid "Portal Event" -msgstr "Událost porátlu" +msgstr "Portál událostí" #. module: base #: selection:ir.translation,state:0 @@ -2299,12 +2300,12 @@ msgstr "7. %H:%M:%S ==> 18:25:20" #: view:res.partner:0 #: field:res.partner.category,partner_ids:0 msgid "Partners" -msgstr "Společníci" +msgstr "Kontakty" #. module: base #: field:res.partner.category,parent_left:0 msgid "Left parent" -msgstr "Levý rodič" +msgstr "?!?Opuštěné nadřazené" #. module: base #: model:ir.module.module,shortdesc:base.module_project_mrp @@ -2354,6 +2355,13 @@ msgid "" " templates to target objects.\n" " " msgstr "" +"\n" +" * ?!?Podpora pro více jazyků účtových osnov, daní, daňových kódů, " +"deníků, šablon účtů, analytickou osnovu účtů a analytické deníky.\n" +" * ?!?Průvodce nastavením změn\n" +" - Zkopírujte překlady účtové osnovy, daně, daňové kódy a účetní " +"pozice ze šablon do cílových objektů.\n" +" " #. module: base #: field:workflow.transition,act_from:0 @@ -2363,7 +2371,7 @@ msgstr "Zdrojové činnosti" #. module: base #: view:ir.sequence:0 msgid "Legend (for prefix, suffix)" -msgstr "Vysvětlívky (pro předponu, příponu)" +msgstr "Vysvětlivky (pro předponu, příponu)" #. module: base #: selection:ir.server.object.lines,type:0 @@ -2468,7 +2476,7 @@ msgstr "" #. module: base #: field:ir.ui.menu,complete_name:0 msgid "Full Path" -msgstr "Plná cesta" +msgstr "Úplná cesta" #. module: base #: view:base.language.export:0 @@ -2518,7 +2526,7 @@ msgstr "Sekunda: %(sec)s" #. module: base #: field:ir.actions.act_window,view_mode:0 msgid "View Mode" -msgstr "Režim pohledu" +msgstr "Režim zobrazení" #. module: base #: help:res.partner.bank,footer:0 @@ -2578,7 +2586,7 @@ msgstr "Bahamy" #. module: base #: field:ir.rule,perm_create:0 msgid "Apply for Create" -msgstr "" +msgstr "Použít pro vytvoření" #. module: base #: model:ir.module.category,name:base.module_category_tools @@ -2670,13 +2678,14 @@ msgid "" "Views allows you to personalize each view of OpenERP. You can add new " "fields, move fields, rename them or delete the ones that you do not need." msgstr "" -"Pohledy vám umožňují přizpůsobit každý pohled OpenERP. Můžete přidat nové " -"pole, přesunout pole, přejmenovat je nebo smazat ty, které nepotřebujete." +"Zobrazení vám umožňují přizpůsobit každé zobrazení OpenERP. Můžete přidat " +"nové pole, přesunout pole, přejmenovat je nebo smazat ty, které " +"nepotřebujete." #. module: base #: model:ir.module.module,shortdesc:base.module_base_setup msgid "Initial Setup Tools" -msgstr "Nástroje prvotního nastavení" +msgstr "Nástroje výchozího nastavení" #. module: base #: field:ir.actions.act_window,groups_id:0 @@ -2711,7 +2720,7 @@ msgstr "Belize" #. module: base #: help:ir.actions.report.xml,header:0 msgid "Add or not the corporate RML header" -msgstr "Přidat nebo nepřidat RML hlavičku společnosti" +msgstr "Přidat nebo nepřidat RML hlavičku firmy" #. module: base #: model:ir.module.module,description:base.module_portal_anonymous @@ -2837,18 +2846,18 @@ msgid "" "View type: Tree type to use for the tree view, set to 'tree' for a " "hierarchical tree view, or 'form' for a regular list view" msgstr "" -"Druh pohledu: Stromový typ pro zobrazení stromu, pro hierarchický stromový " -"pohled nastavte na 'tree' nebo na 'form' pro klasický seznam" +"Druh zobrazení: Použijte 'strom' pro hierarchické stromové zobrazení nebo " +"'formulář' pro klasický seznam." #. module: base #: sql_constraint:ir.ui.view_sc:0 msgid "Shortcut for this menu already exists!" -msgstr "Zkratka pro tuto nabídku již existuje!" +msgstr "Zkratka pro toto menu již existuje!" #. module: base #: view:ir.rule:0 msgid "Groups (no group = global)" -msgstr "Skupiny (žádné skupiny = celkový)" +msgstr "Skupiny (žádné skupiny = celkové)" #. module: base #: view:ir.module.module:0 @@ -2858,7 +2867,7 @@ msgstr "Dodatečné" #. module: base #: model:res.country,name:base.st msgid "Saint Tome (Sao Tome) and Principe" -msgstr "¨" +msgstr "Saint Tome (Sao Tome) and Principe" #. module: base #: selection:res.partner,type:0 @@ -2929,7 +2938,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth_signup msgid "Signup with OAuth2 Authentication" -msgstr "Přihlášení s autentizací OAuth2" +msgstr "Přihlášení s OAuth2 ověřením" #. module: base #: selection:ir.model,state:0 @@ -2941,7 +2950,7 @@ msgstr "Vlastní objekt" #: view:ir.ui.menu:0 #: field:ir.ui.menu,name:0 msgid "Menu" -msgstr "Nabídka" +msgstr "Menu" #. module: base #: field:res.currency,rate:0 @@ -2961,7 +2970,7 @@ msgstr "Vlastní patička" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_crm msgid "Opportunity to Quotation" -msgstr "Možnost nabídky" +msgstr "Příležitost na nabídku" #. module: base #: model:ir.module.module,description:base.module_sale_analytic_plans @@ -3018,7 +3027,7 @@ msgstr "Marže podle výrobků" #. module: base #: model:ir.ui.menu,name:base.menu_invoiced msgid "Invoicing" -msgstr "Fakturování" +msgstr "Fakturace" #. module: base #: field:ir.ui.view_sc,name:0 @@ -3028,7 +3037,7 @@ msgstr "Název zkratky" #. module: base #: field:res.partner,contact_address:0 msgid "Complete Address" -msgstr "" +msgstr "Úplná adresa" #. module: base #: help:ir.actions.act_window,limit:0 @@ -3054,7 +3063,7 @@ msgstr "" #. module: base #: view:ir.actions.report.xml:0 msgid "RML Report" -msgstr "Výkaz RML" +msgstr "Sestava RML" #. module: base #: model:ir.ui.menu,name:base.menu_translation_export @@ -3205,7 +3214,7 @@ msgstr "Argumenty odeslané klientovi spolu se značku pohledu" #. module: base #: model:ir.module.module,summary:base.module_contacts msgid "Contacts, People and Companies" -msgstr "Kontakty, lidé a společnosti" +msgstr "Kontakty, lidé a firmy" #. module: base #: model:res.country,name:base.tt @@ -3220,7 +3229,7 @@ msgstr "Lotyšsko" #. module: base #: view:ir.actions.server:0 msgid "Field Mappings" -msgstr "Mapování polí" +msgstr "Mapování pole" #. module: base #: view:base.language.export:0 @@ -3254,7 +3263,7 @@ msgstr "" #: model:res.groups,name:base.group_sale_manager #: model:res.groups,name:base.group_tool_manager msgid "Manager" -msgstr "Správce" +msgstr "vedoucí" #. module: base #: code:addons/base/ir/ir_model.py:727 @@ -3275,7 +3284,7 @@ msgstr "Fidži" #. module: base #: view:ir.actions.report.xml:0 msgid "Report Xml" -msgstr "XML zprávy" +msgstr "XML sestavy" #. module: base #: model:ir.module.module,description:base.module_purchase @@ -3407,8 +3416,8 @@ msgid "" "Lets you install various tools to simplify and enhance OpenERP's report " "creation." msgstr "" -"Umožní vám instalovat rozličné nástroje ke zjednodušení a vylepšení " -"vytváření výkazů OpenERP." +"Umožní vám instalovat různé nástroje k jednoduššímu a dokonalejšímu " +"vytváření sestav." #. module: base #: view:res.lang:0 @@ -3486,7 +3495,7 @@ msgstr "Chyba!" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_fr_rib msgid "French RIB Bank Details" -msgstr "" +msgstr "French RIB Bank Details" #. module: base #: view:res.lang:0 @@ -3496,12 +3505,12 @@ msgstr "%p - Odpovídá buď AM nebo PM." #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" -msgstr "Akce přírůstku" +msgstr "Akce opakování" #. module: base #: help:multi_company.default,company_id:0 msgid "Company where the user is connected" -msgstr "Společnost, kde je uživatel připojen" +msgstr "Firma, kde je uživatel připojen" #. module: base #: model:res.groups,comment:base.group_sale_manager @@ -3589,7 +3598,7 @@ msgstr "" #. module: base #: field:res.company,rml_header1:0 msgid "Company Tagline" -msgstr "Slogan společnosti" +msgstr "Firemní slogan" #. module: base #: code:addons/base/res/res_users.py:674 @@ -3658,7 +3667,7 @@ msgstr "Kuba" #: code:addons/report_sxw.py:443 #, python-format msgid "Unknown report type: %s" -msgstr "Neznámý typ zprávy: %s" +msgstr "Neznámý druh sestavy: %s" #. module: base #: model:ir.module.module,summary:base.module_hr_expense @@ -3707,7 +3716,7 @@ msgstr "Švédsko" #. module: base #: field:ir.actions.report.xml,report_file:0 msgid "Report File" -msgstr "Soubor výkazu" +msgstr "Soubor sestavy" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -3843,8 +3852,9 @@ msgid "" "separated list of valid field names (optionally followed by asc/desc for the " "direction)" msgstr "" -"Určeno neplatné \"pořadí\". Platné učení \"pořadí\" je čárkou oddělený " -"seznam platných jmen polí (volitelně následovaný asc/desc pro směr)" +"Zadáno nesprávné 'pořadí'. Správné 'pořadí' je čárkou oddělený seznam " +"platných jmen polí. Může být následováno upřesněním směru (asc = vzestupně, " +"desc = sestupně)." #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency @@ -3863,9 +3873,9 @@ msgid "" "way you want to print them in letters and other documents. Some example: " "Mr., Mrs. " msgstr "" -"Spravuje tituly kontaktů, které chcete mít dostupné ve vašem systému a " -"způsob, jakým je tisknout na dopisech a jiných dokumentech. Některé " -"příklady: Pan, Paní " +"Spravuje oslovení osob, které chcete mít dostupné ve vašem systému a způsob, " +"jakým se budou tisknout na dopisech a jiných dokumentech. Například: pan, " +"paní, apod. " #. module: base #: view:ir.model.access:0 @@ -3898,12 +3908,12 @@ msgstr "Závislosti" #. module: base #: field:multi_company.default,company_id:0 msgid "Main Company" -msgstr "Hlavní společnost" +msgstr "Hlavní firma" #. module: base #: field:ir.ui.menu,web_icon_hover:0 msgid "Web Icon File (hover)" -msgstr "Název webové ikony (při najetí myší)" +msgstr "Soubor webové ikony (po přejetí myší)" #. module: base #: help:res.currency,name:0 @@ -3921,13 +3931,12 @@ msgid "" "If you use a formula type, use a python expression using the variable " "'object'." msgstr "" -"Pokud použijete typ vzorce, použijte výraz pythonu s použitím proměnné " -"'object'." +"Používáte-li typ vzorce, použijte výraz pythonu s použitím proměnné 'object'." #. module: base #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "Chyba! Nemůžete vytvářet rekurzivní společnosti." +msgstr "Chyba! Nemůžete vytvářet rekurzivní firmy." #. module: base #: field:res.partner,birthdate:0 @@ -4019,7 +4028,7 @@ msgstr "Mapování polí" #: model:res.partner.title,name:base.res_partner_title_sir #: model:res.partner.title,shortcut:base.res_partner_title_sir msgid "Sir" -msgstr "Pan" +msgstr "sir" #. module: base #: model:ir.module.module,description:base.module_l10n_ca @@ -4060,7 +4069,7 @@ msgstr "" #. module: base #: field:ir.actions.server,fields_lines:0 msgid "Field Mappings." -msgstr "Mapování polí." +msgstr "Mapování pole." #. module: base #: selection:res.request,priority:0 @@ -4174,7 +4183,7 @@ msgstr "" #. module: base #: help:ir.mail_server,smtp_host:0 msgid "Hostname or IP of SMTP server" -msgstr "Hostitelský název nebo IP adresa SMTP serveru" +msgstr "Název hostitele nebo IP adresa SMTP serveru" #. module: base #: model:res.country,name:base.aq @@ -4194,7 +4203,7 @@ msgstr "_Import" #. module: base #: field:res.users,action_id:0 msgid "Home Action" -msgstr "Hlavní Akce" +msgstr "Hlavní akce" #. module: base #: field:res.lang,grouping:0 @@ -4204,7 +4213,7 @@ msgstr "Formát oddělovače" #. module: base #: model:ir.module.module,shortdesc:base.module_report_webkit msgid "Webkit Report Engine" -msgstr "Vykazovací engine Webkitu" +msgstr "Webkit Report Engine" #. module: base #: model:ir.ui.menu,name:base.next_id_9 @@ -4244,7 +4253,7 @@ msgstr "Vzájemné působení pravidel" #: field:res.company,rml_footer:0 #: field:res.company,rml_footer_readonly:0 msgid "Report Footer" -msgstr "Patička výkazu" +msgstr "Zápatí sestavy" #. module: base #: selection:res.lang,direction:0 @@ -4269,14 +4278,14 @@ msgstr "Filtry" #: view:ir.cron:0 #: model:ir.ui.menu,name:base.menu_ir_cron_act msgid "Scheduled Actions" -msgstr "Naplánovat akce" +msgstr "Naplánované akce" #. module: base #: model:ir.module.category,name:base.module_category_reporting #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_reporting msgid "Reporting" -msgstr "Vykazování" +msgstr "Sestavy" #. module: base #: field:res.partner,title:0 @@ -4287,7 +4296,7 @@ msgstr "Oslovení" #. module: base #: help:ir.property,res_id:0 msgid "If not set, acts as a default value for new resources" -msgstr "Pokud není nastaveno, chová se jako výchozí hodnota pro nové zdroje" +msgstr "Není-li nastaveno, chová se jako výchozí hodnota pro nové zdroje." #. module: base #: code:addons/orm.py:4246 @@ -4365,7 +4374,7 @@ msgstr "Cílový model" #. module: base #: selection:ir.sequence,implementation:0 msgid "Standard" -msgstr "Běžný" +msgstr "Standardní" #. module: base #: model:res.country,name:base.ru @@ -4389,7 +4398,7 @@ msgstr "Přístup zamítnut" #. module: base #: field:res.company,name:0 msgid "Company Name" -msgstr "Název společnosti" +msgstr "Název firmy" #. module: base #: code:addons/orm.py:2808 @@ -4410,7 +4419,7 @@ msgstr "Země" #. module: base #: selection:ir.translation,type:0 msgid "RML (deprecated - use Report)" -msgstr "RML (zastaralé - použijte Výkaz)" +msgstr "RML (zastaralé - použijte sestavu)" #. module: base #: model:ir.module.module,description:base.module_l10n_fr_hr_payroll @@ -4838,7 +4847,7 @@ msgstr "Austrálie" #. module: base #: report:ir.module.reference:0 msgid "Menu :" -msgstr "Nabídka :" +msgstr "Menu :" #. module: base #: selection:ir.model.fields,state:0 @@ -4897,7 +4906,7 @@ msgstr "Omezení" #: selection:ir.values,key:0 #: selection:res.partner,type:0 msgid "Default" -msgstr "Standartní" +msgstr "Výchozí" #. module: base #: model:ir.module.module,summary:base.module_lunch @@ -4966,18 +4975,18 @@ msgid "" "When no specific mail server is requested for a mail, the highest priority " "one is used. Default priority is 10 (smaller number = higher priority)" msgstr "" -"Pokud není pro mail vyžádán žádný určitý server, použije se ten s nejvyšší " -"prioritou. Výchozí priorita je 10 (nižší číslo = vyšší priorita)" +"Pokud není pro e-mail požadován žádný určitý server, použije se ten s " +"nejvyšší prioritou. Výchozí priorita je 10 (nižší číslo = vyšší priorita)" #. module: base #: model:ir.module.module,summary:base.module_sale msgid "Quotations, Sales Orders, Invoicing" -msgstr "Nabídky, potvrzení objednávek, fakturace" +msgstr "Nabídky, zakázky, fakturace" #. module: base #: field:res.partner,parent_id:0 msgid "Related Company" -msgstr "Související společnost" +msgstr "Související firma" #. module: base #: help:ir.actions.act_url,help:0 @@ -4992,8 +5001,8 @@ msgid "" "Optional help text for the users with a description of the target view, such " "as its usage and purpose." msgstr "" -"Volitelný text nápovědy pro uživatele s popisem cílového pohledu, jako třeba " -"jejich použití a účel." +"Volitelný text nápovědy pro uživatele s popisem cílového zobrazení, jako " +"třeba jejich použití a účel." #. module: base #: model:res.country,name:base.va @@ -5013,7 +5022,7 @@ msgstr "Telekomunikační odvětví" #. module: base #: field:workflow.transition,trigger_model:0 msgid "Trigger Object" -msgstr "Spustit objekt" +msgstr "Objekt spouštěče" #. module: base #: sql_constraint:ir.sequence.type:0 @@ -5029,7 +5038,7 @@ msgstr "Systém správy znalostí" #: view:workflow.activity:0 #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" -msgstr "Příchozí změny" +msgstr "Přechod na začátku" #. module: base #: field:ir.values,value_unpickle:0 @@ -5078,7 +5087,7 @@ msgstr "Účtovaný čas úloh" #: model:ir.ui.menu,name:base.marketing_menu #: model:ir.ui.menu,name:base.menu_report_marketing msgid "Marketing" -msgstr "Marketink" +msgstr "Marketing" #. module: base #: view:res.partner.bank:0 @@ -5106,7 +5115,7 @@ msgstr "Španělština (HN) / Español (HN)" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "Druh posloupnosti" +msgstr "Druh řady" #. module: base #: view:base.language.export:0 @@ -5168,9 +5177,9 @@ msgid "" "groups. If this field is empty, OpenERP will compute visibility based on the " "related object's read access." msgstr "" -"Pokud máte skupiny, viditelnost této nabídky bude založena na těchto " -"skupinách. Pokud je toto pole prázdné, OpenERP spočítá viditelnost na " -"základě přístupu pro čtení vztažených objektů." +"Máte-li skupiny, viditelnost tohoto menu bude založena na těchto skupinách. " +"Pokud je toto pole prázdné, OpenERP spočítá viditelnost na základě přístupu " +"pro čtení vztažených objektů." #. module: base #: model:ir.module.module,description:base.module_event_sale @@ -5246,7 +5255,7 @@ msgstr "" #: selection:ir.translation,type:0 #: view:ir.ui.view:0 msgid "View" -msgstr "Pohled" +msgstr "Zobrazení" #. module: base #: code:addons/base/ir/ir_fields.py:146 @@ -5347,7 +5356,7 @@ msgstr "Švýcarsko - Účetnictví" #: field:res.partner,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" -msgstr "Zip" +msgstr "PSČ" #. module: base #: view:ir.module.module:0 @@ -5375,12 +5384,12 @@ msgid "" msgstr "" "Databáze je nyní plně nastavena.\n" "\n" -"Klikněte na 'Pokračovat' a užívejte si and enjoy your OpenERP experience..." +"Klepněte na 'Pokračovat' a užívejte si OpenERP…" #. module: base #: model:ir.module.category,description:base.module_category_marketing msgid "Helps you manage your marketing campaigns step by step." -msgstr "Pomáhá vám krok za krokem spravovat vaše marketingové kampaně." +msgstr "Pomůže vám krok za krokem spravovat vaše marketingové kampaně." #. module: base #: selection:base.language.install,lang:0 @@ -5415,7 +5424,7 @@ msgstr "Směr" #: view:res.groups:0 #: field:res.groups,view_access:0 msgid "Views" -msgstr "Pohledy" +msgstr "Zobrazení" #. module: base #: view:res.groups:0 @@ -5594,7 +5603,7 @@ msgstr ", nebo váš oblíbený textový editor" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign msgid "Partners Geo-Localization" -msgstr "Geolokace partnerů" +msgstr "Geolokace kontaktů" #. module: base #: model:res.country,name:base.ke @@ -5605,7 +5614,7 @@ msgstr "Keňa" #: model:ir.actions.act_window,name:base.action_translation #: model:ir.ui.menu,name:base.menu_action_translation msgid "Translated Terms" -msgstr "Překládané výrazy" +msgstr "Přeložené výrazy" #. module: base #: selection:base.language.install,lang:0 @@ -5661,7 +5670,7 @@ msgstr "Uložit" #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML Path" -msgstr "Cesta XML" +msgstr "XML Path" #. module: base #: model:res.country,name:base.bj @@ -5703,7 +5712,7 @@ msgstr "Klíč" #. module: base #: field:res.company,rml_header:0 msgid "RML Header" -msgstr "Hlavička RML" +msgstr "Záhlaví RML" #. module: base #: help:res.country,address_format:0 @@ -5771,7 +5780,7 @@ msgstr "Změna systému ukládání pole \"%s\" není povolena." #. module: base #: help:res.partner.bank,company_id:0 msgid "Only if this bank account belong to your company" -msgstr "Pouze pokud je toto bankovní účet vaší společnosti" +msgstr "Pouze pokud je tento bankovní účet vaší firmy" #. module: base #: code:addons/base/ir/ir_fields.py:337 @@ -5851,7 +5860,7 @@ msgstr "Další číslo" #. module: base #: help:workflow.transition,condition:0 msgid "Expression to be satisfied if we want the transition done." -msgstr "Podmínky, které je potřeba dodržet pokud chcete provést změny." +msgstr "Podmínky, které je potřeba dodržet pro provedení přechodu." #. module: base #: selection:base.language.install,lang:0 @@ -5971,12 +5980,12 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_category_form msgid "Partner Tags" -msgstr "Značky partnerů" +msgstr "Značky kontaktů" #. module: base #: view:res.company:0 msgid "Preview Header/Footer" -msgstr "Zobrazit náhled hlavičky/patičky" +msgstr "Zobrazit náhled záhlaví/zápatí" #. module: base #: field:ir.ui.menu,parent_id:0 @@ -6074,7 +6083,7 @@ msgstr "Druh omezení" #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" -msgstr "Dceřiné společnosti" +msgstr "Dceřiné firmy" #. module: base #: model:res.country,name:base.ni @@ -6216,7 +6225,7 @@ msgstr "" #. module: base #: model:res.groups,name:base.group_sale_salesman_all_leads msgid "See all Leads" -msgstr "Zobrazit všechny vedoucí" +msgstr "Zobrazit všechny zájemce" #. module: base #: model:res.country,name:base.ci @@ -6285,8 +6294,8 @@ msgid "" "If set to true, the action will not be displayed on the right toolbar of a " "form view" msgstr "" -"Pokud nastaveno na pravda, akce nebude zobrazena v pravém nástrojovém panelu " -"formulářového pohledu" +"Je-li nastaveno 'správně', akce nebude zobrazena v pravém nástrojovém panelu " +"zobrazení 'formulář'." #. module: base #: model:res.country,name:base.ms @@ -6354,8 +6363,8 @@ msgid "" "Source activity. When this activity is over, the condition is tested to " "determine if we can start the ACT_TO activity." msgstr "" -"Zdrojové činnosti. Když tyto činnosti skonči, je testována podmínka k určení " -"jestli máme nastartovat činnosti ACT_TO." +"Zdrojové činnosti. Když tato činnost skonči, je testována podmínka k určení " +"jestli máme zahájit činnosti ACT_TO." #. module: base #: model:ir.module.category,name:base.module_category_generic_modules_accounting @@ -6425,12 +6434,11 @@ msgstr "" "neexistující\n" " nebo zrušená.\n" " \n" -" *Pokud je zapnuta volba \"Ověření DIČ VIES\" (v nastavení společnosti\n" +" *Pokud je zapnuta volba \"Ověření DIČ VIES\" (v nastavení firmy\n" " uživatele), čísla DIČ jsou místo toho odesílána online do databáze EU\n" " VIES, která skutečně ověří, zda je číslo správné a momentálně " "přiřazené\n" -" ke společnosti v EU. Tento postup je o něco pomalejší než prosté " -"ověření\n" +" k firmě v EU. Tento postup je o něco pomalejší než prosté ověření\n" " offline, vyžaduje připojení k internetu a nemusí být vždy dostupný " "pokud\n" " má služba výpadek nebo nepodporuje cílovou zemi (například v případě\n" @@ -6466,7 +6474,7 @@ msgstr "Angličtina / English (CA)" #. module: base #: model:ir.module.category,name:base.module_category_human_resources msgid "Human Resources" -msgstr "Lidské zdroje" +msgstr "Personalistika" #. module: base #: model:ir.module.module,description:base.module_l10n_syscohada @@ -6536,7 +6544,7 @@ msgstr "název" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "true" -msgstr "pravda" +msgstr "správně" #. module: base #: model:ir.model,name:base.model_base_language_install @@ -6571,7 +6579,7 @@ msgstr "Při smazání vlastnosti pro pole many2one" #. module: base #: model:ir.module.category,name:base.module_category_accounting_and_finance msgid "Accounting & Finance" -msgstr "Účetnictví & peněžnictví" +msgstr "Účetnictví & Finance" #. module: base #: field:ir.actions.server,write_id:0 @@ -6581,7 +6589,7 @@ msgstr "Id zápisu" #. module: base #: model:ir.ui.menu,name:base.menu_product msgid "Products" -msgstr "Výrobky" +msgstr "Produkty" #. module: base #: model:ir.actions.act_window,name:base.act_values_form_defaults @@ -6663,7 +6671,7 @@ msgstr "" #: code:addons/base/ir/workflow/workflow.py:99 #, python-format msgid "Operation forbidden" -msgstr "Operace nepovolena" +msgstr "Operace zakázána" #. module: base #: view:ir.actions.server:0 @@ -6677,9 +6685,9 @@ msgid "" "deleting it (if you delete a native record rule, it may be re-created when " "you reload the module." msgstr "" -"Pokud odšrtnete aktivní pole, vypne se pravidlo záznamu bez jeho smazání " -"(pokud smažete nativní pravidlo záznamu, může být znovuvytvořeno při " -"obnovení modulu)." +"Odškrtnete-li aktivní pole, vypne se pravidlo záznamu bez jeho smazání " +"(pokud smažete nativní pravidlo záznamu, může být znovu vytvořeno při " +"opětovném načtení modulu)." #. module: base #: selection:base.language.install,lang:0 @@ -6725,8 +6733,8 @@ msgid "" "How many times the method is called,\n" "a negative number indicates no limit." msgstr "" -"Kolikrát bude metoda zavolána,\n" -"negativní číslo značí neomezený počet." +"Kolikrát bude metoda volána,\n" +"negativní číslo znamená neomezeně." #. module: base #: field:res.partner.bank.type.field,bank_type_id:0 @@ -6767,7 +6775,7 @@ msgstr "Gujarati / ગુજરાતી" msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" msgstr "" -"Nelze zpracovat modul \"%s\", protože vnější závislost nebyla splněna: %s" +"Nelze zpracovat modul \"%s\", protože nevyhovuje vnější závislost: %s" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll @@ -6778,7 +6786,7 @@ msgstr "Belgie - výplatní páska" #: view:workflow.activity:0 #: field:workflow.activity,flow_start:0 msgid "Flow Start" -msgstr "Začátek toku" +msgstr "Začátek postupu" #. module: base #: model:ir.model,name:base.model_res_partner_title @@ -6788,7 +6796,7 @@ msgstr "res.partner.title" #. module: base #: view:res.partner.bank:0 msgid "Bank Account Owner" -msgstr "Vlastník bankovního účtu" +msgstr "Majitel bankovního účtu" #. module: base #: model:ir.module.category,name:base.module_category_uncategorized @@ -6803,7 +6811,7 @@ msgstr "Telefon:" #. module: base #: field:res.partner,is_company:0 msgid "Is a Company" -msgstr "Je společnost" +msgstr "Firma" #. module: base #: view:res.company:0 @@ -6837,14 +6845,14 @@ msgid "" "form, signal tests the name of the pressed button. If signal is NULL, no " "button is necessary to validate this transition." msgstr "" -"Když je operace přechodu přijde ze stisknutého tlačítka v klientském " -"formuláři, signal otestuje jméno stisknutého tlačítka. Pokud je signál NULL, " -"žádné tlačítko není potřeba ověřovat tímto přechodem." +"Když operace přechodu přijde ze stisknutého tlačítka v klientském formuláři, " +"signal otestuje jméno stisknutého tlačítka. Pokud je signál NULL, žádné " +"tlačítko není potřeba k ověření tohoto přechodu." #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" -msgstr "Původní pohled" +msgstr "Původní zobrazení" #. module: base #: model:ir.module.module,description:base.module_web_kanban @@ -6904,7 +6912,7 @@ msgstr "Adresář" #. module: base #: field:wizard.ir.model.menu.create,name:0 msgid "Menu Name" -msgstr "Název nabídky" +msgstr "Název menu" #. module: base #: field:ir.values,key2:0 @@ -7023,7 +7031,7 @@ msgstr "Malajsie" #: code:addons/base/ir/ir_sequence.py:130 #, python-format msgid "Increment number must not be zero." -msgstr "Inkrement musí být nenulový." +msgstr "Přírůstek čísla nemůže být nulový." #. module: base #: model:ir.module.module,shortdesc:base.module_account_cancel @@ -7079,9 +7087,8 @@ msgid "" "If enabled, the full output of SMTP sessions will be written to the server " "log at DEBUG level(this is very verbose and may include confidential info!)" msgstr "" -"Pokud je tato volba zapnuta, celý výstup SMTP sezení bude zapsán do logu na " -"serveru v úrovni DEBUG (což je velmi podrobné a může obsahovat důvěrné " -"informace!)" +"Je-li povoleno, celý výstup SMTP relace bude zapsán do logu serveru v úrovni " +"DEBUG (což je velmi podrobné a může obsahovat důvěrné informace!)." #. module: base #: model:ir.module.module,description:base.module_sale_margin @@ -7317,6 +7324,9 @@ msgid "" "An arbitrary string, interpreted by the client according to its own needs " "and wishes. There is no central tag repository across clients." msgstr "" +"?!?Libovolný řetězec, interpretovaný klientem v závislosti na jeho " +"požadavcích a přáních. Neexistuje žádná centrální značka skladu napříč " +"klienty." #. module: base #: sql_constraint:ir.rule:0 @@ -7417,12 +7427,12 @@ msgstr "Mikronésie" #: field:ir.module.module,menus_by_module:0 #: view:res.groups:0 msgid "Menus" -msgstr "Nabídky" +msgstr "Menu" #. module: base #: selection:ir.actions.todo,type:0 msgid "Launch Manually Once" -msgstr "Jednou ručně spustit" +msgstr "Spustit jednou ručně" #. module: base #: view:workflow:0 @@ -7473,7 +7483,7 @@ msgstr "Formát času" #. module: base #: field:res.company,rml_header3:0 msgid "RML Internal Header for Landscape Reports" -msgstr "Vnitřní hlavička RML pro výkazy na šířku" +msgstr "Vnitřní záhlaví RML pro sestavy na šířku" #. module: base #: model:res.groups,name:base.group_partner_manager @@ -7493,7 +7503,7 @@ msgstr "Seznam úkolů" #. module: base #: view:ir.actions.report.xml:0 msgid "Report xml" -msgstr "XML výkazu" +msgstr "XML sestavy" #. module: base #: model:ir.actions.act_window,name:base.action_module_open_categ @@ -7566,7 +7576,7 @@ msgstr "Mapování objektů" #: field:ir.module.category,xml_id:0 #: field:ir.ui.view,xml_id:0 msgid "External ID" -msgstr "Vnější ID" +msgstr "Externí ID" #. module: base #: help:res.currency.rate,rate:0 @@ -7601,7 +7611,7 @@ msgstr "Botswana" #. module: base #: view:res.partner.title:0 msgid "Partner Titles" -msgstr "Jména partnerů" +msgstr "?!?Titles kontaktů" #. module: base #: code:addons/base/ir/ir_fields.py:196 @@ -7628,7 +7638,7 @@ msgstr "Pracovní dny" #. module: base #: model:ir.module.module,shortdesc:base.module_multi_company msgid "Multi-Company" -msgstr "Více-společností" +msgstr "Více firem" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_workitem_form @@ -7659,8 +7669,8 @@ msgid "" "You cannot perform this operation. New Record Creation is not allowed for " "this object as this object is for reporting purpose." msgstr "" -"Nemůžete rpovést tuto operaci. Vytváření nových záznamů není pro tento " -"objekt povoleno, protože tento objekt je pro účely výkazů." +"Nemůžete provést tuto operaci. Vytváření nových záznamů není pro tento " +"objekt povoleno, protože tento objekt je pro sestavy." #. module: base #: model:ir.module.module,description:base.module_base_import @@ -7704,7 +7714,7 @@ msgid "" "operations. If it is empty, you can not track the new record." msgstr "" "Poskytuje název pole, kde je uloženo id záznamu po vytvoření. Pokud " -"ponecháte prázdné, nebudete moci sledovat nové záznamy." +"ponecháte prázdné, nebudete moci sledovat nový záznam." #. module: base #: model:res.groups,comment:base.group_hr_user @@ -7732,13 +7742,13 @@ msgid "" "If you enable this option, existing translations (including custom ones) " "will be overwritten and replaced by those in this file" msgstr "" -"Pokud povolíte tuto možnost, existující překlady (včetně vlastních) budou " -"přepsány a nahrazeny těmi v tomto souboru" +"Povolíte-li tuto možnost, budou existující překlady (včetně vlastních) " +"přepsány a nahrazeny překlady z tohoto souboru." #. module: base #: field:ir.ui.view,inherit_id:0 msgid "Inherited View" -msgstr "Zděděný pohled" +msgstr "Zděděné zobrazení" #. module: base #: view:ir.translation:0 @@ -7756,7 +7766,7 @@ msgstr "Projekt" #. module: base #: field:ir.ui.menu,web_icon_hover_data:0 msgid "Web Icon Image (hover)" -msgstr "Obrázek webové ikona (vznášející se)" +msgstr "Obrázek webové ikony (po přejetí myší)" #. module: base #: view:base.module.import:0 @@ -7775,7 +7785,7 @@ msgstr "Omezení modelu" #: model:ir.ui.menu,name:base.menu_workflow_transition #: view:workflow.activity:0 msgid "Transitions" -msgstr "Překlady" +msgstr "Přechody" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_timesheet @@ -7786,8 +7796,7 @@ msgstr "Časové rozvrhy" #. module: base #: help:ir.values,company_id:0 msgid "If set, action binding only applies for this company" -msgstr "" -"Pokud je nastaveno, vazby akcí budou platit pouze pro tuto společnost" +msgstr "Je-li nastaveno, vazby akcí budou platit pouze pro tuto firmu" #. module: base #: model:ir.module.module,description:base.module_l10n_cn @@ -7922,7 +7931,7 @@ msgstr "Okamžitá instalace modulu" #. module: base #: view:ir.actions.server:0 msgid "Field Mapping" -msgstr "Mapování polí" +msgstr "Mapování pole" #. module: base #: field:ir.model.fields,ttype:0 @@ -7937,7 +7946,7 @@ msgstr "Kód státu" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_multilang msgid "Multi Language Chart of Accounts" -msgstr "Více jazyčná účtová osnova" +msgstr "Vícejazyčná účtová osnova" #. module: base #: model:ir.module.module,description:base.module_l10n_gt @@ -7955,7 +7964,7 @@ msgstr "" #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" -msgstr "Zleva do prava" +msgstr "Zleva doprava" #. module: base #: field:ir.model.fields,translate:0 @@ -7967,7 +7976,7 @@ msgstr "Přeložitelný" #. module: base #: help:base.language.import,code:0 msgid "ISO Language and Country code, e.g. en_US" -msgstr "ISO jazyk a kód země, např. en_US" +msgstr "ISO jazyk a kód země, např. cs_CZ" #. module: base #: model:res.country,name:base.vn @@ -7982,7 +7991,7 @@ msgstr "Podpis" #. module: base #: field:res.partner.category,complete_name:0 msgid "Full Name" -msgstr "Celé jméno" +msgstr "Úplný název" #. module: base #: view:ir.attachment:0 @@ -8005,6 +8014,8 @@ msgid "" "Action bound to this entry - helper field for binding an action, will " "automatically set the correct reference" msgstr "" +"Akce vázaná k tomuto zadání – pomocné pole pro připojení akce, automaticky " +"naství správný odkaz" #. module: base #: model:ir.ui.menu,name:base.menu_project_long_term @@ -8111,7 +8122,7 @@ msgstr "Severní Mariany" #. module: base #: field:change.password.user,user_login:0 msgid "User Login" -msgstr "Příhlášení uživatele" +msgstr "Přihlášení uživatele" #. module: base #: view:ir.filters:0 @@ -8126,7 +8137,7 @@ msgstr "Honduras - Účetnictví" #. module: base #: model:ir.module.module,shortdesc:base.module_report_intrastat msgid "Intrastat Reporting" -msgstr "Vykazování Intrastat" +msgstr "Sestavy Intrastat" #. module: base #: code:addons/base/res/res_users.py:131 @@ -8135,8 +8146,8 @@ msgid "" "Please use the change password wizard (in User Preferences or User menu) to " "change your own password." msgstr "" -"Ke změně vašeho vlastního hesla prosíme použijte průvodce změny hesla (v " -"uživatelských předvolbách nebo uživatelské nabídce)." +"Ke změně hesla použijte průvodce změny hesla (v uživatelských předvolbách " +"nebo v uživatelském menu)." #. module: base #: model:ir.model,name:base.model_ir_config_parameter @@ -8176,7 +8187,7 @@ msgstr "" #: code:addons/orm.py:2021 #, python-format msgid "Insufficient fields for Calendar View!" -msgstr "Nedostatek polí pro zobraznení kalendáře!" +msgstr "Nedostatek polí pro zobrazení 'kalendář'!" #. module: base #: selection:ir.property,type:0 @@ -8200,7 +8211,7 @@ msgstr "Výrobce" #. module: base #: help:res.users,company_id:0 msgid "The company this user is currently working for." -msgstr "Společnost, pro kterou uživatel aktuálně pracuje." +msgstr "Firma, pro kterou uživatel aktuálně pracuje." #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create @@ -8210,7 +8221,7 @@ msgstr "wizard.ir.model.menu.create" #. module: base #: view:workflow.transition:0 msgid "Transition" -msgstr "Změny" +msgstr "Přechod" #. module: base #: field:ir.cron,active:0 @@ -8339,7 +8350,7 @@ msgstr "" #. module: base #: help:ir.sequence,number_next:0 msgid "Next number of this sequence" -msgstr "Další číslo této posloupnosti" +msgstr "Další číslo této řady" #. module: base #: view:res.partner:0 @@ -8405,7 +8416,7 @@ msgid "" "federal states you are working on from here. Each state is attached to one " "country." msgstr "" -"Pokud pracujete na Americkém trhu, můžete odsud spravovat různé federální " +"Pracujete-li na Americkém trhu, můžete odsud spravovat různé federální " "státy, se kterými pracujete. Každý stát je přiřazen k jedné zemi." #. module: base @@ -8427,7 +8438,7 @@ msgstr "Heslo" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_claim msgid "Portal Claim" -msgstr "" +msgstr "Portál reklamací" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_pe @@ -8475,17 +8486,17 @@ msgstr "" #. module: base #: field:res.company,rml_header2:0 msgid "RML Internal Header" -msgstr "Vnitřní hlavička RML" +msgstr "Vnitřní záhlaví RML" #. module: base #: field:ir.actions.act_window,search_view_id:0 msgid "Search View Ref." -msgstr "Odkaz hledacího pohledu" +msgstr "Odkaz zobrazení 'hledání'" #. module: base #: help:res.users,partner_id:0 msgid "Partner-related data of the user" -msgstr "" +msgstr "Ke kontaktu vztažená data uživatele" #. module: base #: model:ir.module.module,description:base.module_crm_todo @@ -8513,7 +8524,7 @@ msgstr "Myanmar" #. module: base #: help:ir.model.fields,modules:0 msgid "List of modules in which the field is defined" -msgstr "Seznam modulu, ve kterých je pole definováno" +msgstr "Seznam modulů, ve kterých je pole definováno" #. module: base #: selection:base.language.install,lang:0 @@ -8623,6 +8634,8 @@ msgid "" "Allow you to define your own currency rate types, like 'Average' or 'Year to " "Date'. Leave empty if you simply want to use the normal 'spot' rate type" msgstr "" +"Umožňuje definovat vlastní druhy kurzů měn, jako 'průměr' nebo 'od začátku " +"roku'. Pokud chcete používat běžný kurz (spot rate), ponechejte prázdné" #. module: base #: selection:ir.module.module.dependency,state:0 @@ -8676,7 +8689,7 @@ msgstr "Finanční a analytické účetnictví" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_project msgid "Portal Project" -msgstr "" +msgstr "Portál projektů" #. module: base #: model:res.country,name:base.cc @@ -8709,7 +8722,7 @@ msgstr "Pole typu banky" #. module: base #: constraint:ir.rule:0 msgid "Rules can not be applied on Transient models." -msgstr "Pravidla nelze aplikovat na přechodné modely." +msgstr "Pravidla nelze aplikovat na modely přechodů." #. module: base #: selection:base.language.install,lang:0 @@ -8719,7 +8732,7 @@ msgstr "Němčina / Nederlands" #. module: base #: selection:res.company,paper_format:0 msgid "US Letter" -msgstr "Dopis US" +msgstr "US Letter" #. module: base #: model:ir.actions.act_window,help:base.action_partner_customer_form @@ -8734,10 +8747,10 @@ msgid "" " " msgstr "" "

\n" -" Klikněte pro přidání kontaktu do vašeho adresáře.\n" +" Klekněte pro přidání kontaktu do vašeho adresáře.\n" "

\n" " OpenERP vám umožňuje snadno sledovat všechny aktivity\n" -" spojené se zákazníkem, diskusí, historií obchodních " +" spojené se zákazníkem: diskuse, historii obchodních " "příležitostí,\n" " dokumenty, apod.\n" "

\n" @@ -8746,18 +8759,18 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.bank_account_update msgid "Company Bank Accounts" -msgstr "Bankovní účty společnosti" +msgstr "Bankovní účty firmy" #. module: base #: code:addons/base/res/res_users.py:473 #, python-format msgid "Setting empty passwords is not allowed for security reasons!" -msgstr "Nastavení prázdného hesla není povoleno z bezpečnostních důvodů!" +msgstr "Prázdného heslo není z bezpečnostních důvodů povoleno!" #. module: base #: help:ir.mail_server,smtp_pass:0 msgid "Optional password for SMTP authentication" -msgstr "Nepovinné heslo pro SMTP autentizaci" +msgstr "Nepovinné heslo pro ověření SMTP" #. module: base #: code:addons/base/ir/ir_model.py:728 @@ -8785,7 +8798,7 @@ msgstr "Opakovat každých x." #. module: base #: model:res.partner.bank.type,name:base.bank_normal msgid "Normal Bank Account" -msgstr "Obyčejný bankovní účet" +msgstr "Běžný bankovní účet" #. module: base #: field:change.password.user,wizard_id:0 @@ -8802,7 +8815,7 @@ msgstr "id databáze" #. module: base #: model:ir.module.module,shortdesc:base.module_base_import msgid "Base import" -msgstr "" +msgstr "Base import" #. module: base #: report:ir.module.reference:0 @@ -8812,7 +8825,7 @@ msgstr "1cm 28cm 20cm 28cm" #. module: base #: field:ir.module.module,maintainer:0 msgid "Maintainer" -msgstr "Udržovatel" +msgstr "Správce" #. module: base #: field:ir.sequence,suffix:0 @@ -8835,8 +8848,7 @@ msgid "" "Select this if you want to set company's address information for this " "contact" msgstr "" -"Zvolte tuto možnost pokud chcete nastavit kontaktní údaje společnosti pro " -"tento kontakt" +"Zvolte tuto možnost chcete-li pro tento kontakt nastavit firemní adresu" #. module: base #: field:ir.default,field_name:0 @@ -8875,6 +8887,8 @@ msgid "" "This field holds the image used as avatar for this contact, limited to " "1024x1024px" msgstr "" +"Toto pole obsahuje obrázek používaný jako avatar (ikonu) tohoto kontaktu. " +"Velikost je omezena na 1024x1024 bodů." #. module: base #: model:res.country,name:base.to @@ -8892,7 +8906,7 @@ msgstr "" #. module: base #: view:res.partner.bank:0 msgid "Bank accounts belonging to one of your companies" -msgstr "Bankovní účty patřící k jedné z vašich společností" +msgstr "Bankovní účty patřící k jedné z vašich firem" #. module: base #: model:ir.module.module,description:base.module_account_analytic_plans @@ -8964,7 +8978,7 @@ msgstr "Akce klienta" #. module: base #: field:res.partner.bank.type,field_ids:0 msgid "Type Fields" -msgstr "Pole druhu" +msgstr "Druh polí" #. module: base #: model:ir.module.module,summary:base.module_hr_recruitment @@ -8991,7 +9005,7 @@ msgstr "Cílové činnosti" msgid "" "Determines where the currency symbol should be placed after or before the " "amount." -msgstr "" +msgstr "Určuje, zda má být symbol měny umístěn před nebo za částkou." #. module: base #: model:ir.module.module,shortdesc:base.module_pad_project @@ -9006,7 +9020,7 @@ msgstr "base.update.translations" #. module: base #: view:ir.rule:0 msgid "Full Access Right" -msgstr "Plná práva přístupu" +msgstr "Právo plného přístupu" #. module: base #: field:res.partner.category,parent_id:0 @@ -9069,12 +9083,12 @@ msgstr "ir.model.constraint" #. module: base #: model:ir.module.module,shortdesc:base.module_web_graph msgid "Graph Views" -msgstr "Pohledy grafu" +msgstr "Zobrazení graf" #. module: base #: help:ir.model.relation,name:0 msgid "PostgreSQL table name implementing a many2many relation." -msgstr "Název tabulky PostgreSQL implementující relaci many2many." +msgstr "Název tabulky PostgreSQL realizující vztah many2many." #. module: base #: model:ir.module.module,description:base.module_base @@ -9110,7 +9124,7 @@ msgstr "Kuvajt" #. module: base #: model:ir.module.module,shortdesc:base.module_account_followup msgid "Payment Follow-up Management" -msgstr "" +msgstr "Řízení sledování plateb" #. module: base #: code:addons/orm.py:5334 @@ -9160,7 +9174,7 @@ msgstr "Volby výběru musí být dány pro vybraná pole." #. module: base #: model:ir.module.module,shortdesc:base.module_base_iban msgid "IBAN Bank Accounts" -msgstr "Bankovní účty IBAN" +msgstr "IBAN bankovních účtů" #. module: base #: field:res.company,user_ids:0 @@ -9170,7 +9184,7 @@ msgstr "Přijatí uživatelé" #. module: base #: field:ir.ui.menu,web_icon_data:0 msgid "Web Icon Image" -msgstr "Obrázek ikony webu" +msgstr "Obrázek webové ikony" #. module: base #: field:ir.actions.server,wkf_model_id:0 @@ -9195,7 +9209,7 @@ msgstr "Hong Kong" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_sale msgid "Portal Sale" -msgstr "" +msgstr "Portál obchodu" #. module: base #: field:ir.default,ref_id:0 @@ -9286,7 +9300,7 @@ msgstr "" #: help:ir.rule,global:0 msgid "If no group is specified the rule is global and applied to everyone" msgstr "" -"Pravidlo je globální a je použito pro každého, pokud není určena skupina." +"Není-li určena skupima, pravidlo bude globální a bude použito pro každého." #. module: base #: model:res.country,name:base.td @@ -9320,7 +9334,7 @@ msgstr "Podnabídka" #. module: base #: report:ir.module.reference:0 msgid "Introspection report on objects" -msgstr "Výkaz vnitřního náhledu objektů" +msgstr "Sestava vnitřního náhledu objektů" #. module: base #: model:ir.module.module,shortdesc:base.module_web_analytics @@ -9363,7 +9377,7 @@ msgstr "Pokročilé trasy" #. module: base #: model:ir.module.module,shortdesc:base.module_pad msgid "Collaborative Pads" -msgstr "" +msgstr "Collaborative Pads" #. module: base #: model:res.country,name:base.np @@ -9393,7 +9407,7 @@ msgstr "Uživatelé této skupiny automaticky zdědí tyto skupiny" #. module: base #: model:ir.module.module,summary:base.module_note msgid "Sticky notes, Collaborative, Memos" -msgstr "Nalepovací poznámky, spolupráce, záznamy" +msgstr "Nalepovací poznámky, spolupráce, poznámky" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_attendance @@ -9411,7 +9425,7 @@ msgstr "Varovné zprávy a upozornění" #: model:ir.ui.menu,name:base.menu_action_ui_view_custom #: view:ir.ui.view.custom:0 msgid "Customized Views" -msgstr "Vlastní pohledy" +msgstr "Vlastní zobrazení" #. module: base #: view:base.module.import:0 @@ -9476,8 +9490,7 @@ msgstr "Aktualizovat seznam modulů" #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" -msgstr "" -"Modul \"%s\" nelze povýšit, protože vnější závislost nebyla vyhověna: %s" +msgstr "Modul \"%s\" nelze povýšit, protože nevyhovuje vnější závislost: %s" #. module: base #: model:ir.module.module,shortdesc:base.module_account @@ -9493,6 +9506,10 @@ msgid "" "sure to save and close all forms before switching to a different company. " "(You can click on Cancel in the User Preferences now)" msgstr "" +"Mějte prosím na paměti, že zobrazené dokumenty nemusí být aktuální po " +"přepnutí na jinou firmu. Ujistěte se, že nemáte žádné neuložené změny v " +"otevřených oknech. Před přepnutím do jiné firmy uložte a zavřete všechny " +"formuláře. (Nyní můžete klepnout na 'Zrušit' v uživatelských předvolbách)" #. module: base #: code:addons/orm.py:2818 @@ -9534,7 +9551,7 @@ msgstr "Slovinština / slovenščina" #. module: base #: field:res.currency,position:0 msgid "Symbol Position" -msgstr "" +msgstr "Umístění symbolu" #. module: base #: model:ir.module.module,description:base.module_l10n_de @@ -9597,12 +9614,12 @@ msgstr "" #: code:addons/base/ir/ir_mail_server.py:444 #, python-format msgid "Missing SMTP Server" -msgstr "Chybějící server SMTP" +msgstr "Chybí SMTP server" #. module: base #: sql_constraint:ir.translation:0 msgid "Language code of translation item must be among known languages" -msgstr "Kód jazyka překladové položky musí být ze známých jazyků" +msgstr "Kód jazyka překládané položky musí být ze známých jazyků" #. module: base #: field:base.language.export,data:0 @@ -9692,7 +9709,7 @@ msgstr "" #. module: base #: field:multi_company.default,company_dest_id:0 msgid "Default Company" -msgstr "Výchozí společnost" +msgstr "Výchozí firma" #. module: base #: selection:base.language.install,lang:0 @@ -9702,12 +9719,12 @@ msgstr "Španělština (EC) / Español (EC)" #. module: base #: help:ir.ui.view,xml_id:0 msgid "ID of the view defined in xml file" -msgstr "ID pohledu určeného v xml souboru" +msgstr "ID zobrazení definovaného v xml souboru" #. module: base #: model:ir.model,name:base.model_base_module_import msgid "Import Module" -msgstr "Importovat modul" +msgstr "Import modulu" #. module: base #: model:res.country,name:base.as @@ -9722,7 +9739,7 @@ msgstr "Moje dokumenty" #. module: base #: help:ir.actions.act_window,res_model:0 msgid "Model name of the object to open in the view window" -msgstr "Název modelu objektu pro otevření v okně pohledu" +msgstr "Název modelu pro objekt otevřený v okně zobrazení" #. module: base #: field:ir.model.fields,selectable:0 @@ -9755,7 +9772,7 @@ msgstr "Celý název země." #. module: base #: selection:ir.actions.server,state:0 msgid "Iteration" -msgstr "Iterace" +msgstr "Opakování" #. module: base #: code:addons/orm.py:4246 @@ -9987,12 +10004,12 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_base_status msgid "State/Stage Management" -msgstr "Stav/správa stádia" +msgstr "Správa stavů a fází" #. module: base #: model:ir.module.category,name:base.module_category_warehouse_management msgid "Warehouse" -msgstr "Sklad" +msgstr "Sklady" #. module: base #: field:ir.exports,resource:0 @@ -10025,7 +10042,7 @@ msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" #. module: base #: view:ir.filters:0 msgid "Filters shared with all users" -msgstr "Filtry sdílené se všemi uživateli" +msgstr "Filtry sdílené všemi uživateli" #. module: base #: view:ir.translation:0 @@ -10036,7 +10053,7 @@ msgstr "Překlady" #. module: base #: view:ir.actions.report.xml:0 msgid "Report" -msgstr "Výkaz" +msgstr "Sestava" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_prof @@ -10052,7 +10069,7 @@ msgid "" "do the trick." msgstr "" "Váš OpenERP server nepodporuje metodu SMTP-over-SSL. Místo toho zkuste " -"použít STARTTLS. Pokud potřebujete SSl, aktualizujt na Python 2.6 na straně " +"použít STARTTLS. Pokud potřebujete SSl, aktualizujte na Python 2.6 na " "serveru, to by mohlo pomoct." #. module: base @@ -10077,7 +10094,7 @@ msgstr "Žádné" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_holidays msgid "Leave Management" -msgstr "Opustit správu" +msgstr "Správa zájemců" #. module: base #: model:res.company,overdue_msg:base.main_company @@ -10126,7 +10143,7 @@ msgstr "Mali" #. module: base #: model:ir.ui.menu,name:base.menu_project_config_project msgid "Stages" -msgstr "Stádia" +msgstr "Fáze" #. module: base #: selection:base.language.install,lang:0 @@ -10170,7 +10187,7 @@ msgstr "Brunei Darussalam" #: field:ir.actions.act_window.view,view_mode:0 #: field:ir.ui.view,type:0 msgid "View Type" -msgstr "Typ pohledu" +msgstr "Typ zobrazení" #. module: base #: model:ir.ui.menu,name:base.next_id_2 @@ -10185,7 +10202,7 @@ msgstr "Polotovary MRP" #. module: base #: field:res.request,ref_partner_id:0 msgid "Partner Ref." -msgstr "Ref partnera" +msgstr "Ref. kontaktu" #. module: base #. openerp-web @@ -10331,7 +10348,7 @@ msgstr "Gambie" #: view:res.partner:0 #: field:res.users,company_ids:0 msgid "Companies" -msgstr "Společnosti" +msgstr "Firmy v systému" #. module: base #: help:res.currency,symbol:0 @@ -10508,7 +10525,7 @@ msgstr "Vlastní" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_margin msgid "Margins in Sales Orders" -msgstr "Marže v prodejních objednávkách" +msgstr "Marže u zakázek" #. module: base #: model:ir.module.module,shortdesc:base.module_purchase @@ -10560,7 +10577,7 @@ msgstr "Německo" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth msgid "OAuth2 Authentication" -msgstr "Autentizace OAuth2" +msgstr "OAuth2 ověření" #. module: base #: view:workflow:0 @@ -10571,16 +10588,16 @@ msgid "" "default value. If you don't do that, your customization will be overwrited " "at the next update or upgrade to a future version of OpenERP." msgstr "" -"Když upravujete pracovní postup, neupravujte existující uzel nebo šipku ale " -"přidávejte nové uzly nebo šipky. Pokud opravdu potřebujete upravit uzel nebo " -"šipku, můžete změnit pouze pole, která nejsou prázdná nebo nastavená na " -"výchozí hodnotu. Pokud tohle nedodržíte, vaše úpravy budou přepsány při " +"Když upravujete pracovní postup, neupravujte existující uzel nebo šipku, ale " +"raději přidávejte nové uzly nebo šipky. Pokud opravdu potřebujete upravit " +"uzel nebo šipku, můžete změnit pouze pole, která jsou prázdná nebo nastavená " +"na výchozí hodnotu. Pokud tohle nedodržíte, vaše úpravy budou přepsány při " "další aktualizaci nebo v budoucí verzi OpenERP." #. module: base #: report:ir.module.reference:0 msgid "Reports :" -msgstr "Výkazy:" +msgstr "Sestavy:" #. module: base #: model:ir.module.module,description:base.module_multi_company @@ -10596,7 +10613,7 @@ msgstr "" #. module: base #: sql_constraint:res.currency:0 msgid "The currency code must be unique per company!" -msgstr "Kód měny musí být jedinečný podle společnosti!" +msgstr "Kód měny musí být pro firmu jedinečný!" #. module: base #: code:addons/base/module/wizard/base_export_language.py:39 @@ -10637,13 +10654,13 @@ msgstr "Guyana" #. module: base #: model:ir.module.module,shortdesc:base.module_product_expiry msgid "Products Expiry Date" -msgstr "Datum expirace výrobku" +msgstr "Datum expirace produktu" #. module: base #: code:addons/base/res/res_config.py:387 #, python-format msgid "Click 'Continue' to configure the next addon..." -msgstr "Klikněte na 'Pokračovat' k nastavení dašlího doplňku..." +msgstr "Klepněte na 'Pokračovat' k nastavení dalšího doplňku…" #. module: base #: field:ir.actions.server,record_id:0 @@ -10729,7 +10746,7 @@ msgstr "" #: view:res.partner:0 #: view:workflow.activity:0 msgid "Group By..." -msgstr "Seskupit podle..." +msgstr "Seskupit podle…" #. module: base #: view:base.module.update:0 @@ -10754,12 +10771,12 @@ msgstr "Uložený název souboru" #. module: base #: field:res.partner,use_parent_address:0 msgid "Use Company Address" -msgstr "Použít adresu společnosti" +msgstr "Použít adresu firmy" #. module: base #: model:ir.module.module,summary:base.module_hr_holidays msgid "Holidays, Allocation and Leave Requests" -msgstr "Dovolené, požadavky na práci a dovolenou" +msgstr "Svátky, přidělení a žádosti o dovolenou" #. module: base #: model:ir.module.module,description:base.module_web_hello @@ -10807,11 +10824,10 @@ msgid "" " " msgstr "" "

\n" -" Klikněte pro přidání kontaktu do vašeho adresáře.\n" +" Klepněte pro přidání kontaktu do vašeho adresáře.\n" "

\n" " OpenERP vám umožňuje snadno sledovat všechny aktivity\n" -" spojené s dodavatelem, diskusí, historií obchodních " -"příležitostí,\n" +" spojené s dodavatelem: diskuse, historii nákupů,\n" " dokumenty, apod.\n" "

\n" " " @@ -10884,18 +10900,18 @@ msgstr "Zobrazit" #. module: base #: model:res.groups,name:base.group_multi_company msgid "Multi Companies" -msgstr "Více společností" +msgstr "Více firem" #. module: base #: help:res.users,menu_id:0 msgid "" "If specified, the action will replace the standard menu for this user." -msgstr "Akce nahradí standardní nabídku tohoto uživatele, pokud je určeno." +msgstr "Je-li určeno, akce nahradí standardní menu tohoto uživatele." #. module: base #: model:ir.actions.report.xml,name:base.preview_report msgid "Preview Report" -msgstr "Náhled výkazu" +msgstr "Náhled sestavy" #. module: base #: model:ir.module.module,shortdesc:base.module_purchase_analytic_plans @@ -10906,7 +10922,7 @@ msgstr "Analytické plány nákupů" #: model:ir.actions.act_window,name:base.ir_sequence_type #: model:ir.ui.menu,name:base.menu_ir_sequence_type msgid "Sequence Codes" -msgstr "Kódy posloupnosti" +msgstr "Kódy řad" #. module: base #: selection:base.language.install,lang:0 @@ -10941,7 +10957,7 @@ msgstr "Francie" #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 msgid "Flow Stop" -msgstr "Zastavení toku" +msgstr "Konec postupu" #. module: base #: selection:ir.cron,interval_type:0 @@ -10971,6 +10987,7 @@ msgstr "Marketingové kampaně - ukázka" msgid "" "Can not create Many-To-One records indirectly, import the field separately" msgstr "" +"Záznamy Many-To-One nelze vytvořit nepřímo, pole importujte samostatně" #. module: base #: field:ir.cron,interval_type:0 @@ -10980,7 +10997,7 @@ msgstr "Jednotka intervalu" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_stock msgid "Portal Stock" -msgstr "" +msgstr "Portál skladů" #. module: base #: field:workflow.activity,kind:0 @@ -11037,8 +11054,8 @@ msgid "" "Select the action that will be executed. Loop action will not be avaliable " "inside loop." msgstr "" -"Vyberte akci, která bude spuštěna. Smyčkové akce nebudou dostupné uvnitř " -"smyčky." +"Vyberte akci, která bude spuštěna. Cyklické akce nebudou dostupné uvnitř " +"cyklu." #. module: base #: help:ir.model.data,res_id:0 @@ -11115,8 +11132,7 @@ msgstr "" #. module: base #: constraint:res.users:0 msgid "The chosen company is not in the allowed companies for this user" -msgstr "" -"Vybraná společnost není v povolených společnostech pro tohoto uživatele" +msgstr "Vybraná firma není v povolených firmách tohoto uživatele" #. module: base #: model:res.country,name:base.gi @@ -11136,15 +11152,15 @@ msgstr "Ostrov Pitcairn" #. module: base #: field:res.partner,category_id:0 msgid "Tags" -msgstr "Štítky" +msgstr "Značky" #. module: base #: view:base.module.upgrade:0 msgid "" "We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)." msgstr "" -"Doporučejem znovu načíst záložku nabídky ke zhlédnutí nových nabídek (Ctrl+T " -"pak Ctrl+R)" +"Doporučejem znovu načíst záložku menu ke zhlédnutí nových menu (Ctrl+T pak " +"Ctrl+R)" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -11156,7 +11172,7 @@ msgstr "Pravidla záznamů" #. module: base #: view:multi_company.default:0 msgid "Multi Company" -msgstr "Více společností" +msgstr "Více firem" #. module: base #: model:ir.module.category,name:base.module_category_portal @@ -11202,8 +11218,8 @@ msgid "" "OpenERP will automatically adds some '0' on the left of the 'Next Number' to " "get the required padding size." msgstr "" -"OpenERP automaticky přidá nějaké '0' nalevo od 'Dalšího čísla' k získání " -"požadované velikosti odsazení." +"OpenERP pro vytvoření odpovídajícího tvaru čísla automaticky přidá '0' vlevo " +"od 'dalšího čísla'." #. module: base #: help:ir.model.constraint,name:0 @@ -11213,7 +11229,7 @@ msgstr "Omezení PostgreSQL nebo název cizího klíče." #. module: base #: view:res.company:0 msgid "Click to set your company logo." -msgstr "Klikněte sem pro nastavení loga vaší společnosti." +msgstr "Klepněte sem pro nastavení loga vaší firmy." #. module: base #: view:res.lang:0 @@ -11243,7 +11259,7 @@ msgstr "Text patičky zobrazovaný ve spodní části všech výkazů." #. module: base #: field:ir.module.module,icon:0 msgid "Icon URL" -msgstr "Ikona URL" +msgstr "URL ikony" #. module: base #: model:ir.module.module,shortdesc:base.module_note_pad @@ -11279,7 +11295,7 @@ msgstr "Přílohy" #. module: base #: help:res.company,bank_ids:0 msgid "Bank accounts related to this company" -msgstr "Bankovní účty společnosti" +msgstr "Bankovní účty firmy" #. module: base #: model:ir.module.category,name:base.module_category_sales_management @@ -11290,7 +11306,7 @@ msgstr "Bankovní účty společnosti" #: model:ir.ui.menu,name:base.next_id_64 #: view:res.users:0 msgid "Sales" -msgstr "Prodeje" +msgstr "Prodej" #. module: base #: field:ir.actions.server,child_ids:0 @@ -11318,7 +11334,7 @@ msgstr "" #: model:res.partner.title,name:base.res_partner_title_miss #: model:res.partner.title,shortcut:base.res_partner_title_miss msgid "Miss" -msgstr "Slečna" +msgstr "slečna" #. module: base #: view:ir.model.access:0 @@ -11357,7 +11373,7 @@ msgstr "Itálie" #. module: base #: model:res.groups,name:base.group_sale_salesman msgid "See Own Leads" -msgstr "Zobrazit vlastní vedoucí" +msgstr "Zobrazit vlastní zájemce" #. module: base #: view:ir.actions.todo:0 @@ -11368,7 +11384,7 @@ msgstr "Úkoly" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_hr_employees msgid "Portal HR employees" -msgstr "" +msgstr "Portál personalistiky" #. module: base #: selection:base.language.install,lang:0 @@ -11396,7 +11412,7 @@ msgid "" "Insufficient fields to generate a Calendar View for %s, missing a date_stop " "or a date_delay" msgstr "" -"Nedostatek polí pro vygenerování pohledu kalendáře pro %s, chybí date_stop a " +"Nedostatek polí pro vytvoření zobrazení 'kalendář' pro %s, chybí date_stop a " "date_delay" #. module: base @@ -11415,8 +11431,8 @@ msgid "" "Manage the partner titles you want to have available in your system. The " "partner titles is the legal status of the company: Private Limited, SA, etc." msgstr "" -"Spravuje tituly partnerů, které chcete mít dostupné ve vašem systému. Titul " -"partnerů je zákonná forma společnosti: s.r.o., a.s., aj." +"Spravuje právní formy kontaktů, které chcete mít dostupné ve vašem systému. " +"Právní formou je myšleno např. s.r.o., a.s., aj." #. module: base #: view:res.bank:0 @@ -11496,7 +11512,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade #, python-format msgid "Apply Schedule Upgrade" -msgstr "" +msgstr "Použít naplánovanou aktualizaci" #. module: base #: view:workflow.activity:0 @@ -11522,7 +11538,7 @@ msgstr "Uživatelé" #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" -msgstr "Nadřazená společnost" +msgstr "Nadřazená firma" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_openid @@ -11586,7 +11602,7 @@ msgstr "Stát země" #. module: base #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences & Identifiers" -msgstr "Posloupnosti a identifikátory" +msgstr "Řady & identifikátory" #. module: base #: model:ir.module.module,description:base.module_l10n_th @@ -11612,9 +11628,9 @@ msgid "" "for the currency: %s \n" "at the date: %s" msgstr "" -"Pro měnu %s\n" -"nebyl nalezen kurz\n" -"v datu: %s" +"Kurz nenalezen!\n" +"Měna %s\n" +"Datum: %s" #. module: base #: model:ir.actions.act_window,help:base.action_ui_view_custom @@ -11622,13 +11638,13 @@ msgid "" "Customized views are used when users reorganize the content of their " "dashboard views (via web client)" msgstr "" -"Přizpůsobené pohledy jsou použity, pokud uživatelů přeorganizují obsah " -"jejich pohledů nástěnek (přes webového klienta)" +"Vlastní zobrazení jsou použity, pokud uživatelů přeorganizují obsah jejich " +"pohledů nástěnek (přes webového klienta)" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_stock msgid "Sales and Warehouse Management" -msgstr "Prodeje a správa skladu" +msgstr "Prodej a správa skladu" #. module: base #: model:ir.module.module,description:base.module_hr_recruitment @@ -11675,7 +11691,7 @@ msgstr "Neinstalováno" #: view:workflow.activity:0 #: field:workflow.activity,out_transitions:0 msgid "Outgoing Transitions" -msgstr "Odchozí překlady" +msgstr "Přechod na konci" #. module: base #: field:ir.module.module,icon_image:0 @@ -11689,8 +11705,8 @@ msgid "" "Helps you manage your human resources by encoding your employees structure, " "generating work sheets, tracking attendance and more." msgstr "" -"Pomůže vám spravovat vaše lidské zdroje pomocí nakódování struktury " -"zaměstnanců, generování pracovních listů, sledování docházky a další." +"Pomůže vám spravovat vaši personalistiku pomocí nastavení struktury " +"zaměstnanců, generování pracovních listů, sledování docházky a dalších." #. module: base #: help:res.partner,ean13:0 @@ -11717,12 +11733,12 @@ msgstr "Martinik (Francouzský)" #: help:res.partner,is_company:0 msgid "Check if the contact is a company, otherwise it is a person" msgstr "" -"Zaškrtněte toto pole, pokud je kontakt společnost, jinak je to osoba." +"Zaškrtněte toto pole, pokud je kontakt firmou, jinak je bude jednat o osobu." #. module: base #: view:ir.sequence.type:0 msgid "Sequences Type" -msgstr "Typ posloupnosti" +msgstr "Druhy číselných řad" #. module: base #: view:res.partner:0 @@ -11869,7 +11885,7 @@ msgstr "Kancelářské potřeby" #. module: base #: field:ir.attachment,res_model:0 msgid "Resource Model" -msgstr "" +msgstr "Model zdroje" #. module: base #: code:addons/custom.py:555 @@ -11902,6 +11918,18 @@ msgid "" " - uid: current user id\n" " - context: current context" msgstr "" +"Podmínka, která je testována před provedením akce a zabrání jejímu " +"provedení, není-li podmínka splněna.\n" +"Například: object.list_price > 5000\n" +"Je to výraz v Pythonu, který může používat následující hodnoty:\n" +" - self: ORM model of the record on which the action is triggered\n" +" - object or obj: browse_record of the record on which the action is " +"triggered\n" +" - pool: ORM model pool (i.e. self.pool)\n" +" - time: Python time module\n" +" - cr: database cursor\n" +" - uid: current user id\n" +" - context: current context" #. module: base #: view:ir.rule:0 @@ -11938,13 +11966,13 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_analytic_user_function msgid "Jobs on Contracts" -msgstr "Smluvní zaměstnání" +msgstr "?!?Smluvní zaměstnání" #. module: base #: code:addons/base/res/res_lang.py:187 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" -msgstr "Nemůžete smazat jazyk, který mají uživatelé jako upřednostňovaný !" +msgstr "Nemůžete smazat jazyk, který mají uživatelé jako preferovaný!" #. module: base #: view:ir.model.data:0 @@ -11964,7 +11992,7 @@ msgstr "Kaskáda" #. module: base #: model:ir.module.module,summary:base.module_crm msgid "Leads, Opportunities, Phone Calls" -msgstr "Vedoucí, příležitosti, telefonní hovory" +msgstr "Zájemci, příležitosti, telefonní hovory" #. module: base #: model:ir.module.category,description:base.module_category_knowledge_management @@ -11989,7 +12017,7 @@ msgstr "Přeložené" #: model:ir.actions.act_window,name:base.action_inventory_form #: model:ir.ui.menu,name:base.menu_action_inventory_form msgid "Default Company per Object" -msgstr "Výchozí společnost objektu" +msgstr "Výchozí firma pro objekt" #. module: base #: model:ir.module.module,shortdesc:base.module_web_hello @@ -12068,7 +12096,7 @@ msgstr "ir.actions.report.xml" #: view:ir.sequence:0 #: model:ir.ui.menu,name:base.menu_ir_sequence_form msgid "Sequences" -msgstr "Posloupnosti" +msgstr "Číselné řady" #. module: base #: help:res.lang,code:0 @@ -12087,7 +12115,7 @@ msgstr "Sdílený" msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" msgstr "" -"Nelze instalovat modul \"%s\", protože vnější závislost není splněna: %s" +"Nelze instalovat modul \"%s\", protože nevyhovuje vnější závislost: %s" #. module: base #: view:ir.module.module:0 @@ -12115,6 +12143,10 @@ msgid "" "not connect to the system. You can assign them groups in order to give them " "specific access to the applications they need to use in the system." msgstr "" +"Vytváření a správa uživatelů, kteří se budou připojovat do systému. " +"Uživatelé mohou být odpojeni po vypršení určité doby nečinnosti. Uživatelé " +"mohou být seskupováni do skupin, aby jim mohly být přiděleny oprávnění k " +"aplikacím v systému podle jejich potřeb." #. module: base #: selection:res.request,priority:0 @@ -12174,7 +12206,7 @@ msgstr "Portoriko" #. module: base #: model:ir.module.module,shortdesc:base.module_web_tests_demo msgid "Demonstration of web/javascript tests" -msgstr "" +msgstr "Ukázka web/javascript testů" #. module: base #: field:workflow.transition,signal:0 @@ -12306,12 +12338,12 @@ msgstr "Parametry" #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" -msgstr "GPL Version 2" +msgstr "GPL verze 2" #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 3" -msgstr "GPL Version 3" +msgstr "GPL verze 3" #. module: base #: model:ir.module.module,description:base.module_stock_location @@ -12431,7 +12463,7 @@ msgstr "A4" #. module: base #: view:res.config.installer:0 msgid "Configuration Installer" -msgstr "" +msgstr "Instalátor konfigurace" #. module: base #: field:res.partner,customer:0 @@ -12515,7 +12547,7 @@ msgstr "Aktualizace" #: field:multi_company.default,sequence:0 #: field:res.partner.bank,sequence:0 msgid "Sequence" -msgstr "Posloupnost" +msgstr "Číselná řada" #. module: base #: model:res.country,name:base.tn @@ -12529,8 +12561,8 @@ msgid "" "(if you delete a native ACL, it will be re-created when you reload the " "module." msgstr "" -"Pokud odšrtnete aktivní pole, vypnete ACL bez jeho smazání (Pokud smažete " -"nativní ACL, bude znovuvytvořeno při opětovném načtení modulu)." +"Odšrtnete-li aktivní pole, vypnete ACL bez jeho smazání (Pokud smažete " +"nativní ACL, bude znovu vytvořeno při opětovném načtení modulu)." #. module: base #: model:ir.model,name:base.model_ir_fields_converter @@ -12541,7 +12573,7 @@ msgstr "ir.fields.converter" #: code:addons/base/res/res_partner.py:439 #, python-format msgid "Couldn't create contact without email address !" -msgstr "" +msgstr "Nemůžete vytvořit kontakt bez e-mailové adresy!" #. module: base #: model:ir.module.category,name:base.module_category_manufacturing @@ -12590,7 +12622,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_bo msgid "Bolivia Localization Chart Account" -msgstr "" +msgstr "Bolívie - účtová osnova, daně" #. module: base #: model:ir.module.module,description:base.module_plugin_thunderbird @@ -12610,7 +12642,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "Legends for Date and Time Formats" -msgstr "Vysvětlívky pro formát data a času" +msgstr "Vysvětlivky pro formát data a času" #. module: base #: selection:ir.actions.server,state:0 @@ -12620,7 +12652,7 @@ msgstr "Kopírovat objekt" #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Signal" -msgstr "Spouštěč signálu" +msgstr "Signál spouštěče" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -12793,7 +12825,7 @@ msgstr "UK - Účetnictví" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_madam msgid "Mrs." -msgstr "Paní" +msgstr "paní" #. module: base #: code:addons/base/ir/ir_model.py:433 @@ -12829,7 +12861,7 @@ msgstr "Opakovat výraz" #. module: base #: model:res.partner.category,name:base.res_partner_category_16 msgid "Retailer" -msgstr "" +msgstr "Maloobchodník" #. module: base #: view:ir.model.fields:0 @@ -12860,7 +12892,7 @@ msgstr "Referenční příručka" #: selection:res.partner.title,domain:0 #: model:res.request.link,name:base.req_link_partner msgid "Partner" -msgstr "Partner" +msgstr "Kontakt" #. module: base #: code:addons/base/ir/ir_mail_server.py:481 @@ -12878,6 +12910,8 @@ msgstr "" msgid "" "Please make sure no workitems refer to an activity before deleting it!" msgstr "" +"Ujistěte se prosím ještě před odstraněním činnosti, že k ní nevztahují žádné " +"pracovní kroky!" #. module: base #: model:res.country,name:base.tr @@ -12898,7 +12932,7 @@ msgstr "Libanon" #: view:ir.actions.report.xml:0 #: field:ir.actions.report.xml,report_type:0 msgid "Report Type" -msgstr "Typ výkazu" +msgstr "Druh sestavy" #. module: base #: view:res.bank:0 @@ -12983,13 +13017,12 @@ msgstr "" #. module: base #: field:ir.actions.act_window,view_id:0 msgid "View Ref." -msgstr "Ref. náhledu" +msgstr "Ref. zobrazení" #. module: base #: model:ir.module.category,description:base.module_category_sales_management msgid "Helps you handle your quotations, sale orders and invoicing." -msgstr "" -"Pomáhá vám spravovat vaše cenové nabídky, prodejní příkazy a fakturaci." +msgstr "Pomáhá vám spravovat vaše cenové nabídky, zakázky a fakturovat." #. module: base #: field:res.users,login_date:0 @@ -13061,7 +13094,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_view_base_import_language #: model:ir.ui.menu,name:base.menu_view_base_import_language msgid "Import Translation" -msgstr "Importovat překlad" +msgstr "Import překladu" #. module: base #: view:ir.module.module:0 @@ -13101,7 +13134,7 @@ msgstr "" #. module: base #: model:res.country,name:base.cd msgid "Congo, Democratic Republic of the" -msgstr "" +msgstr "Kongo" #. module: base #: model:res.country,name:base.cr @@ -13153,7 +13186,7 @@ msgstr "Konzultační služby" #. module: base #: help:ir.values,value:0 msgid "Default value (pickled) or reference to an action" -msgstr "" +msgstr "Výchozí hodnota (pickled) nebo odkaz na akci" #. module: base #: field:ir.actions.report.xml,auto:0 @@ -13183,7 +13216,7 @@ msgstr "" #. module: base #: view:ir.sequence:0 msgid "Hour 00->12: %(h12)s" -msgstr "Hodina 00->12: %(h12)s" +msgstr "Hodiny 00->12: %(h12)s" #. module: base #: model:res.country,name:base.dk @@ -13237,7 +13270,7 @@ msgstr "Norština / Norsk bokmål" #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" -msgstr "Paní" +msgstr "paní" #. module: base #: model:res.country,name:base.ee @@ -13293,7 +13326,7 @@ msgstr "Ukázková data" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_mister msgid "Mr." -msgstr "Pan" +msgstr "pan" #. module: base #: model:res.country,name:base.mv @@ -13303,7 +13336,7 @@ msgstr "Maledivy" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_crm msgid "Portal CRM" -msgstr "" +msgstr "Portál CRM" #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -13313,7 +13346,7 @@ msgstr "Nízkoúrovňové objekty" #. module: base #: help:ir.values,model:0 msgid "Model to which this entry applies" -msgstr "Model, pro který je záznam platný" +msgstr "Model, ke kterému se položka vztahuje" #. module: base #: field:res.country,address_format:0 @@ -13377,7 +13410,7 @@ msgid "" "Here is what we got instead:\n" " %s" msgstr "" -"Zde je to, co mám místo toho:\n" +"Zde je to, co jsme obdrželi místo toho:\n" " %s" #. module: base @@ -13385,7 +13418,7 @@ msgstr "" #: view:ir.model.data:0 #: model:ir.ui.menu,name:base.ir_model_data_menu msgid "External Identifiers" -msgstr "Vnější identifikátory" +msgstr "Externí identifikátory" #. module: base #. openerp-web @@ -13495,8 +13528,8 @@ msgid "" "Important when you deal with multiple actions, the execution order will be " "decided based on this, low number is higher priority." msgstr "" -"Důležité, pokud se vypořádáváte s více akcemi, pořadí vykonání bude " -"rozhodnuto na základě tohoto, nízké číslo má vyšší přednost." +"Toto je důležité, pracujete-li s více akcemi. Pořadí vykonávání bude " +"stanoveno podle hodnoty - nižší číslo má vyšší prioritu." #. module: base #: model:res.country,name:base.gr @@ -13511,7 +13544,7 @@ msgstr "Použít" #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" -msgstr "Datum spouštění" +msgstr "Datum spouštěče" #. module: base #: selection:base.language.install,lang:0 @@ -13547,7 +13580,7 @@ msgstr "Neodinstalovatelný" #. module: base #: view:res.partner.category:0 msgid "Partner Category" -msgstr "Kategorie partnerů" +msgstr "Kategorie kontaktů" #. module: base #: view:ir.actions.server:0 @@ -13561,8 +13594,8 @@ msgid "" "Helps you manage your inventory and main stock operations: delivery orders, " "receptions, etc." msgstr "" -"Pomůže vám spravovat vaše zásoby a hlavní skladové operace: příkazy dodání, " -"příjetí, aj." +"Pomůže vám spravovat vaše zásoby a hlavní skladové operace: objednávky " +"dopravy, příjmy, apod." #. module: base #: model:ir.model,name:base.model_ir_values @@ -13617,7 +13650,7 @@ msgstr "" #. module: base #: field:res.users,menu_id:0 msgid "Menu Action" -msgstr "Akce nabídky" +msgstr "Akce menu" #. module: base #: help:ir.model.fields,selection:0 @@ -13752,7 +13785,7 @@ msgstr "Nová Kaledonie (Francouzská)" #. module: base #: field:ir.model,osv_memory:0 msgid "Transient Model" -msgstr "Přechodný model" +msgstr "Přechodový model" #. module: base #: model:res.country,name:base.cy @@ -13810,7 +13843,7 @@ msgstr "Předvolby" #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Buyer" -msgstr "" +msgstr "Nákupčí součástí" #. module: base #: model:ir.module.module,description:base.module_web_tests_demo @@ -13836,7 +13869,7 @@ msgstr "Značka akce klienta" #. module: base #: field:ir.values,model_id:0 msgid "Model (change only)" -msgstr "Mode (pouze změnit)" +msgstr "Model (pouze změna)" #. module: base #: model:ir.module.module,description:base.module_marketing_campaign_crm_demo @@ -13868,7 +13901,7 @@ msgstr "Výraz výběru voleb musí být ve formátu [('key','Label'], ...]!" #. module: base #: field:res.company,company_registry:0 msgid "Company Registry" -msgstr "Rejstřík společnosti" +msgstr "Obchodní rejstřík" #. module: base #: view:ir.actions.report.xml:0 @@ -13919,7 +13952,7 @@ msgstr "Západní Sahara" #. module: base #: model:ir.module.category,name:base.module_category_account_voucher msgid "Invoicing & Payments" -msgstr "Fakturace & platby" +msgstr "Fakturace & Platby" #. module: base #: model:ir.actions.act_window,help:base.action_res_company_form @@ -13927,8 +13960,8 @@ msgid "" "Create and manage the companies that will be managed by OpenERP from here. " "Shops or subsidiaries can be created and maintained from here." msgstr "" -"Vytváří a spravuje společnosti, které budou odsud spravovány OpenERP. " -"Obchody nebo pobočky mohou být vytvořeny a spravovány odsud." +"Vytváří a spravuje firmy, které budou spravovány OpenERP. Prodejny nebo " +"pobočky mohou být vytvářeny a spravovány na tomto místě." #. module: base #: model:res.country,name:base.id @@ -13959,8 +13992,8 @@ msgid "" "Expression, must be True to match\n" "use context.get or user (browse)" msgstr "" -"Výraz musí být Pravda, aby odpovídal\n" -"použitému kontextu.get nebo user (procházet)" +"Výraz musí být pravdivý, aby odpovídal\n" +"použití context.get nebo uživatele (procházet)" #. module: base #: model:res.country,name:base.bg @@ -13975,7 +14008,7 @@ msgstr "Angola" #. module: base #: model:res.country,name:base.tf msgid "French Southern Territories" -msgstr "Francouzské jížní teritoria" +msgstr "Francouzská jížní teritoria" #. module: base #: model:ir.model,name:base.model_res_currency @@ -14016,7 +14049,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_account_test msgid "Accounting Consistency Tests" -msgstr "" +msgstr "?!?Kontroly účetní celistvosti" #. module: base #: model:ir.module.module,description:base.module_purchase_double_validation @@ -14039,7 +14072,7 @@ msgstr "Správa" #. module: base #: view:base.module.update:0 msgid "Click on Update below to start the process..." -msgstr "Klikněte na Aktualizovat níže k započetí procesu..." +msgstr "Klepněte na 'Aktualizovat' k zahájení procesu…" #. module: base #: model:res.country,name:base.ir @@ -14071,9 +14104,9 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" -"Střední obrázek tohoto kontaktu. Je automaticky škálován na 128x128px se " -"zachováním poměru stran. Použijte toto pole v zobrazeních formuláře nebo " -"některých pohledech kanban." +"Střední obrázek tohoto kontaktu. Je automaticky přepočítán na 128x128 bodů " +"se zachováním poměru stran. Použijte toto pole v zobrazeních 'formulář' nebo " +"'kanban'." #. module: base #: view:base.update.translations:0 @@ -14191,7 +14224,7 @@ msgstr "Rozšíření pro podporu elektronického bankovnictví" #. module: base #: field:ir.model.fields,field_description:0 msgid "Field Label" -msgstr "Popisek pole" +msgstr "Označení pole" #. module: base #: model:res.country,name:base.dj @@ -14235,7 +14268,7 @@ msgstr "Informace" #: code:addons/base/ir/ir_fields.py:146 #, python-format msgid "false" -msgstr "nepravda" +msgstr "chybně" #. module: base #: model:ir.module.module,description:base.module_account_analytic_analysis @@ -14297,7 +14330,7 @@ msgstr "Činnosti" #. module: base #: model:ir.module.module,shortdesc:base.module_product msgid "Products & Pricelists" -msgstr "Výrobky & Ceníky" +msgstr "Produkty & Ceníky" #. module: base #: help:ir.filters,user_id:0 @@ -14348,6 +14381,7 @@ msgid "" "Automatically set to let administators find new terms that might need to be " "translated" msgstr "" +"Nastavit automatické poskytování nových termínů k překladu administrátorům" #. module: base #: code:addons/base/ir/ir_model.py:85 @@ -14373,7 +14407,7 @@ msgstr "Španělsko - Účetnictví (PGCE 2008)" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_no_autopicking msgid "Picking Before Manufacturing" -msgstr "Vyzvednutí před vyrobením" +msgstr "?!?Vyzvednutí před vyrobením" #. module: base #: model:ir.module.module,summary:base.module_note_pad @@ -14388,7 +14422,7 @@ msgstr "Ostrovy Wallis a Futuna" #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" -msgstr "Pojmenujte to pro snadnější nalzení záznamu" +msgstr "Název použijte pro snadnější nalezení záznamu" #. module: base #: model:ir.module.module,description:base.module_hr @@ -14430,7 +14464,7 @@ msgstr "" #: view:ir.model.data:0 #: field:ir.model.data,name:0 msgid "External Identifier" -msgstr "Vnější identifikátor" +msgstr "Externí identifikátor" #. module: base #: model:ir.module.module,description:base.module_audittrail @@ -14451,7 +14485,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access msgid "Menu Items" -msgstr "Položky nabídky" +msgstr "Položky menu" #. module: base #: model:res.groups,comment:base.group_sale_salesman_all_leads @@ -14514,6 +14548,9 @@ msgid "" " the rightmost column (value) contains the " "translations" msgstr "" +"CSV formát: můžete jej upravovat přímo ve svém oblíbeném tabulkovém " +"editoru,\n" +"pravý sloupec obsahuje překlady" #. module: base #: model:ir.module.module,description:base.module_account_chart @@ -14538,7 +14575,7 @@ msgstr "Cílová aktivita." #. module: base #: model:ir.module.module,shortdesc:base.module_project_issue msgid "Issue Tracker" -msgstr "Sledování úkolů" +msgstr "Sledování problémů" #. module: base #: view:base.module.update:0 @@ -14637,7 +14674,7 @@ msgstr "Instalovat moduly" #. module: base #: model:ir.ui.menu,name:base.menu_import_crm msgid "Import & Synchronize" -msgstr "Import a synchronizace" +msgstr "Import & Synchronizace" #. module: base #: view:res.partner:0 @@ -14657,7 +14694,7 @@ msgstr "res.request.history" #. module: base #: model:ir.model,name:base.model_multi_company_default msgid "Default multi company" -msgstr "Výchozí více společností" +msgstr "Výchozí více firem" #. module: base #: field:ir.translation,src:0 @@ -14756,7 +14793,7 @@ msgstr "TLS (STARTTLS)" #: help:ir.actions.act_window,usage:0 msgid "Used to filter menu and home actions from the user form." msgstr "" -"Používán pro filtraci akcí v menu a na domácí obrazovce ve formuláři " +"Používá se pro filtraci akcí menu a na domácí obrazovce z formuláře " "uživatele." #. module: base @@ -14795,7 +14832,7 @@ msgstr "" #: field:ir.actions.server,trigger_obj_id:0 #: field:ir.model.fields,relation_field:0 msgid "Relation Field" -msgstr "Pole odkaz" +msgstr "?!?Související pole" #. module: base #: model:ir.module.module,description:base.module_portal_project @@ -14870,9 +14907,9 @@ msgid "" "later is slower than the former but forbids any gap in the sequence (while " "they are possible in the former)." msgstr "" -"Jsou k dispozici dvě objektové implementace: Standardní a 'Bez mezer'. První " -"je rychlejší než druhá, neumožňuje však žádné mezery v posloupnosti (což je " -"v první umožněno)." +"Jsou k dispozici dvě objektové implementace: 'Standardní' a 'Bez mezer'. " +"První je rychlejší než druhá, neumožňuje však žádné mezery v číselné řadě " +"(což je v první umožněno)." #. module: base #: model:res.country,name:base.gn @@ -14882,7 +14919,7 @@ msgstr "Guinea" #. module: base #: model:ir.module.module,shortdesc:base.module_web_diagram msgid "OpenERP Web Diagram" -msgstr "Diagram OpenERP Web" +msgstr "OpenERP Web Diagram" #. module: base #: model:res.country,name:base.lu @@ -14897,7 +14934,7 @@ msgstr "Osobní a sdílený kalendář" #. module: base #: selection:res.request,priority:0 msgid "Low" -msgstr "Nízká" +msgstr "Nízké" #. module: base #: code:addons/base/ir/ir_ui_menu.py:354 @@ -14969,7 +15006,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_base_gengo msgid "Automated Translations through Gengo API" -msgstr "" +msgstr "Automatický překlad prostřednictvím Genco API" #. module: base #: model:ir.module.module,shortdesc:base.module_account_payment @@ -15008,7 +15045,7 @@ msgstr "Průvodce změnou hesla" #. module: base #: model:ir.module.module,summary:base.module_account_voucher msgid "Send Invoices and Track Payments" -msgstr "Odelsat faktury a sledovat platby" +msgstr "Odeslat faktury a sledovat platby" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_lead @@ -15136,7 +15173,7 @@ msgstr "Moduly k aktualizaci" #. module: base #: model:ir.ui.menu,name:base.menu_custom_multicompany msgid "Multi-Companies" -msgstr "Více společností" +msgstr "Více firem" #. module: base #: field:workflow,osv:0 @@ -15148,12 +15185,12 @@ msgstr "Objekt zdroje" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_helpdesk msgid "Helpdesk" -msgstr "Helpdesk" +msgstr "Poradna" #. module: base #: field:ir.rule,perm_write:0 msgid "Apply for Write" -msgstr "" +msgstr "Použít pro zápis" #. module: base #: field:ir.ui.menu,parent_left:0 @@ -15186,11 +15223,10 @@ msgid "" "be assigned to specific groups in order to make them accessible to some " "users within the system." msgstr "" -"Spravuje a přizpůsobuje položky dostupné a zobrazované ve vaší nabídce " -"systému OpenERP. Můžete mazat položky kliknutím na políčko na začátku " -"každého řádku a pak jej smazat přes zjevené tlačítko. Položky mohou být " -"přiřazeny k určitým skupinám za účelem nechání je přistupnými některým " -"uživatelům v systému." +"Spravuje a přizpůsobuje položky dostupné a zobrazované ve vašem menu v " +"OpenERP. Položky můžete mazat klepnutím na čtverec na začátku každého řádku " +"a pak je smazat tlačítkem, které se objeví. Položky mohou být přiřazeny k " +"určitým skupinám pro zpřistupnění některým uživatelům systému." #. module: base #: field:ir.ui.view,field_parent:0 @@ -15246,12 +15282,12 @@ msgstr "ISO kód je název .po souborů použitých pro překlady" #. module: base #: report:ir.module.reference:0 msgid "View :" -msgstr "Pohled :" +msgstr "Zobrazení:" #. module: base #: field:ir.model.fields,view_load:0 msgid "View Auto-Load" -msgstr "Zobrazit automatické načtení" +msgstr "Automatické načtení zobrazení" #. module: base #: view:res.country:0 @@ -15276,7 +15312,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Allowed Companies" -msgstr "Povolené společnosti" +msgstr "Povolené firmy" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_de @@ -15291,12 +15327,12 @@ msgstr "Den v roce: %(doy)s" #. module: base #: field:ir.ui.menu,web_icon:0 msgid "Web Icon File" -msgstr "Soubor ikony webu" +msgstr "Soubor webové ikony" #. module: base #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade msgid "Apply Scheduled Upgrades" -msgstr "Použít plánované povýšení" +msgstr "Plánované aktualizace" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_journal @@ -15309,8 +15345,8 @@ msgid "" "If this field is empty, the view applies to all users. Otherwise, the view " "applies to the users of those groups only." msgstr "" -"Pokud je toto pole ponecháno prázdné, vztahuje se tento pohled na všechny " -"uživatele. Jinak se vztahuje jen na uživatele zadaných skupin." +"Je-li toto pole ponecháno prázdné, bude se toto zobrazení vztahovat na " +"všechny uživatele. Jinak se bude vztahovat jen na uživatele zadaných skupin." #. module: base #: selection:base.language.install,lang:0 @@ -15390,6 +15426,10 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" +"Požadovanou operaci nelze dokončit z důvodu bezpečnostního omezení. Obraťte " +"se prosím na správce systému.\n" +"\n" +"(Typ dokumentu: %s, Operace: %s)" #. module: base #: model:ir.module.module,description:base.module_idea @@ -15510,17 +15550,17 @@ msgstr "Fax" #: view:res.users:0 #: field:res.users,company_id:0 msgid "Company" -msgstr "Společnost" +msgstr "Firma" #. module: base #: model:ir.module.category,name:base.module_category_report_designer msgid "Advanced Reporting" -msgstr "Pokročilé vykazování" +msgstr "Pokročilé sestavy" #. module: base #: model:ir.module.module,summary:base.module_purchase msgid "Purchase Orders, Receptions, Supplier Invoices" -msgstr "" +msgstr "Vystavené objednávky, příjemky, faktury přijaté" #. module: base #: model:ir.module.module,description:base.module_hr_payroll @@ -15617,13 +15657,13 @@ msgstr "Omezení" #. module: base #: model:res.groups,name:base.group_hr_user msgid "Officer" -msgstr "Strážník" +msgstr "úředník" #. module: base #: code:addons/orm.py:787 #, python-format msgid "Serialization field `%s` not found for sparse field `%s`!" -msgstr "Serializační pole `%s` nebylo nalezeno pro řídké pole `%s`!" +msgstr "Serializační pole `%s` nebylo nalezeno pro 'sparse field' `%s`!" #. module: base #: model:res.country,name:base.jm @@ -15643,10 +15683,10 @@ msgid "" "categories have a hierarchy structure: a partner belonging to a category " "also belong to his parent category." msgstr "" -"Spravuje kategorie partnerů v pořadí pro jejich lepší třídění pro účely " -"sledování a analýzy. Partner může patřit do několika kategorií a kategorie " -"mají hierarchickou strukturu: partner patřící do kategorie také může patřit " -"do jeho nadřazené kategorie." +"Spravuje kategorie kontaktů pro jejich lepší třídění z hlediska sledování a " +"analýzy. Kontakt může patřit do několika kategorií. Kategorie mají " +"hierarchickou strukturu, což znamená, že kontakt patřící do kategorie patří " +"také do kategorie nadřazené." #. module: base #: model:ir.module.module,description:base.module_survey @@ -15832,8 +15872,8 @@ msgid "" "If set to true, the wizard will not be displayed on the right toolbar of a " "form view." msgstr "" -"Pokud je nastaveno na pravda, průvodce nebude zobrazen v pravém nástrojovém " -"panelu formulářového pohledu." +"Je-li nastaveno 'správně', průvodce nebude zobrazen v pravém nástrojovém " +"panelu zobrazení 'formulář'." #. module: base #: view:ir.values:0 @@ -15846,8 +15886,8 @@ msgid "" "file encoding, please be sure to view and edit\n" " using the same encoding." msgstr "" -"kódování souboru, prosím zobrazujte a upravujte\n" -" jej za použití stejného kódování." +"kódování souboru, prohlížejte jej a a upravujte\n" +" za použití stejného kódování." #. module: base #: view:ir.rule:0 @@ -15866,7 +15906,7 @@ msgstr "Nizozemí - Účetnictví" #. module: base #: model:res.country,name:base.gs msgid "South Georgia and the South Sandwich Islands" -msgstr "" +msgstr "Jižní Georgie a Jižní Sandwichovy ostrovy" #. module: base #: view:res.lang:0 @@ -15886,6 +15926,11 @@ msgid "" "1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " "106,500. Provided ',' as the thousand separator in each case." msgstr "" +"Oddělovací schéma má tvar [,n] kde 0 < n počínaje jednotkami. Číslice -1 " +"bude schéma ukončovat. Například schéma [3,2,-1] bude číslo 106500 " +"zobrazovat jako 1,06,500 nebo [1,2,-1] zobrazí stejné číslo jako 106,50,0 a " +"schéma [3] stejné číslo zobrazí jako 106,500. Za předpokladu, že jako " +"desetinný oddělovač použijete ve všech případech ',' (čárku)." #. module: base #: field:ir.module.module,auto_install:0 @@ -15925,7 +15970,7 @@ msgstr "Lze přejmenovat pouze jeden sloupec najednou!" #. module: base #: selection:ir.translation,type:0 msgid "Report/Template" -msgstr "Výkaz/šablona" +msgstr "Sestava/šablona" #. module: base #: model:ir.module.module,description:base.module_account_budget @@ -16030,7 +16075,7 @@ msgstr "Rozdělený režim" #. module: base #: view:base.module.upgrade:0 msgid "Note that this operation might take a few minutes." -msgstr "Vemte na vědomí, že tato operace může trvat několik minut." +msgstr "Pozor, tato operace může trvat několik minut." #. module: base #: code:addons/base/ir/ir_fields.py:363 @@ -16039,6 +16084,8 @@ msgid "" "Ambiguous specification for field '%(field)s', only provide one of name, " "external id or database id" msgstr "" +"Nejasná specifikace pole '%(field)s', poskytuje pouze jedno z: name, " +"external id or database id" #. module: base #: field:ir.sequence,implementation:0 @@ -16058,7 +16105,7 @@ msgstr "Chile" #. module: base #: model:ir.module.module,shortdesc:base.module_web_view_editor msgid "View Editor" -msgstr "Editor pohledu" +msgstr "Editor zobrazení" #. module: base #: view:ir.cron:0 @@ -16086,7 +16133,7 @@ msgstr "Směnný kurz měny k měně o velikosti 1." #. module: base #: field:ir.ui.view,name:0 msgid "View Name" -msgstr "Název náhledu" +msgstr "Název zobrazení" #. module: base #: model:ir.model,name:base.model_res_groups @@ -16104,8 +16151,8 @@ msgid "" "Only one client action will be executed, last client action will be " "considered in case of multiple client actions." msgstr "" -"Bude vykonána pouze akce klienta. Poslední akce klienta bude brána v úvahu v " -"případě vícenásobných akcí klienta." +"Bude provedena pouze akce klienta, v případě vícenásobných akcí klienta bude " +"brána v úvahu poslední akce." #. module: base #: model:ir.module.module,description:base.module_mrp_jit @@ -16152,7 +16199,7 @@ msgstr "Mobilní č." #: model:ir.model,name:base.model_res_partner_category #: view:res.partner.category:0 msgid "Partner Categories" -msgstr "Kategorie partnerů" +msgstr "Kategorie kontaktů" #. module: base #: view:base.module.upgrade:0 @@ -16173,7 +16220,7 @@ msgstr "Velikost souboru" #. module: base #: help:ir.sequence,prefix:0 msgid "Prefix value of the record for the sequence" -msgstr "Předpona hodnoty záznamu posloupnosti" +msgstr "Hodnota předpony číselné řady" #. module: base #: model:res.country,name:base.sc @@ -16215,7 +16262,7 @@ msgstr "Portugalsko - účtová osnova" #. module: base #: field:ir.model.data,complete_name:0 msgid "Complete ID" -msgstr "" +msgstr "Complete ID" #. module: base #: model:ir.module.module,description:base.module_stock @@ -16299,7 +16346,7 @@ msgstr "Nainstalované moduly" #: code:addons/base/res/res_users.py:170 #, python-format msgid "Company Switch Warning" -msgstr "Varování přepnutí společnosti" +msgstr "Upozornění při přepnutí firmy" #. module: base #: model:ir.module.category,description:base.module_category_manufacturing @@ -16331,8 +16378,8 @@ msgid "" "Manage relations with prospects and customers using leads, opportunities, " "requests or issues." msgstr "" -"Řízení vztahů mezi prospekty a zákazníky s použitím zájemců, příležitostí " -"nebo úkolů." +"Řízení vztahů s potenciálními i současnými zákazníky prostřednictvím " +"zájemců, příležitostí, požadavků nebo problémů." #. module: base #: model:ir.module.module,description:base.module_project @@ -16409,12 +16456,12 @@ msgstr "Instance pracovních postupů" #: code:addons/base/res/res_partner.py:531 #, python-format msgid "Partners: " -msgstr "Partneři: " +msgstr "Kontakty: " #. module: base #: view:res.partner:0 msgid "Is a Company?" -msgstr "Je společnost?" +msgstr "Firma" #. module: base #: code:addons/base/res/res_company.py:173 @@ -16461,10 +16508,10 @@ msgid "" " " msgstr "" "

\n" -" Klikněte pro přidání kontaktu do vašeho adresáře.\n" +" Klepněte pro přidání kontaktu do vašeho adresáře.\n" "

\n" " OpenERP vám umožňuje snadno sledovat všechny aktivity\n" -" spojené se zákazníkem, diskusí, historií obchodních " +" spojené se zákazníkem: diskuse, historii obchodních " "příležitostí,\n" " dokumenty, apod.\n" "

\n" @@ -16473,7 +16520,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 msgid "Prospect" -msgstr "Prospekt" +msgstr "Zájemce" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_invoice_directly @@ -16497,7 +16544,7 @@ msgid "" "sales and purchases documents." msgstr "" "Použito pro automatický výběr správné adresy podle obsahu dokumentů v " -"prodejích a nákupech." +"prodeji a nákupu." #. module: base #: model:ir.module.module,description:base.module_purchase_analytic_plans @@ -16520,7 +16567,7 @@ msgstr "Srí Lanka" #. module: base #: field:ir.actions.act_window,search_view:0 msgid "Search View" -msgstr "Pohled hledání" +msgstr "Zobrazení 'hledání'" #. module: base #: selection:base.language.install,lang:0 diff --git a/openerp/addons/base/i18n/fr.po b/openerp/addons/base/i18n/fr.po index b2098760e57..a7c72163076 100644 --- a/openerp/addons/base/i18n/fr.po +++ b/openerp/addons/base/i18n/fr.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: 2013-03-08 13:44+0000\n" -"Last-Translator: WANTELLET Sylvain \n" +"PO-Revision-Date: 2013-03-27 16:01+0000\n" +"Last-Translator: Marc Cassuto (SFL) \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-03-09 05:37+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-28 05:21+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -33,7 +33,7 @@ msgstr "" #. module: base #: view:res.partner.bank:0 msgid "e.g. GEBABEBB" -msgstr "" +msgstr "votre BIC (8 ou 11 caractères)" #. module: base #: model:res.country,name:base.sh @@ -779,7 +779,7 @@ msgstr "Achats-Ventes" #. module: base #: view:res.partner:0 msgid "Put an internal note..." -msgstr "" +msgstr "Mettre une note interne..." #. module: base #: view:ir.translation:0 @@ -949,7 +949,7 @@ msgstr "Jordanie" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_hr msgid "Croatia - RRIF 2012 COA" -msgstr "" +msgstr "Croatie - charte de compte (RRIF version 2012)" #. module: base #: help:ir.cron,nextcall:0 @@ -1196,7 +1196,7 @@ msgstr "Mise à jour de module(s)" #: view:res.partner.bank:0 #: view:res.users:0 msgid "ZIP" -msgstr "" +msgstr "Code postal" #. module: base #: selection:base.language.install,lang:0 @@ -3502,6 +3502,14 @@ msgid "" " * ``base_stage``: stage management\n" " " msgstr "" +"\n" +"Ce module gére les statuts et les étapes. Il est dérivé des modules " +"crm_base et crm_case.\n" +"======================================================================\n" +"\n" +" * base_state : gestion des statuts\n" +" * base_stage : gestion des étapes\n" +" " #. module: base #: model:ir.module.module,shortdesc:base.module_web_linkedin @@ -3599,7 +3607,7 @@ msgstr "Le nom technique du modèle auquel ce champ appartient" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_expense msgid "Expense Management" -msgstr "" +msgstr "Gestion des dépenses" #. module: base #: field:ir.actions.server,action_id:0 @@ -3626,11 +3634,27 @@ msgid "" " above. Specify the interval information and partner to be invoice.\n" " " msgstr "" +"\n" +"Création de documents récurrents.\n" +"============================\n" +"\n" +"Ce module permet de créer de nouveaux documents et ajouter des abonnements à " +"ces documents.\n" +"\n" +"Par exemple, avoir une facture générée automatiquement périodiquement:\n" +"-----------------------------------------------------------------------------" +"---------------------------\n" +"\n" +" * définir un type de document basé sur l'objet Facture;\n" +" * définir un abonnement dont la source est le document définit " +"précédemment et spécifier\n" +" l'intervalle d'information et le partenaire à facturer.\n" +" " #. module: base #: view:res.company:0 msgid "e.g. Global Business Solutions" -msgstr "" +msgstr "par exemple : Solutions globales d'entreprises" #. module: base #: field:res.company,rml_header1:0 @@ -3781,6 +3805,23 @@ msgid "" " - Yearly Salary by Head and Yearly Salary by Employee Report\n" " " msgstr "" +"\n" +"Inde - Règle de gestion de la paie.\n" +"===========================\n" +"\n" +" * Localisation indienne du module hr_payroll.\n" +" * Toutes les contributions pour les règles des fiches de paie indienne " +":\n" +" * nouveau rapport de fiche de paie ;\n" +" * contrat des employés ;\n" +" * permet de configurer les salaire de base, brut et net ;\n" +" * fiche de paie des employés ;\n" +" * indemnités et retenues ;\n" +" * intégration avec la gestion des congés ;\n" +" * allocations médicale, allocation de voyage, allocation enfant...\n" +" * Conseils et rapport.\n" +" * Rapport annuel par compagnie et rapport annuel par employé.\n" +" " #. module: base #: code:addons/orm.py:3871 @@ -3822,6 +3863,30 @@ msgid "" "customers' expenses if your work by project.\n" " " msgstr "" +"\n" +"Gestion des dépenses par employés\n" +"============================\n" +"\n" +"Cette application vous permet de gérer les dépenses quotidiennes de vos " +"employés. Il vous donne accès aux notes de frais de vos employés et vous " +"donne le droit de terminer et valider ou refuser les notes. Après " +"validation, il créé une facture pour les employés.\n" +"Les employés peuvent saisir leurs propres dépenses et le processus les mets " +"automatiquement dans le système comptable après validation par les " +"managers.\n" +"\n" +"Le processus est implémenté de la façon suivante :\n" +"---------------------------------------------------------------------\n" +" * note de frais brouillon ;\n" +" * confirmation de la feuille par l'employé ;\n" +" * validation par son supérieur ;\n" +" * validation par le comptable et création du reçu.\n" +"\n" +"Ce module utilise aussi la comptabilité analytique et est compatible avec le " +"module de facturation à partir des feuilles de temps; vous êtes donc capable " +"de re-facturer automatiquement les dépenses de vos client si vous travaillez " +"par projets.\n" +" " #. module: base #: view:base.language.export:0 diff --git a/openerp/addons/base/i18n/ko.po b/openerp/addons/base/i18n/ko.po index 12acde9cf54..6df617f9755 100644 --- a/openerp/addons/base/i18n/ko.po +++ b/openerp/addons/base/i18n/ko.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: 2013-03-11 08:39+0000\n" +"PO-Revision-Date: 2013-03-29 04:45+0000\n" "Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -951,7 +951,7 @@ msgstr "알바니아어 / Shqip" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_opportunity msgid "Opportunities" -msgstr "영업기회" +msgstr "기회" #. module: base #: model:ir.model,name:base.model_base_language_export @@ -2696,7 +2696,7 @@ msgstr "바닥글 설정" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_crm msgid "Opportunity to Quotation" -msgstr "견적 제공 기회" +msgstr "견적 기회" #. module: base #: model:ir.module.module,description:base.module_sale_analytic_plans @@ -4831,7 +4831,7 @@ msgstr "적도 기니" #. module: base #: model:ir.module.module,shortdesc:base.module_web_api msgid "OpenERP Web API" -msgstr "OpenERP 웹 API" +msgstr "OpenERP Web API" #. module: base #: model:ir.module.module,description:base.module_l10n_fr_rib @@ -5428,7 +5428,7 @@ msgid "" "\n" msgstr "" "\n" -"Openerp 웹 API.\n" +"Openerp Web API.\n" "================\n" "\n" @@ -5735,7 +5735,7 @@ msgstr "" #. module: base #: model:res.groups,name:base.group_sale_salesman_all_leads msgid "See all Leads" -msgstr "모든 잠재고객 보기" +msgstr "모든 리드 보기" #. module: base #: model:res.country,name:base.ci @@ -6323,7 +6323,7 @@ msgid "" "\n" msgstr "" "\n" -"OpenERP 웹 간판 화면.\n" +"OpenERP Web 간판 화면.\n" "========================\n" "\n" @@ -6957,10 +6957,10 @@ msgid "" " " msgstr "" "\n" -"OpenERP 웹 핵심 모듈.\n" +"OpenERP Web 핵심 모듈.\n" "========================\n" "\n" -"이 모듈은 OpenERP 웹 클라이언트의 핵심을 제공합니다.\n" +"이 모듈은 OpenERP Web Client의 핵심을 제공합니다.\n" " " #. module: base @@ -7597,7 +7597,7 @@ msgstr "정수" msgid "" "The path to the main report file (depending on Report Type) or NULL if the " "content is in another data field" -msgstr "주 보고서 파일의 경로 (보고서 유형에 따름) 또는 컨텐트가 다른 데이터 필드에 위치할 경우 NULL" +msgstr "주 보고서 파일의 경로 (보고서 유형에 따름) 또는 내용이 다른 데이터 필드에 위치할 경우 NULL" #. module: base #: model:res.partner.category,name:base.res_partner_category_14 @@ -9346,7 +9346,7 @@ msgid "" "\n" msgstr "" "\n" -"OpenERP 웹 간트 도표 화면.\n" +"OpenERP Web 간트 도표 화면.\n" "=============================\n" "\n" @@ -9417,8 +9417,8 @@ msgid "" "instead.If SSL is needed, an upgrade to Python 2.6 on the server-side should " "do the trick." msgstr "" -"OpenERP 서버가 SMTP-over-SSL을 지원하지 않습니다. STARTTLS를 대신 사용할 수 있습니다. SSL이 필요할 경우, " -"서버 측을 파이썬 2.6으로 업그레이드 하면 해결될 것입니다." +"OpenERP Server가 SMTP-over-SSL을 지원하지 않습니다. STARTTLS를 대신 사용할 수 있습니다. SSL이 필요할 " +"경우, 서버 측을 파이썬 2.6으로 업그레이드 하면 해결될 것입니다." #. module: base #: model:res.country,name:base.ua @@ -10682,7 +10682,7 @@ msgstr "이탈리아" #. module: base #: model:res.groups,name:base.group_sale_salesman msgid "See Own Leads" -msgstr "자신의 잠재고객 보기" +msgstr "내 리드 보기" #. module: base #: view:ir.actions.todo:0 @@ -10815,7 +10815,7 @@ msgstr "이것이 오류라고 생각되는 경우, 시스템 관리자에게 #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade #, python-format msgid "Apply Schedule Upgrade" -msgstr "일정 적용 업그레이드" +msgstr "예정된 업그레이드 적용" #. module: base #: view:workflow.activity:0 @@ -11271,7 +11271,7 @@ msgstr "계단식" #. module: base #: model:ir.module.module,summary:base.module_crm msgid "Leads, Opportunities, Phone Calls" -msgstr "잠재고객, 영업기회, 통화내역" +msgstr "리드, 기회, 통화" #. module: base #: model:ir.module.category,description:base.module_category_knowledge_management @@ -14280,7 +14280,7 @@ msgstr "송장 발송 및 지불 추적" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_lead msgid "Leads & Opportunities" -msgstr "잠재 고객 & 매출 기회" +msgstr "리드 & 기회" #. module: base #: model:res.country,name:base.gg @@ -15042,7 +15042,7 @@ msgstr "썬더버드 플러그인" #. module: base #: model:ir.module.module,summary:base.module_event msgid "Trainings, Conferences, Meetings, Exhibitions, Registrations" -msgstr "" +msgstr "훈련, 회의, 미팅, 전시회, 등록" #. module: base #: model:ir.model,name:base.model_res_country From 7a8d71be6dbaf69dad270a2483d1a811791d9d65 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 29 Mar 2013 05:09:03 +0000 Subject: [PATCH 30/35] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130329050903-yuxb08q83hlvg6ok --- addons/account/i18n/hu.po | 8 +- addons/account/i18n/mk.po | 1270 ++++++++++------- addons/account_analytic_analysis/i18n/mk.po | 209 ++- addons/account_analytic_default/i18n/mk.po | 23 +- addons/account_analytic_plans/i18n/mk.po | 80 +- addons/account_anglo_saxon/i18n/mk.po | 15 +- addons/account_asset/i18n/mk.po | 58 +- .../i18n/mk.po | 29 +- addons/account_budget/i18n/mk.po | 26 +- addons/account_check_writing/i18n/mk.po | 35 +- addons/account_followup/i18n/mk.po | 61 +- addons/account_payment/i18n/hu.po | 8 +- addons/account_payment/i18n/mk.po | 116 +- addons/account_sequence/i18n/mk.po | 27 +- addons/account_test/i18n/mk.po | 28 +- addons/account_voucher/i18n/mk.po | 149 +- addons/analytic/i18n/mk.po | 42 +- .../analytic_contract_hr_expense/i18n/mk.po | 13 +- addons/analytic_user_function/i18n/mk.po | 23 +- addons/anonymization/i18n/mk.po | 17 +- addons/association/i18n/mk.po | 8 +- addons/audittrail/i18n/mk.po | 39 +- addons/auth_ldap/i18n/mk.po | 13 +- addons/auth_oauth/i18n/mk.po | 17 +- addons/auth_oauth/i18n/nl.po | 8 +- addons/auth_signup/i18n/mk.po | 12 +- addons/base_action_rule/i18n/mk.po | 28 +- addons/base_calendar/i18n/mk.po | 83 +- addons/base_gengo/i18n/mk.po | 49 +- addons/base_iban/i18n/mk.po | 21 +- addons/base_report_designer/i18n/mk.po | 13 +- addons/base_setup/i18n/mk.po | 6 +- addons/base_setup/i18n/nl.po | 11 +- addons/base_vat/i18n/mk.po | 17 +- addons/claim_from_delivery/i18n/mk.po | 6 +- addons/contacts/i18n/mk.po | 15 +- addons/crm/i18n/es_MX.po | 1161 +++++++++------ addons/crm/i18n/ko.po | 758 ++++++---- addons/crm/i18n/mk.po | 120 +- addons/crm_claim/i18n/ko.po | 906 ++++++++++++ addons/crm_claim/i18n/mk.po | 36 +- addons/crm_helpdesk/i18n/ko.po | 726 ++++++++++ addons/crm_helpdesk/i18n/mk.po | 70 +- addons/crm_partner_assign/i18n/ko.po | 932 ++++++++++++ addons/crm_partner_assign/i18n/mk.po | 83 +- addons/crm_profiling/i18n/ko.po | 52 +- addons/crm_profiling/i18n/mk.po | 16 +- addons/crm_todo/i18n/ko.po | 85 ++ addons/crm_todo/i18n/mk.po | 15 +- addons/delivery/i18n/mk.po | 93 +- addons/document/i18n/mk.po | 52 +- addons/document_ftp/i18n/mk.po | 13 +- addons/document_page/i18n/mk.po | 25 +- addons/document_webdav/i18n/mk.po | 15 +- addons/email_template/i18n/mk.po | 50 +- addons/event/i18n/mk.po | 47 +- addons/event_sale/i18n/mk.po | 19 +- addons/fleet/i18n/mk.po | 178 ++- addons/hr/i18n/mk.po | 18 +- addons/hr_attendance/i18n/mk.po | 14 +- addons/hr_contract/i18n/mk.po | 21 +- addons/hr_evaluation/i18n/mk.po | 188 ++- addons/hr_expense/i18n/mk.po | 46 +- addons/hr_holidays/i18n/mk.po | 38 +- addons/hr_payroll_account/i18n/mk.po | 15 +- addons/hr_timesheet/i18n/mk.po | 48 +- addons/hr_timesheet_invoice/i18n/mk.po | 50 +- addons/hr_timesheet_sheet/i18n/mk.po | 169 +-- addons/knowledge/i18n/mk.po | 15 +- addons/mail/i18n/mk.po | 127 +- addons/marketing_campaign/i18n/mk.po | 20 +- addons/marketing_campaign_crm_demo/i18n/mk.po | 19 +- addons/mrp/i18n/mk.po | 6 +- addons/mrp_operations/i18n/mk.po | 121 +- addons/mrp_repair/i18n/mk.po | 32 +- addons/pad/i18n/cs.po | 26 +- addons/point_of_sale/i18n/mk.po | 155 +- addons/portal/i18n/mk.po | 61 +- addons/portal_crm/i18n/mk.po | 45 +- addons/portal_event/i18n/mk.po | 11 +- addons/portal_hr_employees/i18n/mk.po | 13 +- addons/portal_project_issue/i18n/mk.po | 17 +- addons/portal_sale/i18n/mk.po | 23 +- addons/procurement/i18n/mk.po | 72 +- addons/product/i18n/mk.po | 77 +- addons/product_expiry/i18n/mk.po | 13 +- addons/product_margin/i18n/mk.po | 17 +- addons/project/i18n/mk.po | 46 +- addons/project_gtd/i18n/mk.po | 25 +- addons/project_issue/i18n/mk.po | 92 +- addons/project_issue_sheet/i18n/mk.po | 23 +- addons/project_long_term/i18n/mk.po | 28 +- addons/project_mrp/i18n/mk.po | 17 +- addons/project_timesheet/i18n/mk.po | 41 +- addons/purchase/i18n/mk.po | 74 +- addons/purchase_requisition/i18n/mk.po | 11 +- addons/report_intrastat/i18n/mk.po | 11 +- addons/report_webkit/i18n/mk.po | 15 +- addons/sale/i18n/ko.po | 10 +- addons/sale/i18n/mk.po | 48 +- addons/sale_crm/i18n/ko.po | 52 +- addons/sale_crm/i18n/mk.po | 22 +- addons/sale_journal/i18n/ko.po | 34 +- addons/sale_journal/i18n/mk.po | 15 +- addons/sale_order_dates/i18n/mk.po | 13 +- addons/sale_stock/i18n/ko.po | 64 +- addons/sale_stock/i18n/mk.po | 124 +- addons/share/i18n/mk.po | 20 +- addons/stock/i18n/ko.po | 104 +- addons/stock/i18n/mk.po | 253 ++-- addons/stock/i18n/tr.po | 20 +- addons/stock_location/i18n/mk.po | 22 +- addons/subscription/i18n/mk.po | 11 +- addons/survey/i18n/mk.po | 71 +- addons/survey/i18n/nl.po | 6 +- addons/warning/i18n/mk.po | 16 +- addons/web_linkedin/i18n/mk.po | 11 +- 117 files changed, 7467 insertions(+), 3344 deletions(-) create mode 100644 addons/crm_claim/i18n/ko.po create mode 100644 addons/crm_helpdesk/i18n/ko.po create mode 100644 addons/crm_partner_assign/i18n/ko.po create mode 100644 addons/crm_todo/i18n/ko.po diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index 336b44cdd1a..da6eb1990d4 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/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-03-03 14:23+0000\n" -"Last-Translator: Herczeg Péter \n" +"PO-Revision-Date: 2013-03-28 18:12+0000\n" +"Last-Translator: Balint (eSolve) \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:23+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account @@ -9641,7 +9641,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Dátum / Időszak" #. module: account #: report:account.central.journal:0 diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index faf45831c06..99d9bc279d7 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.po @@ -9,13 +9,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-03-12 08:35+0000\n" -"Last-Translator: Aleksandar Panov \n" +"PO-Revision-Date: 2013-03-28 21:11+0000\n" +"Last-Translator: Софче Димитријева \n" "Language-Team: ESKON-INZENERING\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:24+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -29,7 +29,8 @@ msgstr "Системско плаќање" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" -"Фискалната позиција може да биде дефинирана само еднаш на иста сметка." +"Фискалната позиција на сметката може да биде дефинирана само еднаш за исти " +"сметки." #. module: account #: help:account.tax.code,sequence:0 @@ -43,7 +44,7 @@ msgstr "" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "Порамни запис во картица" +msgstr "Порамни внес во дневник" #. module: account #: view:account.account:0 @@ -66,7 +67,7 @@ msgstr "Остаток" #: code:addons/account/account_bank_statement.py:368 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "Ставката на картицата \"%s\" не е валидна." +msgstr "Ставката на дневникот \"%s\" не е валидна." #. module: account #: model:ir.model,name:account.model_report_aged_receivable @@ -158,7 +159,7 @@ msgstr "Внимание!" #: code:addons/account/account.py:3159 #, python-format msgid "Miscellaneous Journal" -msgstr "Картица разно" +msgstr "Дневник разно" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -217,9 +218,9 @@ msgid "" "invoice) to create analytic entries, OpenERP will look for a matching " "journal of the same type." msgstr "" -"Го дава типот на аналитичката картица. Кога е потребно за некој документ (на " +"Го дава типот на аналитичкиот дневник. Кога е потребно за некој документ (на " "пр. фактура) да се креираат аналитички записи, OpenERP ќе ја побара " -"соодветната картица од ист тип." +"соодветен дневник од ист тип." #. module: account #: help:account.tax,account_analytic_collected_id:0 @@ -241,7 +242,7 @@ msgstr "Урнеци за данок" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select msgid "Move line reconcile select" -msgstr "" +msgstr "Избери порамнување на движење на ставка" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 @@ -277,7 +278,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Следен број на белешка за побарување" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -349,7 +350,7 @@ msgstr "Непорамнета сметка" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "Менаџирање на буџет" +msgstr "Управување со буџети" #. module: account #: view:product.template:0 @@ -377,7 +378,7 @@ msgstr "Дозволи повеќе валути" #: code:addons/account/account_invoice.py:74 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "Мора да дефинирате аналитичка картица од типот '%s'!" +msgstr "Мора да дефинирате аналитички дневник од типот '%s'!" #. module: account #: selection:account.entries.report,month:0 @@ -465,11 +466,18 @@ msgid "" "this box, you will be able to do invoicing & payments,\n" " but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Ова ви овозможува да ги управувате средствата кои се поседувани од компанија " +"или лице.\n" +" Ја следи амортизацијата која се прави на овие средства, и " +"креира движење на сметката за овие ставки на амортизацијата.\n" +" Ова го инсталира модулот account_asset. Доколку не го " +"означите ова поле, ќе може да правите фактурирање и плаќања,\n" +" но не и сметководство (Ставки на Дневник, Контен план, ...)" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Создавач на Кориснички информации" #. module: account #. openerp-web @@ -564,7 +572,7 @@ msgstr "Овозможи споредување" #: model:ir.model,name:account.model_account_journal #: field:validate.account.move,journal_id:0 msgid "Journal" -msgstr "Картица" +msgstr "Дневник" #. module: account #: model:ir.model,name:account.model_account_invoice_confirm @@ -584,7 +592,7 @@ msgstr "Ја дава секвенцата на оваа ставка кога #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "Сметка која се користи во оваа картица" +msgstr "Сметка која се користи во овој дневник" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -653,7 +661,7 @@ msgstr "Нема ништо за порамнување" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "Децимална прецизност на записите во картицата" +msgstr "Децимална прецизност на записите во дневникот" #. module: account #: selection:account.config.settings,period:0 @@ -679,8 +687,8 @@ msgid "" "Specified journal does not have any account move entries in draft state for " "this period." msgstr "" -"Специфицираната картица нема записи за движење на сметката во нацрт состојба " -"за овој период." +"Овој дневник нема записи за движење на сметката во нацрт состојба за овој " +"период." #. module: account #: view:account.fiscal.position:0 @@ -691,7 +699,7 @@ msgstr "Мапирање на даноци" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "Центализирана картица" +msgstr "Центализиран дневник" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -761,15 +769,15 @@ msgstr "Период на отварање записи" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "Период на картица" +msgstr "Период на дневникот" #. module: account #: constraint:account.move:0 msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" -"Не може да креирате повеќе од едно движење по период на централизирана " -"картица." +"Не може да креирате повеќе од едно движење по период на централизираниот " +"дневник." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -809,8 +817,8 @@ msgid "" "The date of your Journal Entry is not in the defined period! You should " "change the date or remove this constraint from the journal." msgstr "" -"Датумот на записот во картицата не е во дефинираниот период! Треба да го " -"промените датумот или да го отстраните ова ограничување од картицата." +"Датумот на внесот во дневникот не е во дефинираниот период! Треба да го " +"промените датумот или да го отстраните ова ограничување од дневникот." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -931,7 +939,7 @@ msgstr "Фактури и поврати на добавувач" #: code:addons/account/account_move_line.py:854 #, python-format msgid "Entry is already reconciled." -msgstr "Записот е веќе порамнет." +msgstr "Внесот е веќе порамнет." #. module: account #: view:account.move.line.unreconcile.select:0 @@ -1001,7 +1009,7 @@ msgid "" "

\n" " " msgstr "" -"Не се пронајдени ставки на картица.\n" +"Не се пронајдени ставки на дневникот.\n" "

\n" " " @@ -1013,7 +1021,7 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" -"Не може да поништите порамнување на ставки од картицата доколку се " +"Не може да поништите порамнување на ставки од дневникот доколку се " "генерирани во процесот на отварање/затварање на фискална година." #. module: account @@ -1096,7 +1104,7 @@ msgstr "Обврска" #: code:addons/account/account_invoice.py:867 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "Дефинирајте секвенца на картицата поврзана со оваа фактура." +msgstr "Дефинирајте секвенца на дневникот поврзан со оваа фактура." #. module: account #: view:account.entries.report:0 @@ -1106,7 +1114,7 @@ msgstr "Проширени филтри..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "Централизирана картица" +msgstr "Централизиран дневник" #. module: account #: selection:account.journal,type:0 @@ -1142,7 +1150,7 @@ msgstr "Набавки" #. module: account #: field:account.model,lines_id:0 msgid "Model Entries" -msgstr "Стафки на моделот" +msgstr "Внесови на моделот" #. module: account #: field:account.account,code:0 @@ -1182,7 +1190,7 @@ msgstr "Нема аналитички дневник !" #: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance #: model:ir.ui.menu,name:account.menu_account_partner_balance_report msgid "Partner Balance" -msgstr "Биланс на партнер" +msgstr "Салдо на партнер" #. module: account #: model:ir.actions.act_window,help:account.action_account_gain_loss @@ -1203,13 +1211,14 @@ msgstr "" "

\n" " Кликнете за да додадете сметка.\n" "

\n" -" When doing multi-currency transactions, you may loose or " -"gain\n" -" some amount due to changes of exchange rate. This menu " -"gives\n" -" you a forecast of the Gain or Loss you'd realized if those\n" -" transactions were ended today. Only for accounts having a\n" -" secondary currency set.\n" +" Кога правите повеќе-валутни трансакции, можете да загубите " +"или\n" +" да добиете одреден износ како резултат на курсните разлики.\n" +" Ова мени ви дава предвидување за Добивката или Загубата која " +"ќе ја\n" +" остварите доколку овие трансакции се завршат денес. Само за " +"сметки\n" +" кои имаат подесено секундарна валута.\n" "

\n" " " @@ -1221,7 +1230,7 @@ msgstr "Име на сметка." #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "Отварање со состојба од последно затварање" +msgstr "Отварање со салдо од последно затварање" #. module: account #: help:account.tax.code,notprintable:0 @@ -1240,7 +1249,7 @@ msgstr "Недела од годината" #. module: account #: field:account.report.general.ledger,landscape:0 msgid "Landscape Mode" -msgstr "Режим на пејсаж" +msgstr "Режим Пејсаж" #. module: account #: help:account.fiscalyear.close,fy_id:0 @@ -1283,12 +1292,12 @@ msgstr "Во спор" #: model:ir.actions.act_window,name:account.action_view_bank_statement_tree #: model:ir.ui.menu,name:account.journal_cash_move_lines msgid "Cash Registers" -msgstr "Благајнички регистри" +msgstr "Готовински регистри" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "Картица за поврати во продажба" +msgstr "Дневник за поврати во продажба" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1311,8 +1320,8 @@ msgstr "" " Кликнете за да креирате нов готовински лог.\n" "

\n" " Касата ви дозволува да ги управувате готовинските записи во " -"вашите картици за продажба. Оваа карактеристика во обезбедува лесен начин да " -"ги следите готовинските плаќања на дневна основа. Може да ги внесете " +"вашите дневници за продажба. Оваа карактеристика во обезбедува лесен начин " +"да ги следите готовинските плаќања на дневна основа. Може да ги внесете " "монетите кои ги имате во касата, и потоа да ги објавите записите кога парите " "влегуваат или излегуваат од касата.\n" "

\n" @@ -1339,7 +1348,7 @@ msgstr "Поврати" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "Потврди изјава" +msgstr "Потврди извод" #. module: account #: view:account.tax:0 @@ -1379,7 +1388,7 @@ msgid "" "item are debit and negatif when journal item are credit." msgstr "" "Сумата изразена во секундарна валута мора да биде позитивна кога ставката од " -"картицата е долг и негативна кога ставката од картицата е побарување." +"дневникот е задолжување и негативна кога ставката од дневникот е побарување." #. module: account #: view:account.invoice.cancel:0 @@ -1424,7 +1433,7 @@ msgstr "Ситуација" #. module: account #: help:account.move.line,move_id:0 msgid "The move of this entry line." -msgstr "Движење на оваа ставка од записот." +msgstr "Движење на оваа ставка од внесот." #. module: account #: field:account.move.line.reconcile,trans_nbr:0 @@ -1437,7 +1446,7 @@ msgstr "# од трансакцијата" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Entry Label" -msgstr "Ознака на запис" +msgstr "Ознака на внес" #. module: account #: help:account.invoice,origin:0 @@ -1494,7 +1503,7 @@ msgstr "Вклучено во основната сума" #: model:ir.actions.act_window,name:account.action_account_entries_report_all #: model:ir.ui.menu,name:account.menu_action_account_entries_report_all msgid "Entries Analysis" -msgstr "Анализа на записи" +msgstr "Анализа на внесови" #. module: account #: field:account.account,level:0 @@ -1549,7 +1558,7 @@ msgstr "Барај урнек за данок" #: model:ir.actions.act_window,name:account.action_account_reconcile_select #: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile msgid "Reconcile Entries" -msgstr "Порамни записи" +msgstr "Порамни внесови" #. module: account #: model:ir.actions.report.xml,name:account.account_overdue @@ -1561,7 +1570,7 @@ msgstr "Задоцнети плаќања" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Initial Balance" -msgstr "Почетна состојба" +msgstr "Почетно салдо" #. module: account #: view:account.invoice:0 @@ -1587,7 +1596,7 @@ msgstr "Секвенци на фактура" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "Анализи на ставки од картица" +msgstr "Анализи на ставки од дневник" #. module: account #: model:ir.ui.menu,name:account.next_id_22 @@ -1614,7 +1623,7 @@ msgstr "Статус на фактурата" #: model:ir.actions.act_window,name:account.action_account_open_closed_fiscalyear #: model:ir.ui.menu,name:account.menu_wizard_account_open_closed_fiscalyear msgid "Cancel Closing Entries" -msgstr "" +msgstr "Откажи затварање на внесови" #. module: account #: view:account.bank.statement:0 @@ -1644,7 +1653,7 @@ msgstr "%s (копија)" #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" -msgstr "Со состојбата не е еднакво на 0" +msgstr "Со салдото не е еднакво на 0" #. module: account #: code:addons/account/account.py:1445 @@ -1654,7 +1663,7 @@ msgid "" "on journal \"%s\"." msgstr "" "Нема дефинирано стандардна сметка на долгови\n" -"на картицата \"%s\"." +"на дневникот \"%s\"." #. module: account #: view:account.tax:0 @@ -1669,7 +1678,7 @@ msgstr "Главна книга за сметка за аналитички тр #. module: account #: view:account.model:0 msgid "Create entries" -msgstr "Креирај записи" +msgstr "Креирај внесови" #. module: account #: field:account.entries.report,nbr:0 @@ -1702,7 +1711,7 @@ msgstr "# од броеви" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "Прескокни 'Нацрт' Состојба за рачни записи" +msgstr "Прескокни 'Нацрт' Состојба за рачни внесови" #. module: account #: code:addons/account/report/common_report_header.py:92 @@ -1729,7 +1738,7 @@ msgstr "Главна книга на трошоци за период" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "# од влезови " +msgstr "# од записи " #. module: account #: help:account.fiscal.position,active:0 @@ -1755,7 +1764,7 @@ msgstr "Поврати на добавувач" #: field:account.tax.code,code:0 #: field:account.tax.code.template,code:0 msgid "Case Code" -msgstr "Case Code" +msgstr "Код на предмет" #. module: account #: field:account.config.settings,company_footer:0 @@ -1776,7 +1785,7 @@ msgstr "Затворено" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "Повторување на записи" +msgstr "Повторување на внесови" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template @@ -1796,7 +1805,7 @@ msgstr "Групи" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "Без данок" +msgstr "Неоданочено" #. module: account #: view:account.journal:0 @@ -1811,7 +1820,7 @@ msgstr "Барај банкарски изводи" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Необјавени ставки на картица" +msgstr "Необјавени ставки на дневникот" #. module: account #: view:account.chart.template:0 @@ -1870,6 +1879,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да дефинирате нов тип на сметка.\n" +"

\n" +" Типот на сметката се користи за да се определи како сметката " +"се \n" +" користи во секој дневник. The deferral method на типот на " +"сметката \n" +" го определува процесот за годишно затварање. Извештаите како " +"Биланс\n" +" и Извештај за Добивка и Загуба ја користат категоријата\n" +" (profit/loss or balance sheet).\n" +"

\n" +" " #. module: account #: report:account.invoice:0 @@ -1884,13 +1906,13 @@ msgstr "Фактура" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "состојба" +msgstr "салдо" #. module: account #: model:process.node,note:account.process_node_analytic0 #: model:process.node,note:account.process_node_analyticcost0 msgid "Analytic costs to invoice" -msgstr "Да се фактурираат аналитички трошоци" +msgstr "Аналитички трошоци за фактурирање" #. module: account #: view:ir.sequence:0 @@ -1964,7 +1986,7 @@ msgstr "" #: code:addons/account/account_move_line.py:857 #, python-format msgid "Some entries are already reconciled." -msgstr "Некои записи се веќе порамнети" +msgstr "Некои внесови се веќе порамнети" #. module: account #: field:account.tax.code,sum:0 @@ -2002,8 +2024,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" -"Доколку активното поле е подесено на Грешка, ќе можете да го сокриете " -"периодот на картицата без да го отстраните." +"Доколку активното поле не е означено, ќе можете да го сокриете периодот на " +"дневникот без да го отстраните." #. module: account #: field:account.report.general.ledger,sortby:0 @@ -2018,7 +2040,7 @@ msgstr "Побарувања и обврски" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "Менаџирај налози за плаќање" +msgstr "Управување на налози за плаќање" #. module: account #: view:account.period:0 @@ -2049,7 +2071,7 @@ msgstr "Аналитички контен план" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Реф. на добавувач:" +msgstr "Реф. на купувач:" #. module: account #: help:account.tax,base_code_id:0 @@ -2192,7 +2214,7 @@ msgstr "" #. module: account #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "Грешка вредност на побарување или долг во сметководствениот запис!" +msgstr "Грешка вредност на побарување или долг во сметководствениот внес!" #. module: account #: view:account.invoice.report:0 @@ -2204,7 +2226,7 @@ msgstr "Анализи на фактури" #. module: account #: model:ir.model,name:account.model_mail_compose_message msgid "Email composition wizard" -msgstr "Волшебник за пишување на Email" +msgstr "Волшебник за пишување на е-пошта" #. module: account #: model:ir.model,name:account.model_account_period_close @@ -2224,7 +2246,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form msgid "Entries By Line" -msgstr "Записи по ставка" +msgstr "Внесови по ставка" #. module: account #: field:account.vat.declaration,based_on:0 @@ -2268,7 +2290,7 @@ msgstr "Стандардна валута на компанијата" #: field:account.invoice,move_name:0 #: field:account.move.line,move_id:0 msgid "Journal Entry" -msgstr "Запис на картица" +msgstr "Внес во дневник" #. module: account #: view:account.invoice:0 @@ -2286,7 +2308,7 @@ msgstr "Анализи на трезор" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "Картица за продажба/набавка" +msgstr "Дневник за продажба/набавка" #. module: account #: view:account.analytic.account:0 @@ -2298,7 +2320,7 @@ msgstr "Аналитичка сметка" #: code:addons/account/account_bank_statement.py:405 #, python-format msgid "Please verify that an account is defined in the journal." -msgstr "Потврдете дека сметката е дефинирана во картицата." +msgstr "Потврдете дека сметката е дефинирана во дневникот." #. module: account #: selection:account.entries.report,move_line_state:0 @@ -2413,9 +2435,9 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" -"Избраната сметка на вашиот внес на картица принудува да се обезбеди " +"Избраната сметка на вашиот внес во дневникот принудува да се обезбеди " "секундарна валута. Треба да ја отсраните секундарната валута на сметката или " -"да изберете повеќе-валутен преглед на вашата картица." +"да изберете повеќе-валутен преглед на вашиот дневник." #. module: account #: view:account.invoice:0 @@ -2435,7 +2457,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "Ставки на аналитичка картица поврзани со продажна картица." +msgstr "Ставки од аналитички дневник поврзани со продажен дневник." #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -2560,7 +2582,12 @@ msgid "" "accounts for multi-company consolidations, payable/receivable are for " "partners accounts (for debit/credit computations), closed for depreciated " "accounts." -msgstr "Овој тип се користи" +msgstr "" +"Овој тип се користи за да се разликуваат типовите со специјални ефекти во " +"OpenERP: преглед не може да има внесови, консолидација се сметки кои имаат " +"потсметки за консолидации на повеќе компании, плаќања/побарувања се сметки " +"родител (за пресметки на задолжување/побарување), затворени за сметките за " +"амортизација." #. module: account #: view:account.chart.template:0 @@ -2733,7 +2760,7 @@ msgstr "" #: view:account.move:0 #: model:ir.model,name:account.model_account_move msgid "Account Entry" -msgstr "Ставка на сметка" +msgstr "Внес на сметка" #. module: account #: field:account.sequence.fiscalyear,sequence_main_id:0 @@ -2747,8 +2774,8 @@ msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" -"За да избришете банкарски извод, прво мора да го откажете за да ги избриреше " -"ставките на поврзаната картица." +"За да избришете банкарски извод, прво мора да го откажете за да ги избришете " +"ставките во поврзаниот дневник." #. module: account #: field:account.invoice.report,payment_term:0 @@ -2835,6 +2862,7 @@ msgstr "Основен код" #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." msgstr "" +"Дава секвенциски редослед кога ја прикажува листата на данок на фактури." #. module: account #: field:account.tax,base_sign:0 @@ -2872,7 +2900,7 @@ msgstr "Сметки за обновување" #. module: account #: model:ir.model,name:account.model_account_model_line msgid "Account Model Entries" -msgstr "" +msgstr "Внесови на модел сметка" #. module: account #: code:addons/account/account.py:3164 @@ -2893,7 +2921,7 @@ msgstr "Банкарски детали" #. module: account #: view:account.bank.statement:0 msgid "Cancel CashBox" -msgstr "" +msgstr "Откажи каса" #. module: account #: help:account.invoice,payment_term:0 @@ -3142,7 +3170,7 @@ msgstr "Родител на сметка на данок" #: model:ir.actions.act_window,name:account.action_account_aged_balance_view #: model:ir.ui.menu,name:account.menu_aged_trial_balance msgid "Aged Partner Balance" -msgstr "" +msgstr "Салдо на постар партнер" #. module: account #: model:process.transition,name:account.process_transition_entriesreconcile0 @@ -3169,10 +3197,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" -"Означете го ова поле доколку не сакате новите записи на картицата да " +"Означете го ова поле доколку не сакате новите записи во дневникот да " "поминуваат преку состојбата 'нацрт' и наместо тоа да одат директно во " "состојба 'објавено' без било какво рачно потврдување.\n" -"Забележете дека записите на картицата кои се автоматски креирани од страна " +"Забележете дека записите во дневникот кои се автоматски креирани од страна " "на системот секогаш ја прескокнуваат оваа фаза." #. module: account @@ -3231,7 +3259,7 @@ msgstr "Дневник за продажба" #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "Треба да дефинирате аналитичка картица на '%s' картица!" +msgstr "Треба да дефинирате аналитички дневник на '%s' дневник!" #. module: account #: code:addons/account/account.py:781 @@ -3240,7 +3268,7 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" -"Оваа книга веќе содржи елемени, затоа не може да ги менувате полињата на " +"Овој дневник веќе содржи елемени, затоа не може да ги менувате полињата на " "компанијата." #. module: account @@ -3250,6 +3278,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"Потребен ви е Отворен дневник со штиклирана централизација за да го подесите " +"почетното салдо." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3266,7 +3296,7 @@ msgstr "Нереализирани добивки и загуби" #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "Клиенти" +msgstr "Купувачи" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3312,12 +3342,12 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Непорамнети трансакции" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 msgid "Only One Chart Template Available" -msgstr "" +msgstr "Достапен е само еден урнек за графикон" #. module: account #: view:account.chart.template:0 @@ -3408,7 +3438,7 @@ msgstr "" #. module: account #: field:account.partner.ledger,page_split:0 msgid "One Partner Per Page" -msgstr "Еден партнер по страна" +msgstr "Еден партнер по страница" #. module: account #: field:account.account,child_parent_ids:0 @@ -3428,7 +3458,7 @@ msgstr "Пробна состојба" #: code:addons/account/account.py:431 #, python-format msgid "Unable to adapt the initial balance (negative value)." -msgstr "Неможе да се адаптира почетното салдо (негативна вредност)." +msgstr "Не може да се адаптира почетното салдо (негативна вредност)." #. module: account #: selection:account.invoice,type:0 @@ -3436,7 +3466,7 @@ msgstr "Неможе да се адаптира почетното салдо ( #: model:process.process,name:account.process_process_invoiceprocess0 #: selection:report.invoice.created,type:0 msgid "Customer Invoice" -msgstr "Фактура на клиент" +msgstr "Излезна фактура" #. module: account #: model:ir.model,name:account.model_account_open_closed_fiscalyear @@ -3447,7 +3477,7 @@ msgstr "Избери фискална година" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "Опсег на период" +msgstr "Опсег на датум" #. module: account #: view:account.period:0 @@ -3478,7 +3508,7 @@ msgstr "Листа на урнеци на данок" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "Картица за продажба/набавка" +msgstr "Дневник за продажба/набавка" #. module: account #: help:account.account,currency_mode:0 @@ -3499,13 +3529,13 @@ msgstr "" #: code:addons/account/account.py:2640 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Нема код родител за сметката урнек." #. module: account #: help:account.chart.template,code_digits:0 #: help:wizard.multi.charts.accounts,code_digits:0 msgid "No. of Digits to use for account code" -msgstr "Број на цифри ки треба да се употребат за кодот на сметката" +msgstr "Број на цифри кои треба да се употребат за кодот на сметката" #. module: account #: field:res.partner,property_supplier_payment_term:0 @@ -3527,6 +3557,8 @@ msgstr "Секогаш" msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Пополнете ги сметководствените карактеристики: дневници, законски изјави, " +"контен план и.т.н." #. module: account #: view:account.analytic.line:0 @@ -3548,7 +3580,7 @@ msgstr "Модел" #. module: account #: help:account.invoice.tax,base_code_id:0 msgid "The account basis of the tax declaration." -msgstr "Даночни основи од даночната декларација." +msgstr "Основи на сметка од даночната декларација." #. module: account #: selection:account.account,type:0 @@ -3583,7 +3615,7 @@ msgstr "Електронски фајл" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Порамни рефернца" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3598,7 +3630,7 @@ msgstr "Урнек за даночен код" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "" +msgstr "Главна книга за сметка на партнер" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -3769,7 +3801,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Период на сметка" #. module: account #: help:account.account,currency_id:0 @@ -3785,15 +3817,15 @@ msgid "" "This wizard will validate all journal entries of a particular journal and " "period. Once journal entries are validated, you can not update them anymore." msgstr "" -"Овој волшебник ќе ги потврди сите записи на картицата од одредена картица и " -"период. Откако еднаш се потврдени записите во картицата, не може повеќе да " -"ги ажурирате." +"Овој волшебник ќе ги потврди сите внесови во одреден дневник и период. " +"Откако еднаш се потврдени внесовите во дневникот, не може повеќе да ги " +"ажурирате." #. module: account #: model:ir.actions.act_window,name:account.action_account_chart_template_form #: model:ir.ui.menu,name:account.menu_action_account_chart_template_form msgid "Chart of Accounts Templates" -msgstr "Урнеци за конетн план" +msgstr "Урнеци за сметководствен план" #. module: account #: view:account.bank.statement:0 @@ -3803,7 +3835,7 @@ msgstr "Трансакции" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "" +msgstr "Порамни сметка непорамнето" #. module: account #: help:account.account.type,close_method:0 @@ -3864,7 +3896,7 @@ msgstr "Остави празно за да употребите сметка з #: model:ir.ui.menu,name:account.menu_journals #: model:ir.ui.menu,name:account.menu_journals_report msgid "Journals" -msgstr "Картици" +msgstr "Дневници" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 @@ -3875,7 +3907,7 @@ msgstr "Преостанати партнери" #: view:account.subscription:0 #: field:account.subscription,lines_id:0 msgid "Subscription Lines" -msgstr "" +msgstr "Ставки за претплата" #. module: account #: selection:account.analytic.journal,type:0 @@ -3898,7 +3930,7 @@ msgstr "Конфигурирање на апликацијата за сметк #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "Даночна декларација за сметка" #. module: account #: help:account.bank.statement,name:0 @@ -3907,9 +3939,9 @@ msgid "" "be with same name as statement name. This allows the statement entries to " "have the same references than the statement itself" msgstr "" -"if you give the Name other then /, its created Accounting Entries Move will " -"be with same name as statement name. This allows the statement entries to " -"have the same references than the statement itself" +"доколку доделите Име различно од /, неговите креирани Движења на " +"сметководствени внесови ќе имаат исто име како и името на изводот. Ова " +"овозможува внесовите во изводот да имаат исти референци како самиот извод" #. module: account #: code:addons/account/account_invoice.py:984 @@ -3927,7 +3959,7 @@ msgstr "" #: field:account.bank.statement,balance_start:0 #: field:account.treasury.report,starting_balance:0 msgid "Starting Balance" -msgstr "Почетна состојба" +msgstr "Почетно салдо" #. module: account #: code:addons/account/account_invoice.py:1434 @@ -3954,6 +3986,8 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" +"Можете да креирате ставки во дневникот со секундарна валута без да ги " +"зачувате и двете полиња 'валута' и 'валута на износот'." #. module: account #: field:account.financial.report,display_detail:0 @@ -3982,6 +4016,10 @@ msgid "" "quotations with a button \"Pay with Paypal\" in automated emails or through " "the OpenERP portal." msgstr "" +"Paypal сметка (е-пошта) за примање на онлајн плаќања (кредитна картичка, " +"и.т.н) Доколку подессите Paypal сметка, купувачот ќе може да ги плати вашите " +"фактури или понуди со копчето \"Плати со Paypal\" во автоматизирани е-пошти " +"или преку OpenERP порталот." #. module: account #: code:addons/account/account_move_line.py:535 @@ -3992,13 +4030,17 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" +"Не може да се пронајде дневник на сметка од %s тип за оваа компанија.\n" +"\n" +"Може да креирате таков во ова мени: \n" +"Конфигурација/Дневници/Дневници." #. module: account #: model:ir.actions.act_window,name:account.action_account_unreconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile #: model:ir.actions.act_window,name:account.action_account_unreconcile_select msgid "Unreconcile Entries" -msgstr "Непорамнети записи" +msgstr "Непорамнети внесови" #. module: account #: field:account.tax.code,notprintable:0 @@ -4015,7 +4057,7 @@ msgstr "Графикон на данок" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "Барај картица на сметка" +msgstr "Барај дневник на сметка" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice @@ -4031,7 +4073,7 @@ msgstr "година" #. module: account #: field:account.config.settings,date_start:0 msgid "Start date" -msgstr "Старен датум" +msgstr "Почетен датум" #. module: account #: view:account.invoice.refund:0 @@ -4042,6 +4084,12 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Ќе можете да ја уредите и валидирате оваа\n" +" белешка за побарување директно или да ја " +"оставите во нацрт,\n" +" чекајќи го документот кој треба да биде " +"доставен од\n" +" вашиот добавувач/купувач." #. module: account #: view:validate.account.move.lines:0 @@ -4049,9 +4097,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" -"Сите селектирани записи на картицата ќе бидат потврдени и објавени. Тоа " -"значи дека повеќе нема да можете да ги менувате нивните сметководствени " -"полиња." +"Сите избрани внесови во дневникот ќе бидат потврдени и објавени. Тоа значи " +"дека повеќе нема да можете да ги менувате нивните сметководствени полиња." #. module: account #: code:addons/account/account_move_line.py:98 @@ -4060,6 +4107,8 @@ msgid "" "You have not supplied enough arguments to compute the initial balance, " "please select a period and a journal in the context." msgstr "" +"Немате доставено доволно аргументи за да го пресметате почетното салдо, ве " +"молиме изберете период и дневник во контекст." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -4126,7 +4175,7 @@ msgstr "" #: field:account.tax.code,name:0 #: field:account.tax.code.template,name:0 msgid "Tax Case Name" -msgstr "" +msgstr "Име на даночен предмет" #. module: account #: report:account.invoice:0 @@ -4152,11 +4201,13 @@ msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" +"Не можете да измените објавен внес во овој дневник. \n" +"Најпрво треба да го подесите дневникот да дозволи откажување на внесови." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "Печати картица за продажба/набавка" +msgstr "Печати дневник за продажба/набавка" #. module: account #: view:account.installer:0 @@ -4189,7 +4240,7 @@ msgstr "Креирај сметка" #: code:addons/account/wizard/account_fiscalyear_close.py:62 #, python-format msgid "The entries to reconcile should belong to the same company." -msgstr "Записите за порамнување треба да припаѓаат на иста компанија." +msgstr "Внесовите за порамнување треба да припаѓаат на иста компанија." #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -4199,7 +4250,7 @@ msgstr "Сметка на даночен код" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "Непорамнети ставки од картица" +msgstr "Непорамнети ставки од дневник" #. module: account #: selection:account.account.type,close_method:0 @@ -4209,7 +4260,7 @@ msgstr "Детали" #. module: account #: help:account.config.settings,default_purchase_tax:0 msgid "This purchase tax will be assigned by default on new products." -msgstr "Овој данок на купување ќе биде доделен на новите производи." +msgstr "Овој данок на набавка ќе биде доделен на новите производи." #. module: account #: report:account.invoice:0 @@ -4317,6 +4368,9 @@ msgid "" "based on partner payment term!\n" "Please define partner on it!" msgstr "" +"Датумот на доспевање на ставката од внесот генерирана со ставката на моделот " +"'%s' од моделот '%s' е заснована на рокот за плаќање на партнерот!\n" +"Дефинирајте партнер на него!" #. module: account #: selection:account.balance.report,display_account:0 @@ -4381,7 +4435,7 @@ msgstr "Провери го збирот на фактурите на добав #: view:account.tax:0 #: view:account.tax.template:0 msgid "Applicable Code (if type=code)" -msgstr "" +msgstr "Применлив код (доколку тип=код)" #. module: account #: help:account.period,state:0 @@ -4389,6 +4443,8 @@ msgid "" "When monthly periods are created. The status is 'Draft'. At the end of " "monthly period it is in 'Done' status." msgstr "" +"Кога се креираат месечни периоди. Статусот е 'Нацрт'. На крајот од месечниот " +"период статусот е 'Завршено'." #. module: account #: view:account.invoice.report:0 @@ -4403,9 +4459,9 @@ msgid "" "the amount of this case into its parent. For example, set 1/-1 if you want " "to add/substract it." msgstr "" -"You can specify here the coefficient that will be used when consolidating " -"the amount of this case into its parent. For example, set 1/-1 if you want " -"to add/substract it." +"Овде може да го назначите коефициентот кој ќе се употреби кога се " +"консолидира износот на овој предмет во неговиот родител. На пример, поседете " +"1/-1 доколку сакате да го додадете/одземете." #. module: account #: view:account.analytic.line:0 @@ -4421,7 +4477,7 @@ msgstr "Сметка Плаќања" #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Не може да се пронајдат периоди за генерирање на отворени внесови." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4433,7 +4489,7 @@ msgstr "Налог за плаќање" msgid "" "Check this option if you want the user to reconcile entries in this account." msgstr "" -"Изберете ја оваа опција доколку сакате корисникот да ги порамни записите во " +"Изберете ја оваа опција доколку сакате корисникот да ги порамни внесовите во " "оваа сметка." #. module: account @@ -4450,12 +4506,12 @@ msgstr "Аналитички ставки" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "#Записи" +msgstr "#Внесови" #. module: account #: view:account.state.open:0 msgid "Open Invoice" -msgstr "Отворена фактура" +msgstr "Отвори фактура" #. module: account #: field:account.invoice.tax,factor_tax:0 @@ -4465,7 +4521,7 @@ msgstr "" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "Комплетен сет на даноци" #. module: account #: field:account.account,name:0 @@ -4488,7 +4544,7 @@ msgstr "Нема неконфигурирана компанија !" #. module: account #: field:res.company,expects_chart_of_accounts:0 msgid "Expects a Chart of Accounts" -msgstr "" +msgstr "Очекувам Контен план" #. module: account #: field:account.move.line,date:0 @@ -4499,13 +4555,13 @@ msgstr "Ефективен датум" #: code:addons/account/wizard/account_fiscalyear_close.py:100 #, python-format msgid "The journal must have default credit and debit account." -msgstr "" +msgstr "Дневникот мора да има стандардна сметка побарува и должи." #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree #: model:ir.ui.menu,name:account.menu_action_bank_tree msgid "Setup your Bank Accounts" -msgstr "Банкарски сметки" +msgstr "Подесете ги вашите Банкарски сметки" #. module: account #: xsl:account.transfer:0 @@ -4521,7 +4577,7 @@ msgstr "Историја на пораки и комуникација" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Картица за аналитички записи" +msgstr "Дневник за аналитички внесови" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4551,6 +4607,8 @@ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." msgstr "" +"Означете го ова поле доколку сакате даноците поврзани со овој даночен код да " +"се појавуваат на фактурите." #. module: account #: code:addons/account/account_move_line.py:1061 @@ -4576,12 +4634,12 @@ msgstr "Сметководство" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "Записи на картица со период во тековната година" +msgstr "Внесови на дневник со период во тековната година" #. module: account #: field:account.account,child_consol_ids:0 msgid "Consolidated Children" -msgstr "Consolidated Children" +msgstr "Консолидирани Деца" #. module: account #: code:addons/account/account_invoice.py:550 @@ -4674,7 +4732,7 @@ msgstr "(Фактурата не треба да биде порамнета д #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Аналитичко конто за данок на фактура" #. module: account #: field:account.chart,period_from:0 @@ -4704,7 +4762,7 @@ msgstr "30 дена Крај на месец" #: model:ir.actions.act_window,name:account.action_account_analytic_balance #: model:ir.actions.report.xml,name:account.account_analytic_account_balance msgid "Analytic Balance" -msgstr "Аналитичка состојба" +msgstr "Аналитичко салдо" #. module: account #: help:res.partner,property_payment_term:0 @@ -4712,6 +4770,8 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Овој рок на плаќање ќе биде употребен наместо стандардниот за налозите за " +"продажба и излезните фактури" #. module: account #: view:account.config.settings:0 @@ -4733,12 +4793,12 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "Објавени ставки од картица" +msgstr "Објавени ставки од дневник" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Нема проследување" #. module: account #: view:account.tax.template:0 @@ -4748,7 +4808,7 @@ msgstr "Барај урнеци за данок" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "Нацрт записи" +msgstr "Нацрт внесови" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4757,8 +4817,8 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" -"На пример, децимална точност од 2 ќе овозможи записи во дневникот како 9.99 " -"EUR, додека децимална точност од 4 ќе овозможи записи во дневникот како " +"На пример, децимална точност од 2 ќе овозможи внесови во дневникот како 9.99 " +"EUR, додека децимална точност од 4 ќе овозможи внесови во дневникот како " "0.0231 EUR." #. module: account @@ -4798,6 +4858,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да подесите нова банкарска сметка. \n" +"

\n" +" Конфигурирајте ја банкарската сметка на вашата компанија и " +"изберете\n" +" ја онаа која најчесто се појавува во подножјето на извештајот.\n" +"

\n" +" Доколку користите сметководствена апликација на OpenERP, " +"дневниците и\n" +" сметките ќе бидат креирани автоматски врз основа на овие " +"податоци.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_invoice_cancel @@ -4808,7 +4881,7 @@ msgstr "Откажи ги селектираните фактури" #: code:addons/account/account_bank_statement.py:423 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" -msgstr "Треба да доделите аналитичка картица на '%s' картица!" +msgstr "Треба да доделите аналитички дневник на '%s' дневник!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -4816,8 +4889,8 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." msgstr "" -"Аналитичките трошоци (распореди, некои нарачани производи, ...) доаѓаат од " -"аналитичките сметки. Овие генерираат нацрт влезни фактури.)" +"Аналитичките трошоци (временски таблици, некои нарачани производи, ...) " +"доаѓаат од аналитичките сметки. Овие генерираат нацрт влезни фактури." #. module: account #: view:account.bank.statement:0 @@ -4830,6 +4903,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Грешка!\n" +"Не може да креирате рекурсивни Даночни кодови." #. module: account #: constraint:account.period:0 @@ -4837,6 +4912,8 @@ msgid "" "Error!\n" "The duration of the Period(s) is/are invalid." msgstr "" +"Грешка!\n" +"Времетраењето на Периодот(ите) не е/се валидни." #. module: account #: field:account.entries.report,month:0 @@ -4854,11 +4931,12 @@ msgstr "Месец" #, python-format msgid "You cannot change the code of account which contains journal items!" msgstr "" +"Не може да се промени кодот на сметката кој содржи ставки на дневникот!" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 msgid "Supplier invoice sequence" -msgstr "" +msgstr "Секвенца на влезна фактура" #. module: account #: code:addons/account/account_invoice.py:583 @@ -4868,6 +4946,8 @@ msgid "" "Cannot find a chart of account, you should create one from Settings\\" "Configuration\\Accounting menu." msgstr "" +"Не може да се пронајде контен план, треба да го креирате од менито " +"Подесувања\\Конфигурација\\Сметководство" #. module: account #: field:account.entries.report,product_uom_id:0 @@ -4929,7 +5009,7 @@ msgstr "Основен код на сметката" #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." -msgstr "" +msgstr "Треба да доставите сметка за отпишување/размена на различни внесови." #. module: account #: help:res.company,paypal_account:0 @@ -4956,7 +5036,7 @@ msgstr "Paypal корисничко име (обично e-mail) за прима #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "Сите објавени записи" +msgstr "Сите објавени внесови" #. module: account #: field:report.aged.receivable,name:0 @@ -4966,12 +5046,12 @@ msgstr "Месечен опсег" #. module: account #: help:account.analytic.balance,empty_acc:0 msgid "Check if you want to display Accounts with 0 balance too." -msgstr "Означете доколку сакате да ги прикажете сметките со 0 состојба." +msgstr "Означете доколку сакате да ги прикажете сметките со 0 салдо." #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Порамнување на отворени внесови" #. module: account #. openerp-web @@ -4983,7 +5063,7 @@ msgstr "Последно порамнување:" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "Балансирано" #. module: account #: model:process.node,note:account.process_node_importinvoice0 @@ -4997,6 +5077,8 @@ msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." msgstr "" +"Моментално нема компанија без контен план. Волшебникот поради тоа нема да " +"биде извршен." #. module: account #: view:account.move:0 @@ -5007,7 +5089,7 @@ msgstr "Додади внатрешна белешка..." #. module: account #: model:ir.actions.act_window,name:account.action_wizard_multi_chart msgid "Set Your Accounting Options" -msgstr "" +msgstr "Подесете ги вашите сметководствени опции" #. module: account #: model:ir.model,name:account.model_account_chart @@ -5017,7 +5099,7 @@ msgstr "Контен план" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "Референца за уплата" +msgstr "Референца на уплата" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -5033,7 +5115,7 @@ msgstr "Име на сметка" #. module: account #: help:account.fiscalyear.close,report_name:0 msgid "Give name of the new entries" -msgstr "Дај име на нови записи" +msgstr "Дај име на нови внесови" #. module: account #: model:ir.model,name:account.model_account_invoice_report @@ -5075,12 +5157,12 @@ msgstr "Може ли да биде видливо?" #. module: account #: model:ir.model,name:account.model_account_journal_select msgid "Account Journal Select" -msgstr "Избери картица за сметка" +msgstr "Избери дневник за сметка" #. module: account #: view:account.tax.template:0 msgid "Credit Notes" -msgstr "Кредитни белешки" +msgstr "Белешки за побарување" #. module: account #: view:account.move.line:0 @@ -5101,7 +5183,7 @@ msgstr "Името на периодот мора да биде уникатно #. module: account #: help:wizard.multi.charts.accounts,currency_id:0 msgid "Currency as per company's country." -msgstr "" +msgstr "Валута според земјата на компанијата." #. module: account #: view:account.tax:0 @@ -5125,7 +5207,7 @@ msgstr "" #. module: account #: view:account.use.model:0 msgid "Create Entries From Models" -msgstr "Креирај записи од моделите" +msgstr "Креирај внесови од моделите" #. module: account #: field:account.account,reconcile:0 @@ -5140,7 +5222,7 @@ msgid "" "You cannot create an account which has parent account of different company." msgstr "" "Грешка!\n" -"Неможе да креирате сметка што има матична сметка од друга компанија." +"Не може да креирате сметка што има матична сметка од друга компанија." #. module: account #: code:addons/account/account_invoice.py:627 @@ -5151,6 +5233,10 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Не може да се пронајде дневник на сметка од %s тип за оваа компанија.\n" +"\n" +"Можете да го креирате во ова мени:\n" +"Конфигурација\\Дневници\\Дневници." #. module: account #: report:account.vat.declaration:0 @@ -5167,12 +5253,12 @@ msgstr "ECNJ" #: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report msgid "Account Analytic Cost Ledger For Journal Report" msgstr "" -"Сметка на главна книга на аналитички трошоци за извештајот на картицата" +"Сметка на главна книга на аналитички трошоци за извештајот на дневникот" #. module: account #: model:ir.actions.act_window,name:account.action_model_form msgid "Recurring Models" -msgstr "Модели на повторување" +msgstr "Повторливи модели" #. module: account #: view:account.tax:0 @@ -5215,7 +5301,7 @@ msgstr "Откажано" #: code:addons/account/account.py:1858 #, python-format msgid " (Copy)" -msgstr " (Copy)" +msgstr " (Копија)" #. module: account #: help:account.config.settings,group_proforma_invoices:0 @@ -5225,7 +5311,7 @@ msgstr "Овозможува префрлање на фактурите во с #. module: account #: view:account.journal:0 msgid "Unit Of Currency Definition" -msgstr "" +msgstr "Дефиниција на валутата" #. module: account #: help:account.partner.ledger,amount_currency:0 @@ -5234,6 +5320,8 @@ msgid "" "It adds the currency column on report if the currency differs from the " "company currency." msgstr "" +"Додава колона за валута на извештајот доколку валутата се разликува од " +"валутата на компанијата." #. module: account #: code:addons/account/account.py:3356 @@ -5246,7 +5334,7 @@ msgstr "Данок на набавка %.2f%%" #: model:ir.actions.act_window,name:account.action_account_subscription_generate #: model:ir.ui.menu,name:account.menu_generate_subscription msgid "Generate Entries" -msgstr "Генерирај записи" +msgstr "Генерирај внесови" #. module: account #: help:account.vat.declaration,chart_tax_id:0 @@ -5288,7 +5376,7 @@ msgstr "Данок на продажба" #. module: account #: view:account.move:0 msgid "Cancel Entry" -msgstr "" +msgstr "Откажи внес" #. module: account #: field:account.tax,ref_tax_code_id:0 @@ -5304,7 +5392,7 @@ msgstr "Фактура " #. module: account #: field:account.chart.template,property_account_income:0 msgid "Income Account on Product Template" -msgstr "Сметка Приход на урнек за производ" +msgstr "Приходна сметка на урнек за производ" #. module: account #: help:account.journal.period,state:0 @@ -5313,6 +5401,9 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Кога периодот на дневникот е креиран. Статусот е 'Нацрт'. Доколку извештајот " +"е испечатен доаѓа во статус 'Испечатено'. Кога трансакциите се направени, " +"доаѓа во статус 'Завршено'." #. module: account #: code:addons/account/account.py:3167 @@ -5341,7 +5432,7 @@ msgstr "Фактури" #. module: account #: help:account.config.settings,expects_chart_of_accounts:0 msgid "Check this box if this company is a legal entity." -msgstr "" +msgstr "Означи го ова поле доколку компанијата е правно лица." #. module: account #: model:account.account.type,name:account.conf_account_type_chk @@ -5397,7 +5488,7 @@ msgstr "Фактурирано" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "Објавени записи на картица" +msgstr "Објавени внесови во дневникот" #. module: account #: view:account.use.model:0 @@ -5412,7 +5503,7 @@ msgid "" "Partner bank account number." msgstr "" "Број на банкарска сметка на која фактурата ќе биде платена. Банкарската " -"сметка на Компанијата доколку е Фактура на клиент или Повлекување на " +"сметка на Компанијата доколку е Излезна фактура или Повлекување на " "добавувач, во спротивно бројот на банкарската сметка на Партнерот." #. module: account @@ -5458,6 +5549,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Подесете ја сметката која ќе биде поставена на ставките за данок на " +"фактурата. Оставете празно за да ја употребите сметката трошоци." #. module: account #: code:addons/account/account.py:890 @@ -5468,7 +5561,7 @@ msgstr "Период на отварање" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "Записи во картица за преглед" +msgstr "Внесови во дневникот за прегледување" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 @@ -5544,7 +5637,7 @@ msgstr "Биланс по тип на сметка" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "Генерира отворени записи за фискалната година" +msgstr "Генерира отворени внесови за фискалната година" #. module: account #: model:res.groups,name:account.group_account_user @@ -5582,7 +5675,7 @@ msgstr "Движења" #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "" +msgstr "Ставки на каса" #. module: account #: model:ir.model,name:account.model_account_vat_declaration @@ -5592,7 +5685,7 @@ msgstr "Сметка ДДВ декларација" #. module: account #: view:account.bank.statement:0 msgid "Cancel Statement" -msgstr "" +msgstr "Откажи извод" #. module: account #: help:account.config.settings,module_account_accountant:0 @@ -5600,6 +5693,9 @@ msgid "" "If you do not check this box, you will be able to do invoicing & payments, " "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" +"Доколку не го означите ова поле, ќе може да правите фактурирање и плаќања, " +"но нема да можете да вршите сметководствени работи (Ставки на дневник, " +"контен план, ...)" #. module: account #: view:account.period:0 @@ -5639,7 +5735,7 @@ msgstr "" #. module: account #: report:account.analytic.account.balance:0 msgid "Analytic Balance -" -msgstr "Аналитичка сост -" +msgstr "Аналитичко салдо" #. module: account #: report:account.account.balance:0 @@ -5677,6 +5773,8 @@ msgstr "" msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"Не може да се избрише доколку е поврзано на фактура. (Фактура: %s - ID на " +"движење: %s)" #. module: account #: view:account.bank.statement:0 @@ -5699,7 +5797,7 @@ msgstr "Плаќања" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "Запис" +msgstr "Внес" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5760,6 +5858,9 @@ msgid "" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Не може да се креира автоматска секвенца за ова парче.\n" +"Ставете секвенца во дефиницијата на дневникот за автоматско нумерирање или " +"креирајте секвенца рачно за ова парче." #. module: account #: view:account.invoice:0 @@ -5788,7 +5889,7 @@ msgstr "Сметка Данок" #: model:ir.actions.act_window,name:account.action_account_report_bs #: model:ir.ui.menu,name:account.menu_account_report_bs msgid "Balance Sheet" -msgstr "Биланс" +msgstr "Биланс на состојба" #. module: account #: selection:account.account.type,report_type:0 @@ -5812,7 +5913,7 @@ msgstr "Сметководствени извештаи" #: view:analytic.entries.report:0 #: model:ir.actions.act_window,name:account.action_move_line_form msgid "Entries" -msgstr "Записи" +msgstr "Внесови" #. module: account #: view:account.entries.report:0 @@ -5830,6 +5931,7 @@ msgstr "Код за пресметка (доколку тип=код)" msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" +"Не може да пронајде контен план за оваа компанија, треба да креирате." #. module: account #: selection:account.analytic.journal,type:0 @@ -5871,7 +5973,7 @@ msgstr "Износ" #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "Запис за крај на фискална година" +msgstr "Внес за крај на фискална година" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5909,11 +6011,17 @@ msgid "" "entry was reconciled, either the user pressed the button \"Fully " "Reconciled\" in the manual reconciliation process" msgstr "" +"Датум на кој сметководствените внесови на партнерот последен пат се целосно " +"порамнети. Тој се разликува од датумот кога е направено последното " +"порамнување за овој партнер, бидејќи овде го отсликуваме фактот дека ништо " +"друго нема за порамнување на овој датум. Ова може да биде постигнато на 2 " +"начина: или последниот внес должи/побарува да биде порамнет, или корисникот " +"да го притисне копчето \"Целосно порамнето\" во процесот за рачно порамнување" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "Дозволи откажување на записи" +msgstr "Дозволи откажување на внесови" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -5930,7 +6038,7 @@ msgstr "" #. module: account #: field:account.tax.code,sign:0 msgid "Coefficent for parent" -msgstr "" +msgstr "Коефициент за партнер" #. module: account #: report:account.partner.balance:0 @@ -5961,7 +6069,7 @@ msgstr "Преработи даноци и вкупно" #: code:addons/account/account.py:1103 #, python-format msgid "You cannot modify/delete a journal with entries for this period." -msgstr "" +msgstr "Не може да измените/избришете дневник со внесови за овој период." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -5971,7 +6079,7 @@ msgstr "Вклучено во основниот износ" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "Надворешен број на Ф-ра" +msgstr "Број на влезна фактура" #. module: account #: help:account.payment.term.line,days:0 @@ -5993,17 +6101,18 @@ msgstr "Пресметување на износ" #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" +"Не може фа додадете/измените внесови во затворен период %s од дневник %s." #. module: account #: view:account.journal:0 msgid "Entry Controls" -msgstr "Контроли на записи" +msgstr "Контроли на внесови" #. module: account #: view:account.analytic.chart:0 #: view:project.account.analytic.line:0 msgid "(Keep empty to open the current situation)" -msgstr "(Чувајте празно за да ја отворите тековната состојба)" +msgstr "(Оставете празно за да ја отворите тековната состојба)" #. module: account #: field:account.analytic.balance,date1:0 @@ -6050,12 +6159,15 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Изберете го видот на валуација поврзана со оваа ставка за рокот на плаќање. " +"Забележете дека последната ставка треба да ви биде со тип 'Биланс' за да " +"бидете сигурни дека целиот износ ќе биде третиран." #. module: account #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "Вклучи почетни состојби" +msgstr "Вклучи почетно салдо" #. module: account #: view:account.invoice.tax:0 @@ -6067,7 +6179,7 @@ msgstr "Даночни кодови" #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "Повлекување на клиент" +msgstr "Поврат на купувач" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -6085,7 +6197,7 @@ msgstr "Извештај за фактурите креирани во посл #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "" +msgstr "Дневник за внесови Крај на година" #. module: account #: view:account.invoice:0 @@ -6117,7 +6229,7 @@ msgstr "" #. module: account #: view:account.subscription.line:0 msgid "Subscription lines" -msgstr "" +msgstr "Ставки за претплата" #. module: account #: field:account.entries.report,quantity:0 @@ -6144,7 +6256,7 @@ msgstr "Промени валута" #: model:process.node,note:account.process_node_accountingentries0 #: model:process.node,note:account.process_node_supplieraccountingentries0 msgid "Accounting entries." -msgstr "Сметководствени записи." +msgstr "Сметководствени внесови." #. module: account #: view:account.invoice:0 @@ -6155,7 +6267,7 @@ msgstr "Датум на плаќање" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Отварање на ставки на каса" #. module: account #: view:account.analytic.account:0 @@ -6167,7 +6279,7 @@ msgstr "Аналитички сметки" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "Фактури и поврати на клиент" +msgstr "Фактури и поврати на купувач" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -6180,7 +6292,7 @@ msgstr "Валута на износот" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "Заокружи по ставка" #. module: account #: report:account.analytic.account.balance:0 @@ -6238,7 +6350,7 @@ msgstr "Нормален текст" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 msgid "Payment entries are the second input of the reconciliation." -msgstr "Записите за плаќање се вториот инпут од порамнувањето." +msgstr "Внесовите за плаќање се вториот инпут од порамнувањето." #. module: account #: help:res.partner,property_supplier_payment_term:0 @@ -6246,6 +6358,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Овој рок на плаќање ќе биде употребен наместо стандардниот за налозите за " +"набавка и влезните фактури" #. module: account #: code:addons/account/account_invoice.py:451 @@ -6255,6 +6369,9 @@ msgid "" "number). You can set it back to \"Draft\" state and modify its content, " "then re-confirm it." msgstr "" +"Не може да избришете фактура откако е потврдена (и има добиено број). Може " +"да ја вратите назад во состојба \"Нацрт\" и да ја промените нејзината " +"содржина, потоа повторно да ја потврдите." #. module: account #: help:account.automatic.reconcile,power:0 @@ -6315,7 +6432,7 @@ msgstr "Порамни со отпишување" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." -msgstr "" +msgstr "Не може да креирате ставки на дневник на сметка од типот преглед." #. module: account #: selection:account.payment.term.line,value:0 @@ -6328,6 +6445,8 @@ msgstr "Фиксен износ" #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" +"Не може да го промените данокот, треба да ги отстраните и повторно да ги " +"креирате ставките." #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile @@ -6338,13 +6457,13 @@ msgstr "Автоматско порамнување на сметка" #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "Ставка на картица" +msgstr "Ставка на дневник" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close #: model:ir.ui.menu,name:account.menu_wizard_fy_close msgid "Generate Opening Entries" -msgstr "Генерирај записи за отварање" +msgstr "Генерирај внесови за отварање" #. module: account #: help:account.tax,type:0 @@ -6367,7 +6486,7 @@ msgstr "Креирај датум" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_form #: model:ir.ui.menu,name:account.account_def_analytic_journal msgid "Analytic Journals" -msgstr "Аналитички картици" +msgstr "Аналитички дневници" #. module: account #: field:account.account,child_id:0 @@ -6390,7 +6509,7 @@ msgstr "Отпиши" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "записи" +msgstr "внесови" #. module: account #: field:res.partner,debit:0 @@ -6468,7 +6587,7 @@ msgstr "Макс. количина:" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.action_account_invoice_refund msgid "Refund Invoice" -msgstr "Рефундирај Фактура" +msgstr "Поврат на Фактура" #. module: account #: model:ir.actions.act_window,help:account.action_account_entries_report_all @@ -6477,6 +6596,10 @@ msgid "" "document shows your debit and credit taking in consideration some criteria " "you can choose by using the search tool." msgstr "" +"Од овој преглед, добивате анализи на вашите различни финансиски сметки. " +"Документот ги покажува вашите задолжувања и побарувања земајќи во предвид " +"некои критериуми кои може да ги изберете со користење на алатката за " +"пребарување." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -6484,7 +6607,7 @@ msgid "" "Shows you the progress made today on the reconciliation process. Given by \n" "Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" msgstr "" -"Ви го пакажува напредокот кој е направен денес во процесот за порамнување. \n" +"Ви го покажува напредокот кој е направен денес во процесот за порамнување. \n" "Дадено преку \n" "Партнери порамнети денес \\ (Преостанати партнери + Партнери порамнети денес)" @@ -6572,7 +6695,7 @@ msgstr "" #: help:account.bank.statement,balance_end:0 msgid "Balance as calculated based on Starting Balance and transaction lines" msgstr "" -"Билансот е пресметан врз основа на Почетниот Биланс и ставките на " +"Салдото е пресметано врз основа на Почетното Салдо и ставките на " "трансакцијата" #. module: account @@ -6590,7 +6713,7 @@ msgstr "Сметка за данок од фактури" #: model:ir.actions.act_window,name:account.action_account_general_journal #: model:ir.model,name:account.model_account_general_journal msgid "Account General Journal" -msgstr "Општа картица на сметки" +msgstr "Општ дневник на сметки" #. module: account #: help:account.move,state:0 @@ -6601,6 +6724,11 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" +"Сите рачно креирани записи на дневникот се вообичаено во стстус " +"'Необјавено', но може да подесите опција за прескокнување на овој стстус на " +"поврзаниот дневник. Во тој случај, тие ќе се однесуваат како внесови во " +"дневникот автоматски креирани од системот за валидација на документи " +"(фактури, банкарски изводи...) и ќе бидат креирани во статус 'Објавено'." #. module: account #: field:account.payment.term.line,days:0 @@ -6614,6 +6742,8 @@ msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" +"Не може да го валидирате овој внес во дневникот бидејќи сметката \"%s\" не " +"припаѓа на контниот план \"%s\"." #. module: account #: view:account.financial.report:0 @@ -6647,17 +6777,17 @@ msgstr "Никој" #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "Поврати на клиентот" +msgstr "Поврати на купувач" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "Надворешна состојба" +msgstr "Надворешно салдо" #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" -msgstr "Име на картица-период" +msgstr "Име на дневник-период" #. module: account #: field:account.invoice.tax,factor_base:0 @@ -6667,7 +6797,7 @@ msgstr "Фактор за множење за основниот код" #. module: account #: help:account.journal,company_id:0 msgid "Company related to this journal" -msgstr "Компанија поврзана со оваа картица" +msgstr "Компанија поврзана со овој дневник" #. module: account #: help:account.config.settings,group_multi_currency:0 @@ -6689,7 +6819,7 @@ msgstr "Забелешка за фискална позиција :" #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "Анализи на аналитички записи" +msgstr "Анализи на аналитички внесови" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6702,13 +6832,13 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" -"Оваа картица ќе биде автоматски креирана за оваа банкарска сметка кога ќе го " +"Овој дневник ќе биде автоматски создаден за оваа банкарска сметка кога ќе го " "зачувате извештајот" #. module: account #: view:account.analytic.line:0 msgid "Analytic Entry" -msgstr "Аналитички запис" +msgstr "Аналитички внес" #. module: account #: view:res.company:0 @@ -6739,7 +6869,7 @@ msgstr "" #: view:account.chart.template:0 #: field:account.chart.template,account_root_id:0 msgid "Root Account" -msgstr "Врвна сметка" +msgstr "Коренска сметка" #. module: account #: field:res.partner,last_reconciliation_date:0 @@ -6764,16 +6894,18 @@ msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Не може да откажете фактура која е делумно платена. Најпрвин треба да ги " +"отпорамните поврзаните внесови за плаќање." #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "Даноци на клиентот" +msgstr "Даноци на купувачот" #. module: account #: help:account.model,name:0 msgid "This is a model for recurring accounting entries" -msgstr "Ова е модел за повторливи сметководствени записи" +msgstr "Ова е модел за повторливи сметководствени внесови" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 @@ -6802,7 +6934,7 @@ msgstr "" " Кликнете тука за да регистрирате поврат од добавувач.\n" "

\n" " Наместо да креирате поврат од добавувач рачно, може да " -"генерирате и да ги порамните дирекно од фактурата поврзана со добавувачот.\n" +"генерирате и да ги порамните директно од фактурата поврзана со добавувачот.\n" "

\n" " " @@ -6866,7 +6998,7 @@ msgstr "Листа на сите даноци кои треба да бидат #. module: account #: model:ir.actions.report.xml,name:account.account_intracom msgid "IntraCom" -msgstr "ИнтраКом" +msgstr "IntraCom" #. module: account #: view:account.move.line.reconcile.writeoff:0 @@ -6998,7 +7130,7 @@ msgstr "Заокружи глобално" #. module: account #: selection:account.report.general.ledger,sortby:0 msgid "Journal & Partner" -msgstr "Картица и партнер" +msgstr "Дневник и партнер" #. module: account #: field:account.automatic.reconcile,power:0 @@ -7009,7 +7141,7 @@ msgstr "Моќ" #: code:addons/account/account.py:3427 #, python-format msgid "Cannot generate an unused journal code." -msgstr "Не може да генерира неупотребен код на картица." +msgstr "Не може да генерира неупотребен код на дневник." #. module: account #: view:account.invoice:0 @@ -7019,7 +7151,7 @@ msgstr "" #. module: account #: view:project.account.analytic.line:0 msgid "View Account Analytic Lines" -msgstr "Поглед аналитички ставки на сметка" +msgstr "Прегледај аналитички ставки на сметка" #. module: account #: field:account.invoice,internal_number:0 @@ -7080,6 +7212,8 @@ msgid "" "There is no opening/closing period defined, please create one to set the " "initial balance." msgstr "" +"Нема дефинирано период на отварање/затварање, ве молиме креирајте период за " +"да го подесите почетното салдо." #. module: account #: help:account.tax.template,sequence:0 @@ -7088,6 +7222,9 @@ msgid "" "higher ones. The order is important if you have a tax that has several tax " "children. In this case, the evaluation order is important." msgstr "" +"Полето за секвенца се користи за да се подредат даночните ставки од најниска " +"до највисока сенвенца. Редоследот е важен доколку имате данок со неколку " +"подданоци. Во овој случај, налогот за евалуација е битен." #. module: account #: code:addons/account/account.py:1410 @@ -7122,7 +7259,7 @@ msgstr "Ликвидност" #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form #: model:ir.ui.menu,name:account.account_analytic_journal_entries msgid "Analytic Journal Items" -msgstr "Ставки на аналитичка картица" +msgstr "Ставки на аналитички дневник" #. module: account #: field:account.config.settings,has_default_company:0 @@ -7136,6 +7273,10 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year: " "it will simply replace the old opening entries with the new ones." msgstr "" +"Овој волшебник ќе генерира внесови крај на година на дневникот за избраната " +"фискална година. Забележете дека може да го стартувает овој волшебник повеќе " +"пати за иста фискална година: тој ќе ги замени старите отворени внесови со " +"новите." #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash @@ -7150,11 +7291,15 @@ msgid "" "the tool search to analyse information about analytic entries generated in " "the system." msgstr "" +"Од овој преглед, добивате анализа на различните аналитички внесови со " +"следење на аналитичката сметка која се совпаѓа со вашите бизнис потреби. " +"Употребете ја алатката пребарај за да ги анализирате информациите за " +"аналитичките внесови генерирани во системот." #. module: account #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "Името на картицата мора да биде единствено по компанија !" +msgstr "Името на дневникот мора да биде единствено по компанија !" #. module: account #: field:account.account.template,nocreate:0 @@ -7168,8 +7313,8 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" -"Не можете да ја промените компанијата сопственик на сметката која содржи " -"ставки во картицата." +"Не можете да ја промените компанијата сопственик на сметката која веќе " +"содржи ставки во дневникот." #. module: account #: report:account.invoice:0 @@ -7182,7 +7327,7 @@ msgstr "Поврати на добавувач" #. module: account #: field:account.bank.statement,move_line_ids:0 msgid "Entry lines" -msgstr "Ставки на запис" +msgstr "Ставки на внес" #. module: account #: field:account.move.line,centralisation:0 @@ -7258,7 +7403,7 @@ msgstr "account.sequence.fiscalyear" #: model:ir.model,name:account.model_account_analytic_journal #: model:ir.ui.menu,name:account.account_analytic_journal_print msgid "Analytic Journal" -msgstr "Аналитичка картица" +msgstr "Аналитички дневник" #. module: account #: view:account.entries.report:0 @@ -7271,6 +7416,8 @@ msgid "" "Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for " "2%." msgstr "" +"Процентите за ставката Рок на плаќање мора да бидат помеѓу 0 и 1, на пример: " +"0.02 за 2%." #. module: account #: report:account.invoice:0 @@ -7320,19 +7467,19 @@ msgstr "Белешки" #. module: account #: model:ir.model,name:account.model_analytic_entries_report msgid "Analytic Entries Statistics" -msgstr "Статистики на аналитички записи" +msgstr "Статистики на аналитички внесови" #. module: account #: code:addons/account/account_analytic_line.py:142 #: code:addons/account/account_move_line.py:958 #, python-format msgid "Entries: " -msgstr "Записи: " +msgstr "Внесови: " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "Валута на поврзаната картица на сметката." +msgstr "Валута на поврзан дневник на сметката." #. module: account #: constraint:account.move.line:0 @@ -7367,7 +7514,7 @@ msgstr "Вкупно задолжување" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "Следен внос на партнер за порамнување" +msgstr "Следен внес на партнер за порамнување" #. module: account #: report:account.invoice:0 @@ -7380,7 +7527,7 @@ msgid "" "This account will be used instead of the default one as the receivable " "account for the current partner" msgstr "" -"Оваа сметка ќе се употреби наместо стандарднота како сметка на побарувања за " +"Оваа сметка ќе се употреби наместо стандардната како сметка на побарувања за " "тековен партнер" #. module: account @@ -7397,7 +7544,7 @@ msgstr "Код Python" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "Записи во картица со период во тековен период" +msgstr "Внесови во дневникот во тековниот период" #. module: account #: help:account.journal,update_posted:0 @@ -7405,8 +7552,8 @@ msgid "" "Check this box if you want to allow the cancellation the entries related to " "this journal or of the invoice related to this journal" msgstr "" -"Означете го ова поле доколку сакате да дозволите откажување на записите " -"поврзани со оваа картица или на фактурата поврзана со оваа картица" +"Означете го ова поле доколку сакате да дозволите откажување на внесовите " +"поврзани со овој дневник или откажување на фактурата поврзана со овој дневник" #. module: account #: view:account.fiscalyear.close:0 @@ -7416,12 +7563,12 @@ msgstr "Креирај" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "Креирај запис" +msgstr "Креирај внес" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Cancel Fiscal Year Closing Entries" -msgstr "" +msgstr "Откажи ги внесовите за затварање на фискална година" #. module: account #: selection:account.account.type,report_type:0 @@ -7439,7 +7586,7 @@ msgstr "Вкупно Трансакции" #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "Не може да одстраните сметка што содржи внесови во дневник." +msgstr "Не може да отстраните сметка што содржи внесови во дневник." #. module: account #: code:addons/account/account.py:1024 @@ -7456,7 +7603,7 @@ msgstr "Стил на финансиски извештај" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "Зачувај го знакот на состојбата" +msgstr "Зачувај го знакот на салдото" #. module: account #: view:account.vat.declaration:0 @@ -7531,7 +7678,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_move_journal_line_form #: model:ir.ui.menu,name:account.menu_finance_entries msgid "Journal Entries" -msgstr "Ставки во дневник" +msgstr "Внесови во дневник" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7577,7 +7724,7 @@ msgstr "Да" #: code:addons/account/report/common_report_header.py:67 #, python-format msgid "All Entries" -msgstr "Сите записи" +msgstr "Сите внесови" #. module: account #: constraint:account.move.reconcile:0 @@ -7587,7 +7734,7 @@ msgstr "Може да порманувате внесови во дневник #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "Избери картица" +msgstr "Избори дневник" #. module: account #: view:account.bank.statement:0 @@ -7628,9 +7775,9 @@ msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." msgstr "" -"Означете го ова поле доколку не сте сигурни за записот во картицата и " -"доколку сакате да го означите како 'да биде прегледано' од страна на експерт " -"за сметководство" +"Означете го ова поле доколку не сте сигурни за внесот во дневникот и доколку " +"сакате да го означите како 'да биде прегледано' од страна на овластен " +"сметководител" #. module: account #: field:account.chart.template,complete_tax_set:0 @@ -7706,7 +7853,7 @@ msgstr "Пејпал Url" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "Менаџирај ги уплатите на купувачот" +msgstr "Управувај со уплатите на купувачот" #. module: account #: help:report.invoice.created,origin:0 @@ -7736,7 +7883,7 @@ msgstr "Даноци кои се користат во продажбите" #. module: account #: view:account.period:0 msgid "Re-Open Period" -msgstr "" +msgstr "Отвори период повторно" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 @@ -7770,11 +7917,14 @@ msgid "" "Make sure you have configured payment terms properly.\n" "The latest payment term line should be of the \"Balance\" type." msgstr "" +"Не може да валидирате не-балансиран внес.\n" +"Осигурете се дека правилно сте ги конфигурирале термините за плаќање.\n" +"Последната ставка од терминот за плаќање треба да биде од типот \"Биланс\"." #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "Изводот со рачни записи станува нацрт извод." +msgstr "Изводот со рачни внесови станува нацрт извод." #. module: account #: view:account.aged.trial.balance:0 @@ -7803,7 +7953,7 @@ msgstr "Нема дефинирано сметка за трошоци за ов #. module: account #: view:account.account.template:0 msgid "Internal notes..." -msgstr "" +msgstr "Внатрешни белешки..." #. module: account #: constraint:account.account:0 @@ -7865,7 +8015,7 @@ msgstr "Урнек на даночна сметка" #. module: account #: view:account.journal.select:0 msgid "Are you sure you want to open Journal Entries?" -msgstr "Дали сакате да отворите записи на картица?" +msgstr "Дали сакате да отворите внесови на дневникот?" #. module: account #: view:account.state.open:0 @@ -7880,7 +8030,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "Референца на клиент" +msgstr "Референца на купувач" #. module: account #: field:account.account.template,parent_id:0 @@ -7896,7 +8046,7 @@ msgstr "Цена" #: view:account.bank.statement:0 #: field:account.bank.statement,closing_details_ids:0 msgid "Closing Cashbox Lines" -msgstr "" +msgstr "Затварање на ставки на каса" #. module: account #: view:account.bank.statement:0 @@ -7914,7 +8064,7 @@ msgstr "Дејствува како стандардна сметка за за #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "Објавени записи" +msgstr "Објавени внесови" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -7927,7 +8077,7 @@ msgstr "За процент внесете сооднос помеѓу 0-1." #: field:account.invoice,date_invoice:0 #: field:report.invoice.created,date_invoice:0 msgid "Invoice Date" -msgstr "Датум на Ф-ра" +msgstr "Датум на Фактура" #. module: account #: view:account.invoice.report:0 @@ -7942,12 +8092,12 @@ msgstr "Данок на набавки (%)" #. module: account #: help:res.partner,credit:0 msgid "Total amount this customer owes you." -msgstr "Вкупна сума кој ви ја должи клиентот." +msgstr "Вкупна сума кој ви ја должи купувачот." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "Небалансирани ставки во картица" +msgstr "Небалансирани ставки во дневник" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7962,7 +8112,7 @@ msgstr "Икона" #. module: account #: view:account.use.model:0 msgid "Ok" -msgstr "Добро" +msgstr "Во ред" #. module: account #: field:account.chart.template,tax_code_root_id:0 @@ -8024,12 +8174,12 @@ msgstr "Референца на фактура" #. module: account #: field:account.fiscalyear.close,report_name:0 msgid "Name of new entries" -msgstr "Име на нови записи" +msgstr "Име на нови внесови" #. module: account #: view:account.use.model:0 msgid "Create Entries" -msgstr "Креирај записи" +msgstr "Креирај внесови" #. module: account #: model:ir.model,name:account.model_cash_box_out @@ -8063,7 +8213,7 @@ msgstr "Договори/Аналитички сметки" #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "Картица на сметка" +msgstr "Дневник на сметка" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 @@ -8120,6 +8270,8 @@ msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Нема дефинирано стандардна сметка на побарувања\n" +"на дневникот \"%s\"." #. module: account #: view:account.invoice.line:0 @@ -8131,12 +8283,12 @@ msgstr "Ставка од фактура" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "Повлекувања на клиенти и добавувачи" +msgstr "Поврати на купувачи и добавувачи" #. module: account #: field:account.financial.report,sign:0 msgid "Sign on Reports" -msgstr "" +msgstr "Знак на извештај" #. module: account #: model:ir.actions.act_window,help:account.action_account_analytic_account_tree2 @@ -8158,6 +8310,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да додадете нова аналитичка сметка.\n" +"

\n" +" Нормалниот контен план има структура која е дефинирана со \n" +" законските барања на земјата. Структурата на Аналитичкиот " +"контен \n" +" план треба да ги одразува вашите бизнис потреби во поглед на " +" известувањето за трошоци/приходи.\n" +"

\n" +" Тие вообичаено се структурирани по договори, проекти, " +"производи\n" +" или одделенија. Најголем дел од OpenERP операциите " +"(фактури,\n" +" временски таблици, трошоци, итн) генерираат аналитички " +"внесови на\n" +" поврзаната сметка.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_view @@ -8192,7 +8362,7 @@ msgstr "Нормално" #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "Е-маил урнеци" +msgstr "Урнеци за Е-пошта" #. module: account #: view:account.move.line:0 @@ -8220,6 +8390,8 @@ msgid "" "This field is used for payable and receivable journal entries. You can put " "the limit date for the payment of this line." msgstr "" +"Ова поле се користи за внесови на дневник плаќање и побарување. Можете да " +"ставите граничен датум за плаќање на оваа ставка." #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency @@ -8235,7 +8407,7 @@ msgstr "Датум на доспевање" #: code:addons/account/account.py:3155 #, python-format msgid "Sales Journal" -msgstr "Продажна картица" +msgstr "Дневник Продажба" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -8246,7 +8418,7 @@ msgstr "Данок на фактура" #: code:addons/account/account_move_line.py:1188 #, python-format msgid "No piece number !" -msgstr "" +msgstr "Нема број на парче !" #. module: account #: view:account.financial.report:0 @@ -8267,7 +8439,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Необјавени записи на картица" +msgstr "Необјавени внесови во дневник" #. module: account #: help:account.invoice.refund,date:0 @@ -8275,8 +8447,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" -"date will be used as the invoice date for credit note and period will be " -"chosen accordingly!" +"Овој датум ќе се употреби како датум на фактура за белешка за побарување и " +"периодот ќе биде избран соодветно!" #. module: account #: view:product.template:0 @@ -8290,6 +8462,8 @@ msgid "" "You have to set a code for the bank account defined on the selected chart of " "accounts." msgstr "" +"Треба да подесите код за банкарска сметка дефинирана во избраниот контен " +"план." #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile @@ -8360,16 +8534,18 @@ msgid "" "The sequence field is used to order the resources from lower sequences to " "higher ones." msgstr "" +"Полето за секвенца се кориси за да се распоредат ресурсите од најмалата до " +"најголемата секвенца." #. module: account #: field:account.move.line,amount_residual_currency:0 msgid "Residual Amount in Currency" -msgstr "" +msgstr "Преостанат износ во валута" #. module: account #: field:account.config.settings,sale_refund_sequence_prefix:0 msgid "Credit note sequence" -msgstr "" +msgstr "Секвенца на белешка за побарување" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move @@ -8378,7 +8554,7 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "Објави записи на картица" +msgstr "Објави внесови во дневник" #. module: account #: selection:account.bank.statement.line,type:0 @@ -8388,7 +8564,7 @@ msgstr "Објави записи на картица" #: code:addons/account/account_invoice.py:353 #, python-format msgid "Customer" -msgstr "Клиент" +msgstr "Купувач" #. module: account #: field:account.financial.report,name:0 @@ -8418,6 +8594,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Поврати основа на овој тип. Не можете да направите Измени или Откажи доколку " +"фактурата е веќе порамнета" #. module: account #: field:account.bank.statement.line,sequence:0 @@ -8440,12 +8618,12 @@ msgstr "Paypal сметка" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "Број на запис на картица" +msgstr "Број на внес во дневник" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Извештај родител" #. module: account #: constraint:account.account:0 @@ -8455,7 +8633,7 @@ msgid "" "You cannot create recursive accounts." msgstr "" "Грешка!\n" -"неможете да креирате рекурзивни сметки." +"Не можете да креирате рекурзивни сметки." #. module: account #: model:ir.model,name:account.model_cash_box_in @@ -8465,7 +8643,7 @@ msgstr "cash.box.out" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated Journal Items." -msgstr "Линк до автоматски генерирани ставки на картица." +msgstr "Линк до автоматски генерирани ставки на дневникот." #. module: account #: model:ir.model,name:account.model_account_config_settings @@ -8486,7 +8664,7 @@ msgstr "Средство" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "Пресметана состојба" +msgstr "Пресметано салдо" #. module: account #. openerp-web @@ -8514,11 +8692,14 @@ msgid "" "positive, it gives the day of the next month. Set 0 for net days (otherwise " "it's based on the beginning of the month)." msgstr "" +"Ден од месецот, подесено -1 за последниот ден од тековниот месец. Доколку е " +"позитивно, го дава денот од наредниот месец. Постави 0 за нето денови (во " +"спротивно ќе биде засновано на почетокот од месецот)." #. module: account #: view:account.move.line.reconcile:0 msgid "Reconciliation Transactions" -msgstr "Transactions" +msgstr "Порамнети трансакции" #. module: account #: code:addons/account/account_invoice.py:449 @@ -8527,6 +8708,8 @@ msgid "" "You cannot delete an invoice which is not draft or cancelled. You should " "refund it instead." msgstr "" +"Не може да избришете фактура која не е во состојба нацрт или откажано. " +"Наместо тоа треба да направите поврат." #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement @@ -8545,6 +8728,9 @@ msgid "" "to the higher ones. The order is important if you have a tax with several " "tax children. In this case, the evaluation order is important." msgstr "" +"Полето за секвенца се користи за да се подредат даночните ставки од најниска " +"до највисока сенвенца. Редоследот е важен доколку имате данок со неколку " +"подданоци. Во овој случај, налогот за евалуација е битен." #. module: account #: model:ir.model,name:account.model_account_cashbox_line @@ -8554,7 +8740,7 @@ msgstr "Ставка од каса" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Сметководствен пакет" #. module: account #: report:account.third_party_ledger:0 @@ -8588,12 +8774,12 @@ msgstr "Ако е избрано, вашите пораки бараат вни #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "Метод на заокружување на пресметка на данок" #. module: account #: field:account.entries.report,move_line_state:0 msgid "State of Move Line" -msgstr "Состојба на преместена ставка" +msgstr "Состојба на ставка Движење" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile @@ -8604,12 +8790,12 @@ msgstr "" #: view:account.subscription.generate:0 #: model:ir.model,name:account.model_account_subscription_generate msgid "Subscription Compute" -msgstr "" +msgstr "Пресметај претплата" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "" +msgstr "Отворено за отпорамнување" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8664,7 +8850,7 @@ msgstr "" #. module: account #: field:account.tax.template,type_tax_use:0 msgid "Tax Use In" -msgstr "Се користи во" +msgstr "Данок кој се користи во" #. module: account #: code:addons/account/account_bank_statement.py:381 @@ -8673,14 +8859,14 @@ msgid "" "The statement balance is incorrect !\n" "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" -"Состојбата на изводот не е точен !\n" +"Состојбата на изводот не е точна !\n" "Очекуваната состојба (%.2f) е различна од пресметаната. (%.2f)" #. module: account #: code:addons/account/account_bank_statement.py:419 #, python-format msgid "The account entries lines are not in valid state." -msgstr "The account entries lines are not in valid state." +msgstr "Ставките на внесовите на сметката не во валидна состојба." #. module: account #: field:account.account.type,close_method:0 @@ -8690,15 +8876,15 @@ msgstr "Method" #. module: account #: model:process.node,note:account.process_node_electronicfile0 msgid "Automatic entry" -msgstr "Автоматски запис" +msgstr "Автоматски внес" #. module: account #: help:account.account,reconcile:0 msgid "" "Check this box if this account allows reconciliation of journal items." msgstr "" -"Означете го ова поле доколку сметката дозволува порамнување на ставките од " -"картицата." +"Означете го ова поле доколку сметката дозволува порамнување на ставките од " +"дневникот." #. module: account #: report:account.analytic.account.inverted.balance:0 @@ -8709,13 +8895,14 @@ msgstr "Inverted Analytic Balance -" #: help:account.move.reconcile,opening_reconciliation:0 msgid "" "Is this reconciliation produced by the opening of a new fiscal year ?." -msgstr "this reconciliation produced by the opening of a new fiscal year ?." +msgstr "" +"Дали ова порамнување е направено преку отварање на нова фискална година ?." #. module: account #: view:account.analytic.line:0 #: model:ir.actions.act_window,name:account.action_account_analytic_line_form msgid "Analytic Entries" -msgstr "Аналитички записи" +msgstr "Аналитички внесови" #. module: account #: view:account.analytic.account:0 @@ -8726,7 +8913,7 @@ msgstr "Поврзан партнер" #: code:addons/account/account_invoice.py:1434 #, python-format msgid "You must first select a partner !" -msgstr "Мора првин да изберете партнер !" +msgstr "Мора прво да изберете партнер !" #. module: account #: field:account.invoice,comment:0 @@ -8742,13 +8929,13 @@ msgstr "Вкупно преостанато" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "Готовинска контола при отварање" +msgstr "Контола при отварање на готовина" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 #: model:process.node,note:account.process_node_supplierinvoiceinvoice0 msgid "Invoice's state is Open" -msgstr "Статусот на фактурата е Отворена" +msgstr "Состојбата на фактурата е Отворена" #. module: account #: view:account.analytic.account:0 @@ -8792,7 +8979,7 @@ msgstr "Про-фактура" #. module: account #: report:account.analytic.account.cost_ledger:0 msgid "J.C. /Move name" -msgstr "J.C. /Move name" +msgstr "J.C. /Име на движење" #. module: account #: help:account.tax.template,include_base_amount:0 @@ -8807,18 +8994,18 @@ msgstr "" #: code:addons/account/account.py:3158 #, python-format msgid "Purchase Refund Journal" -msgstr "Картица повлечи нарачка" +msgstr "Дневник повлечи нарачка" #. module: account #: code:addons/account/account.py:1297 #, python-format msgid "Please define a sequence on the journal." -msgstr "Ве молиме дефинирајте го редоследот на записите" +msgstr "Ве молиме дефинирајте секвенца на дневник." #. module: account #: help:account.tax.template,amount:0 msgid "For Tax Type percent enter % ratio between 0-1." -msgstr "For Tax Type percent enter % ratio between 0-1." +msgstr "За процент на даночен тип внесете % сооднос помеѓу 0-1." #. module: account #: view:account.analytic.account:0 @@ -8833,7 +9020,7 @@ msgstr "Групирај по датумот на фактурата" #. module: account #: help:account.journal,user_id:0 msgid "The user responsible for this journal" -msgstr "Корисник одговорен за оваа картица" +msgstr "Корисник одговорен за овој дневник" #. module: account #: help:account.config.settings,module_account_followup:0 @@ -8901,7 +9088,7 @@ msgstr "Генеричко известување" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 msgid "Write-Off Journal" -msgstr "Картица отпиши" +msgstr "Дневник Отпишувања" #. module: account #: field:account.chart.template,property_account_income_categ:0 @@ -8911,7 +9098,7 @@ msgstr "Сметка на категорија Приходи" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "Adjusted Balance" +msgstr "Прилагодено салдо" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -8935,8 +9122,9 @@ msgid "" "This wizard will remove the end of year journal entries of selected fiscal " "year. Note that you can run this wizard many times for the same fiscal year." msgstr "" -"wizard will remove the end of year journal entries of selected fiscal year. " -"Note that you can run this wizard many times for the same fiscal year." +"Овој волшебник ќе ги отстрани внесовите крај на година во дневникот за " +"избраната фискална година. Овој волшебник може да го стартувате повеќе пати " +"за иста фискална година." #. module: account #: report:account.invoice:0 @@ -8976,13 +9164,13 @@ msgstr "Плаќање" #. module: account #: view:account.automatic.reconcile:0 msgid "Reconciliation Result" -msgstr "" +msgstr "Резултат од порамнување" #. module: account #: field:account.bank.statement,balance_end_real:0 #: field:account.treasury.report,ending_balance:0 msgid "Ending Balance" -msgstr "Завршна состојба" +msgstr "Завршно салдо" #. module: account #: field:account.journal,centralisation:0 @@ -9024,6 +9212,13 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Употребете ја ова опција доколку сакате да ја откажете фактурата и да " +"крирате нова.\n" +" Белешката за побарување ќе биде " +"креирана, валидирана и порамнета\n" +" со тековната фактура. Нова нацрт фактура " +"ќе биде креирана \n" +" така што ќе може да ја уредите." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -9039,7 +9234,7 @@ msgstr "Непозната грешка!" #. module: account #: model:ir.model,name:account.model_account_move_bank_reconcile msgid "Move bank reconcile" -msgstr "Move bank reconcile" +msgstr "Помести банкарско порамнување" #. module: account #: view:account.config.settings:0 @@ -9065,11 +9260,13 @@ msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" +"Не може да ја користите општата сметка во овој дневник, означете го јазичето " +"'Контрола на внес' на поврзаниот дневник." #. module: account #: field:account.account.type,report_type:0 msgid "P&L / BS Category" -msgstr "P&L / BS Category" +msgstr "P&L / BS Категорија" #. module: account #: view:account.automatic.reconcile:0 @@ -9125,16 +9322,30 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да додадете дневник.\n" +"

\n" +" Дневникот се користи за да се зачуваат трансакциите на сите " +"\n" +" сметководствени податоци поврзани со ден-за-ден бизнис.\n" +"

\n" +" Типична компанија може да користи еден дневник по метод на " +"плаќање \n" +" готовина, банкарски сметки, чекови), еден дневник за " +"набавки, еден sдневник за продажби\n" +" и еден за разни информации.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "Fiscalyear Close state" +msgstr "Затворена состојба на Фискална година" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "Картица повлечи" +msgstr "Дневник Поврат" #. module: account #: report:account.account.balance:0 @@ -9152,7 +9363,7 @@ msgstr "Филтрирај по" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" -"Со цел да затворите период, мора првин да ги објавите поврзаните записи на " +"Со цел да затворите период, мора првин да ги објавите поврзаните внесови на " "картицата." #. module: account @@ -9189,7 +9400,7 @@ msgstr "Ставка рок на плаќање" #: code:addons/account/account.py:3156 #, python-format msgid "Purchase Journal" -msgstr "Картица за набавки" +msgstr "Дневник Набавки" #. module: account #: field:account.invoice,amount_untaxed:0 @@ -9229,7 +9440,7 @@ msgstr "Дозволени типови на сметки (празно за б #. module: account #: view:account.payment.term:0 msgid "Payment term explanation for the customer..." -msgstr "" +msgstr "Објаснување на рок за плаќање за купувач..." #. module: account #: help:account.move.line,amount_residual:0 @@ -9237,8 +9448,8 @@ msgid "" "The residual amount on a receivable or payable of a journal entry expressed " "in the company currency." msgstr "" -"The residual amount on a receivable or payable of a journal entry expressed " -"in the company currency." +"Преостанат износ на побарувања или плаќања од внесот во дневникот изразен во " +"валута на компанијата." #. module: account #: view:account.tax.code:0 @@ -9258,6 +9469,9 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Оваа опција ви овозможува да добиете повеќе детали за начинот на кој вашите " +"салда се пресметани. Бидејќи тоа зафаќа простор, не се дозволува негово " +"користење додека правите споредба." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close @@ -9274,6 +9488,8 @@ msgstr "Кодот на сметката мора да биде единстве #: help:product.template,property_account_expense:0 msgid "This account will be used to value outgoing stock using cost price." msgstr "" +"Оваа сметка се користи за да се вреднува излезната залиха со користење на " +"цената на чинење." #. module: account #: view:account.invoice:0 @@ -9284,7 +9500,7 @@ msgstr "Неплатени фактури" #. module: account #: field:account.move.line.reconcile,debit:0 msgid "Debit amount" -msgstr "Износ Должи" +msgstr "Должи" #. module: account #: view:account.aged.trial.balance:0 @@ -9336,6 +9552,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да дефинирате нов повторувачки внес.\n" +"

\n" +" Повторувачкиот внес се појавува на основа на повторување од " +"специфичен датум,\n" +" на пр. кој кореспондира со потпишување на договорот или\n" +" спогодбата со купувачот или добавувачот. Може да креирате " +"такви\n" +" внесови за да ги автоматизирате објавите во системот.\n" +"

\n" +" " #. module: account #: view:account.journal:0 @@ -9365,7 +9592,7 @@ msgstr "Име на картица" #: code:addons/account/account_move_line.py:832 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "Записот \"%s\" не е валиден !" +msgstr "Внесот \"%s\" не е валиден !" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -9392,8 +9619,7 @@ msgid "" "Unique number of the invoice, computed automatically when the invoice is " "created." msgstr "" -"Unique number of the invoice, computed automatically when the invoice is " -"created." +"Единствен број на фактурата, пресметан автоматски кога фактурата е креирана." #. module: account #: model:account.account.type,name:account.data_account_type_expense @@ -9404,7 +9630,7 @@ msgstr "Трошок" #. module: account #: help:account.chart,fiscalyear:0 msgid "Keep empty for all open fiscal years" -msgstr "Чувај празно за сите отворени фискални години" +msgstr "Остави празно за сите отворени фискални години" #. module: account #: help:account.move.line,amount_currency:0 @@ -9412,14 +9638,13 @@ msgid "" "The amount expressed in an optional other currency if it is a multi-currency " "entry." msgstr "" -"The amount expressed in an optional other currency if it is a multi-currency " -"entry." +"Износ изразен во друга опциона валута доколку тоа е повеќе-валутен внес." #. module: account #: code:addons/account/account_move_line.py:1009 #, python-format msgid "The account move (%s) for centralisation has been confirmed." -msgstr "" +msgstr "Движењето на сметката (%s) за централизација беше потврдено." #. module: account #: report:account.analytic.account.journal:0 @@ -9458,26 +9683,30 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Можете да го изберете дневникот кој ќе го користите за белешката за " +"побарување која ќе биде креирана. Доколку го оставите полето празно, тоа ќе " +"користи ист дневник како тековната фактура." #. module: account #: help:account.bank.statement.line,sequence:0 msgid "" "Gives the sequence order when displaying a list of bank statement lines." msgstr "" -"Gives the sequence order when displaying a list of bank statement lines." +"Дава секвенциски редослед кога ја прикажува листата на ставки на банкарскиот " +"извод." #. module: account #: model:process.transition,note:account.process_transition_validentries0 msgid "Accountant validates the accounting entries coming from the invoice." msgstr "" -"Сметководителот ги потврдува сметководствените записи кои произлегуваат од " +"Сметководителот ги потврдува сметководствените внесови кои произлегуваат од " "фактурата." #. module: account #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "Порамнети записи" +msgstr "Порамнети внесови" #. module: account #: code:addons/account/account.py:2296 @@ -9499,7 +9728,7 @@ msgstr "Force period" #. module: account #: model:ir.model,name:account.model_account_partner_balance msgid "Print Account Partner Balance" -msgstr "Print Account Partner Balance" +msgstr "Печати салдо на сметка на партнер" #. module: account #: code:addons/account/account_move_line.py:1124 @@ -9519,11 +9748,12 @@ msgid "" "accounts that are typically more credited than debited and that you would " "like to print as positive amounts in your reports; e.g.: Income account." msgstr "" -"For accounts that are typically more debited than credited and that you " -"would like to print as negative amounts in your reports, you should reverse " -"the sign of the balance; e.g.: Expense account. The same applies for " -"accounts that are typically more credited than debited and that you would " -"like to print as positive amounts in your reports; e.g.: Income account." +"За сметки кои типично имаат повеќе задолжување отколку кредитирање и кои " +"сакате да ги печатите како негативни износи во вашите извештаи, треба да го " +"смените знакот на билансот; на пр.: Сметка Трошоци. Истото се применува за " +"сметки кои типично имаат повеќе побарувања отколку задолжувања и кои сакате " +"да ги испечатите како позитивни износи во вашите извештаи; на пр.: Сметка " +"Приходи." #. module: account #: field:res.partner,contract_ids:0 @@ -9555,7 +9785,7 @@ msgstr "Нацрт фактурите се проверени, потврден #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: account #: view:account.move:0 @@ -9575,7 +9805,7 @@ msgstr "" #. module: account #: field:account.config.settings,has_fiscal_year:0 msgid "Company has a fiscal year" -msgstr "" +msgstr "Компанијата има фискална година" #. module: account #: help:account.tax,child_depend:0 @@ -9584,41 +9814,41 @@ msgid "" "Set if the tax computation is based on the computation of child taxes rather " "than on the total amount." msgstr "" -"Set if the tax computation is based on the computation of child taxes rather " -"than on the total amount." +"Подесете го доколку пресметувањето на данокот е засновано на пресметување на " +"даноци деца а не на вкупен износ." #. module: account #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "Неможе да деактивирате сметка што содржи ставки од дневникот." +msgstr "Не може да деактивирате сметка што содржи ставки од дневникот." #. module: account #: selection:account.tax,applicable_type:0 msgid "Given by Python Code" -msgstr "Given by Python Code" +msgstr "Дадено од Python код" #. module: account #: field:account.analytic.journal,code:0 msgid "Journal Code" -msgstr "Код на картица" +msgstr "Код на дневник" #. module: account #: view:account.invoice:0 #: field:account.move.line,amount_residual:0 msgid "Residual Amount" -msgstr "Residual Amount" +msgstr "Преостанат износ" #. module: account #: field:account.invoice,move_lines:0 #: field:account.move.reconcile,line_id:0 msgid "Entry Lines" -msgstr "Entry Lines" +msgstr "Ставки на внес" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "Отвори картица" +msgstr "Отвори дневник" #. module: account #: report:account.analytic.account.journal:0 @@ -9635,13 +9865,13 @@ msgstr "Период од" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Единица на валута" #. module: account #: code:addons/account/account.py:3157 #, python-format msgid "Sales Refund Journal" -msgstr "Картица повлечи продажби" +msgstr "Дневник Поврат од продажба" #. module: account #: view:account.move:0 @@ -9658,6 +9888,10 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Откако нацрт фактурите се потврдени, нема да може да ги менувате\n" +" Фактурите ќе добијат единствен број\n" +" и ставките на дневникот ќе бидат креирани во вашиот\n" +" контен план." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9672,7 +9906,7 @@ msgstr "Затвори состојби на фискална година и п #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Дневник Поврат на набавка" #. module: account #: view:account.analytic.line:0 @@ -9696,12 +9930,12 @@ msgstr "Креирај фактура" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer msgid "Configure Accounting Data" -msgstr "" +msgstr "Конфигурирај сметководствени податоци" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "Данок на нарачки(%)" +msgstr "Данок на набавки(%)" #. module: account #: code:addons/account/account_invoice.py:869 @@ -9716,6 +9950,8 @@ msgid "" "Please check that the field 'Internal Transfers Account' is set on the " "payment method '%s'." msgstr "" +"Означете дека полето 'Сметка Внатрешни Трансфери' е подесено на метод за " +"плаќање '%s'." #. module: account #: field:account.vat.declaration,display_detail:0 @@ -9734,14 +9970,14 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft invoices." msgstr "" -"Аналитички тошоци (распореди, некои нарачани производи, ...) доаѓаат од " -"аналитичките сметки. Овие генерираат нацрт фактури." +"Аналитички тошоци (временски таблици, некои набавени производи, ...) доаѓаат " +"од аналитичките сметки. Овие генерираат нацрт фактури." #. module: account #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "Мои записи" +msgstr "Мои внесови" #. module: account #: help:account.invoice,state:0 @@ -9756,6 +9992,17 @@ msgid "" "related journal entries may or may not be reconciled. \n" "* The 'Cancelled' status is used when user cancel invoice." msgstr "" +" * Статусот 'Нацрт' се користи кога корисникот кодира нова и непотврдена " +"Фактура.\n" +"* 'Про-фактура' кога фактурата е во стстус Про-фактура, фактурата нема број " +"на фактура.\n" +"* Статус 'Отворено' се користи кога корисникот креира фактура, се генерира " +"број на фактура. Таа е во статус Отворено се додека корисникот не ја плати " +"фактурата.\n" +"* Статус 'Платено' се подесува автоматски кога фактурата е платена. Тоа е " +"поврзано со внесовите во дневникот кои меже да бидат или да не бидат " +"порамнети.\n" +"* Стстусот 'Откажано' се користи кога корисникот ја откажува фактурата." #. module: account #: field:account.period,date_stop:0 @@ -9803,12 +10050,12 @@ msgstr "Преглед на обврски" #: field:accounting.report,period_from:0 #: field:accounting.report,period_from_cmp:0 msgid "Start Period" -msgstr "Стартен период" +msgstr "Почетен период" #. module: account #: model:ir.actions.report.xml,name:account.account_central_journal msgid "Central Journal" -msgstr "Централна картица" +msgstr "Централен дневник" #. module: account #: field:account.aged.trial.balance,direction_selection:0 @@ -9823,7 +10070,7 @@ msgstr "Компании кои се однесуваат на партенро #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "Побарај рефундација" +msgstr "Побарај поврат" #. module: account #: view:account.move.line:0 @@ -9834,7 +10081,7 @@ msgstr "Вкупно побарува" #: model:process.transition,note:account.process_transition_suppliervalidentries0 msgid "Accountant validates the accounting entries coming from the invoice. " msgstr "" -"Сметководителот ги потврдува сметководствените записи кои доаѓаат од " +"Сметководителот ги потврдува сметководствените внесови кои доаѓаат од " "фактурата. " #. module: account @@ -9845,23 +10092,23 @@ msgstr "Број на периоди" #. module: account #: report:account.overdue:0 msgid "Document: Customer account statement" -msgstr "Document: Customer account statement" +msgstr "Документ: Извод од сметка на купувач" #. module: account #: view:account.account.template:0 msgid "Receivale Accounts" -msgstr "Receivale Accounts" +msgstr "Сметки побарувања" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 msgid "Supplier credit note sequence" -msgstr "" +msgstr "Секвенца на белешка за побарување на добавувач" #. module: account #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Фактурата е веќе порамнета." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9873,6 +10120,13 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Ова ви овозможува да креирате и управувате со вашите налози за плаќање, со " +"цел да ви\n" +" * послужат како основа за полесно приклучување на " +"различни механизми за плаќање и да ви обезбедат\n" +" * поефикасен начи за управување со плаќањата на " +"фактурите.\n" +" Ова го инсталира модулот account_payment." #. module: account #: xsl:account.transfer:0 @@ -9891,6 +10145,7 @@ msgstr "Сметка Побарувања" #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" +"За да се порамнат внесовите компанијата треба да биде иста за сите внесови." #. module: account #: field:account.account,balance:0 @@ -9916,7 +10171,7 @@ msgstr "" #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 msgid "Balance" -msgstr "Биланс" +msgstr "Салдо" #. module: account #: model:process.node,note:account.process_node_supplierbankstatement0 @@ -9956,13 +10211,13 @@ msgstr "Легенда" #. module: account #: model:process.transition,note:account.process_transition_entriesreconcile0 msgid "Accounting entries are the first input of the reconciliation." -msgstr "Сметководствените записи се прв инпут од поравмнувањето." +msgstr "Сметководствените внесови се прв инпут од порамнувањето." #. module: account #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "" +msgstr "Нема %s Сметка на дневникот %s." #. module: account #: report:account.third_party_ledger:0 @@ -9974,13 +10229,13 @@ msgstr "Филтрирај по" #: field:account.cashbox.line,number_closing:0 #: field:account.cashbox.line,number_opening:0 msgid "Number of Units" -msgstr "" +msgstr "Број на единици" #. module: account #: model:process.node,note:account.process_node_manually0 #: model:process.transition,name:account.process_transition_invoicemanually0 msgid "Manual entry" -msgstr "Рачен запис" +msgstr "Рачен внес" #. module: account #: report:account.general.ledger:0 @@ -9991,7 +10246,7 @@ msgstr "Рачен запис" #: view:account.move.line:0 #: field:analytic.entries.report,move_id:0 msgid "Move" -msgstr "Премести" +msgstr "Движење" #. module: account #: code:addons/account/account_bank_statement.py:477 @@ -10022,6 +10277,9 @@ msgid "" "The period is invalid. Either some periods are overlapping or the period's " "dates are not matching the scope of the fiscal year." msgstr "" +"Грешка!\n" +"Периодот не е валиден. Или некои периоди се преклопуваат или датумите на " +"периодот не се совпаѓаат со опсегот на фискалната година." #. module: account #: report:account.overdue:0 @@ -10034,13 +10292,14 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Подесете ја сметката која ќе биде поставена на ставките за данок на " +"фактурата за поврат. Оставете празно за да ја употребите сметката трошоци." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 msgid "" "Creates an account with the selected template under this existing parent." -msgstr "" -"Creates an account with the selected template under this existing parent." +msgstr "Креира сметка со избран урнек под овој постон родител." #. module: account #: report:account.invoice:0 @@ -10050,7 +10309,7 @@ msgstr "Извор" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "Date of the day" +msgstr "Датум на денот" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -10058,7 +10317,9 @@ msgstr "Date of the day" msgid "" "You have to define the bank account\n" "in the journal definition for reconciliation." -msgstr "Треба да дефинирате банкарска сметка" +msgstr "" +"Треба да дефинирате банкарска сметка\n" +"во дефиницијата на дневникот за порамнување." #. module: account #: help:account.journal,sequence_id:0 @@ -10066,6 +10327,8 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Ова поле содржи информација поврзана со нумерирањето на внесовите на овој " +"дневник." #. module: account #: field:account.invoice,sent:0 @@ -10081,35 +10344,35 @@ msgstr "Општ извештај" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Стандарден данок на продажба" #. module: account #: report:account.overdue:0 msgid "Balance :" -msgstr "Биланс :" +msgstr "Салдо :" #. module: account #: code:addons/account/account.py:1549 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Не може да креира движења за различни компании." #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "Processing" +msgstr "Периодично обработување" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "Фактури од клиент и добавувач" +msgstr "Влезни и излезни фактури" #. module: account #: model:process.node,note:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_paymentorderbank0 #: model:process.transition,name:account.process_transition_paymentreconcile0 msgid "Payment entries" -msgstr "entries" +msgstr "Внесови за плаќање" #. module: account #: selection:account.entries.report,month:0 @@ -10128,12 +10391,12 @@ msgstr "Контен план" #. module: account #: field:account.subscription.line,subscription_id:0 msgid "Subscription" -msgstr "Subscription" +msgstr "Претплата" #. module: account #: model:ir.model,name:account.model_account_analytic_balance msgid "Account Analytic Balance" -msgstr "Аналитичка состојба на сметка" +msgstr "Салдо на аналитичка сметка" #. module: account #: report:account.account.balance:0 @@ -10177,7 +10440,7 @@ msgstr "Краен датум" #: model:account.payment.term,name:account.account_payment_term_immediate #: model:account.payment.term,note:account.account_payment_term_immediate msgid "Immediate Payment" -msgstr "" +msgstr "Итно плаќање" #. module: account #: code:addons/account/account.py:1464 @@ -10194,27 +10457,27 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" -"Select 'Sale' for customer invoices journals. Select 'Purchase' for supplier " -"invoices journals. Select 'Cash' or 'Bank' for journals that are used in " -"customer or supplier payments. Select 'General' for miscellaneous operations " -"journals. Select 'Opening/Closing Situation' for entries generated for new " -"fiscal years." +"Избери 'Продажба' за дневникот Излезни фактури. Избери 'Набавка' за " +"дневникот Влезни фактури. Избери 'Готовина' или 'Банка' за дневници кои се " +"користат за плаќањата на купувач или добавувач. Ивбери 'Општо' за дневници " +"за разни набавки. Избери 'Ситуација при отварање/затварање' за внесови " +"генерирани за нови фискални години." #. module: account #: view:account.subscription:0 #: model:ir.model,name:account.model_account_subscription msgid "Account Subscription" -msgstr "Account Subscription" +msgstr "Сметка Претплата" #. module: account #: report:account.overdue:0 msgid "Maturity date" -msgstr "Maturity date" +msgstr "Датум на доспевање" #. module: account #: view:account.subscription:0 msgid "Entry Subscription" -msgstr "Entry Subscription" +msgstr "Внес Претплата" #. module: account #: report:account.account.balance:0 @@ -10252,14 +10515,14 @@ msgid "" "It indicates that the invoice has been paid and the journal entry of the " "invoice has been reconciled with one or several journal entries of payment." msgstr "" -"It indicates that the invoice has been paid and the journal entry of the " -"invoice has been reconciled with one or several journal entries of payment." +"Покажува дека фактурата е платена и внесот во дневникот за фактурата е " +"порамнет со еден или неколку внесови во дневникот за плаќања." #. module: account #: code:addons/account/account_move_line.py:783 #, python-format msgid "Journal Item '%s' (id: %s), Move '%s' is already reconciled!" -msgstr "" +msgstr "Ставката на дневникот '%s' (id: %s), Движење '%s' е веќе порамнета!" #. module: account #: view:account.invoice:0 @@ -10290,7 +10553,7 @@ msgstr "Грешка вкупно !" #. module: account #: field:account.journal,sequence_id:0 msgid "Entry Sequence" -msgstr "Entry Sequence" +msgstr "Внес Секвенца" #. module: account #: model:ir.actions.act_window,help:account.action_account_period_tree @@ -10303,13 +10566,14 @@ msgid "" "open period. Close a period when you do not want to record new entries and " "want to lock this period for tax related calculation." msgstr "" -"A period is a fiscal period of time during which accounting entries should " -"be recorded for accounting related activities. Monthly period is the norm " -"but depending on your countries or company needs, you could also have " -"quarterly periods. Closing a period will make it impossible to record new " -"accounting entries, all new entries should then be made on the following " -"open period. Close a period when you do not want to record new entries and " -"want to lock this period for tax related calculation." +"Период е фискален период во текот на кој сметководствените внесови треба да " +"бидат зачувани за активности поврзни со сметководство. Месечен период е " +"норма но во зависност од потребите на вашата земја или компанија, може да " +"имате и квартални периоди. Затварање на период ќе го направи невозможно " +"зачувувањето на нови сметководствени внесови, сите нови внесови треба потоа " +"да бидат направени на некој од следните отворени периоди. Затворете го " +"периодот кога веќе не сакате да зачувувате нови внесови и кога сакате да го " +"заклучите овој период за пресметки поврзани со даноци." #. module: account #: view:account.analytic.account:0 @@ -10320,7 +10584,7 @@ msgstr "Чекам" #: model:ir.actions.act_window,name:account.action_account_analytic_cost_ledger_journal #: model:ir.actions.report.xml,name:account.account_analytic_account_quantity_cost_ledger msgid "Cost Ledger (Only quantities)" -msgstr "Cost Ledger (Only quantities)" +msgstr "Главна книга на трошоци (Само количини)" #. module: account #: model:process.transition,name:account.process_transition_analyticinvoice0 @@ -10331,7 +10595,7 @@ msgstr "Од аналитичките сметки" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Конфигурирајте ја вашата фискална година" #. module: account #: field:account.period,name:0 @@ -10345,6 +10609,8 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" +"Избраната фактура(и) не може да биде откажана бидејќи веќе е во состојба " +"'Откажано' или 'Завршено'." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -10366,7 +10632,7 @@ msgstr "Код/Датум" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account #: view:accounting.report:0 @@ -10391,6 +10657,12 @@ msgid "" "analytic account.\n" " This installs the module account_budget." msgstr "" +"Ова овозможува сметководителите да управуваат со аналитички и пречекорени " +"буџети.\n" +" Откако мастер буџетите и биџетите се дефинирани,\n" +" проектните менаџери може да го подесат планираниот износ на " +"секоја аналитичка сметка.\n" +" Ова го инсталира модулот account_budget." #. module: account #: field:account.bank.statement.line,name:0 @@ -10403,8 +10675,8 @@ msgid "" "This account will be used instead of the default one as the payable account " "for the current partner" msgstr "" -"This account will be used instead of the default one as the payable account " -"for the current partner" +"Оваа сметка ќе се употреби наместо стандардната како сметка на плаќања за " +"тековен партнер" #. module: account #: field:account.period,special:0 @@ -10455,18 +10727,18 @@ msgstr "Нацрт фактура " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "Општи картици" +msgstr "Општи дневници" #. module: account #: view:account.model:0 msgid "Journal Entry Model" -msgstr "Модел на стафка од дневник" +msgstr "Модел на внес од дневник" #. module: account #: code:addons/account/account.py:1064 #, python-format msgid "Start period should precede then end period." -msgstr "" +msgstr "Почетниот период треба да му претходи на крајниот период." #. module: account #: field:account.invoice,number:0 @@ -10523,7 +10795,7 @@ msgstr "Периоди" #. module: account #: field:account.invoice.report,currency_rate:0 msgid "Currency Rate" -msgstr "Currency Rate" +msgstr "Девизен курс" #. module: account #: view:account.config.settings:0 @@ -10550,13 +10822,13 @@ msgstr "Април" #. module: account #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0 msgid "Profit (Loss) to report" -msgstr "Известување на Профит (Загуба)" +msgstr "Известување за Профит (Загуба)" #. module: account #: code:addons/account/account_invoice.py:379 #, python-format msgid "There is no Sale/Purchase Journal(s) defined." -msgstr "" +msgstr "Нема дефинирано Дневник Продажба/Набавка." #. module: account #: view:account.move.line.reconcile.select:0 @@ -10566,7 +10838,7 @@ msgstr "Отворено за порамнување" #. module: account #: field:account.account,parent_left:0 msgid "Parent Left" -msgstr "Parent Left" +msgstr "Лев родител" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -10602,14 +10874,14 @@ msgid "" "and is the process of transferring debit and credit amounts from a journal " "of original entry to a ledger book." msgstr "" -"The validation of journal entries process is also called 'ledger posting' " -"and is the process of transferring debit and credit amounts from a journal " -"of original entry to a ledger book." +"Процесот на валидација на внесовите во дневникот се нарекува и 'објавување " +"на главна книга' и е процес на префрлање на сметките задолжување и побарува " +"од дневникот на оригиналниот внес во главната книга." #. module: account #: model:ir.model,name:account.model_account_period msgid "Account period" -msgstr "Account period" +msgstr "Период на сметка" #. module: account #: view:account.subscription:0 @@ -10635,7 +10907,7 @@ msgstr "Внатрешен тип" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Генерира Внесови пред" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running @@ -10727,11 +10999,13 @@ msgstr "Состојби" #: help:product.template,property_account_income:0 msgid "This account will be used to value outgoing stock using sale price." msgstr "" +"Оваа сметка се користи за да се вреднува излезната залиха со користење на " +"продажната цена." #. module: account #: field:account.invoice,check_total:0 msgid "Verification Total" -msgstr "Verification Total" +msgstr "Вкупно Верификација" #. module: account #: report:account.analytic.account.balance:0 @@ -10749,17 +11023,17 @@ msgstr "Вкупно" #: code:addons/account/wizard/account_invoice_refund.py:109 #, python-format msgid "Cannot %s draft/proforma/cancel invoice." -msgstr "" +msgstr "Не може %s нацрт/про-фактура/откажи фактура." #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Поврат на аналитичка сметка за данок" #. module: account #: view:account.move.bank.reconcile:0 msgid "Open for Bank Reconciliation" -msgstr "Отвори за консолидација на банки" +msgstr "Отвори за банкарска консолидација" #. module: account #: field:account.account,company_id:0 @@ -10809,7 +11083,7 @@ msgstr "Компанија" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "Повторливи записи" +msgstr "Девинирај повторувачки внесови" #. module: account #: field:account.entries.report,date_maturity:0 @@ -10829,7 +11103,7 @@ msgstr "Причина" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "Непорамнети записи" +msgstr "Непорамнети внесови" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10838,9 +11112,8 @@ msgid "" "reconciliation process today. The current partner is counted as already " "processed." msgstr "" -"This figure depicts the total number of partners that have gone throught the " -"reconciliation process today. The current partner is counted as already " -"processed." +"Оваа бројка го прикажува вкупниот број на партнери кои поминале низ процесот " +"на порамнување денес. Тековниот партнер се смета како веќе обработен." #. module: account #: view:account.fiscalyear:0 @@ -10850,7 +11123,7 @@ msgstr "Креирај месечни периоди" #. module: account #: field:account.tax.code.template,sign:0 msgid "Sign For Parent" -msgstr "Sign For Parent" +msgstr "Знак за Родител" #. module: account #: model:ir.model,name:account.model_account_balance_report @@ -10860,14 +11133,13 @@ msgstr "Trial Balance Report" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree msgid "Draft statements" -msgstr "Draft statements" +msgstr "Нацрт изводи" #. module: account #: model:process.transition,note:account.process_transition_statemententries0 msgid "" "Manual or automatic creation of payment entries according to the statements" -msgstr "" -"Manual or automatic creation of payment entries according to the statements" +msgstr "Рачно или автоматско креирање на внесови за плаќање според изводите" #. module: account #: field:account.analytic.balance,empty_acc:0 @@ -10880,17 +11152,19 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disable" msgstr "" +"Доколку ги одпорамните трансакциите, мора исто така да ги верифицирате сите " +"акции што се поврзани со тие трансакции, бидејќи тие нема да бидат откажани" #. module: account #: code:addons/account/account_move_line.py:1059 #, python-format msgid "Unable to change tax!" -msgstr "" +msgstr "Не можам да променам данок!" #. module: account #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "Избраните картица и период треба да припаѓаат на иста компанија." +msgstr "Избраните дневник и период треба да припаѓаат на иста компанија." #. module: account #: view:account.invoice:0 @@ -10905,7 +11179,7 @@ msgstr "Заврши период" #. module: account #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" -msgstr "Кодот на картицата мора да биде уникатен по компанија !" +msgstr "Кодот на дневникот мора да биде уникатен по компанија !" #. module: account #: model:ir.actions.act_window,help:account.action_account_invoice_report_all @@ -10914,6 +11188,9 @@ msgid "" "customer. The tool search can also be used to personalise your Invoices " "reports and so, match this analysis to your needs." msgstr "" +"Од овој извештај, може да имате преглед на износот фактуриран на вашиот " +"купувач. Алатката пребарај може да се користи за персонификација на вашите " +"извештаи за Фактури и да се совпаднат овие анализи со вашите потреби." #. module: account #: view:account.partner.reconcile.process:0 @@ -10924,17 +11201,17 @@ msgstr "Оди на следен партнер" #: view:account.automatic.reconcile:0 #: view:account.move.line.reconcile.writeoff:0 msgid "Write-Off Move" -msgstr "Write-Off Move" +msgstr "Отпиши движење" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 msgid "Invoice's state is Done" -msgstr "Invoice's state is Done" +msgstr "Состојбата на фактурата е Завршено" #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "" +msgstr "Управувај со следење на плаќања на купувач" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -10994,7 +11271,7 @@ msgstr "Ставки на фактура" #. module: account #: help:account.model.line,quantity:0 msgid "The optional quantity on entries." -msgstr "Опциона количина на записи." +msgstr "Опциона количина на внесови." #. module: account #: field:account.automatic.reconcile,reconciled:0 @@ -11004,12 +11281,12 @@ msgstr "Порамнети трансакции" #. module: account #: model:ir.model,name:account.model_report_account_receivable msgid "Receivable accounts" -msgstr "Receivable accounts" +msgstr "Сметки побарување" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "Рок за плаќање на партнерот" +msgstr "Рок за плаќање на партнер" #. module: account #: field:temp.range,name:0 @@ -11019,7 +11296,7 @@ msgstr "Опсег" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "Ставки на аналитичка картица поврзани со картица за набавки." +msgstr "Ставки на аналитичкиот дневник поврзани со дневникот за набавки." #. module: account #: help:account.account,type:0 @@ -11030,23 +11307,23 @@ msgid "" "payable/receivable are for partners accounts (for debit/credit " "computations), closed for depreciated accounts." msgstr "" -"The 'Internal Type' is used for features available on different types of " -"accounts: view can not have journal items, consolidation are accounts that " -"can have children accounts for multi-company consolidations, " -"payable/receivable are for partners accounts (for debit/credit " -"computations), closed for depreciated accounts." +"'Внатрешен тип' се користи за карактеристики достапни за различните типови " +"на сметки: преглед не може да има ставки на дневник, консолидација се сметки " +"кои имаат потсметки за консолидации на повеќе компании, плаќања/побарувања " +"се сметки родител (за пресметки на задолжување/побарување), затворени за " +"сметките за амортизација." #. module: account #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" -msgstr "With movements" +msgstr "Со движења" #. module: account #: view:account.tax.code.template:0 msgid "Account Tax Code Template" -msgstr "Account Tax Code Template" +msgstr "Урнек за сметка Даночен код" #. module: account #: model:process.node,name:account.process_node_manually0 @@ -11078,61 +11355,60 @@ msgstr "Групирај по месец од датумот на фактура #: code:addons/account/account_analytic_line.py:99 #, python-format msgid "There is no income account defined for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Нема дефинирано сметка за приходи за овој производ: \"%s\" (id:%d)." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph #: view:report.aged.receivable:0 msgid "Aged Receivable" -msgstr "Aged Receivable" +msgstr "Постари побарувања" #. module: account #: field:account.tax,applicable_type:0 msgid "Applicability" -msgstr "Applicability" +msgstr "Применливост" #. module: account #: help:account.move.line,currency_id:0 msgid "The optional other currency if it is a multi-currency entry." -msgstr "Друга опциона валута доколку ова е повеќе-валутен запис." +msgstr "Друга опциона валута доколку ова е повеќе-валутен внес." #. module: account #: model:process.transition,note:account.process_transition_invoiceimport0 msgid "" "Import of the statement in the system from a supplier or customer invoice" -msgstr "" -"Import of the statement in the system from a supplier or customer invoice" +msgstr "Увезување на извод во системот од влезна или излезна фактура" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing_billing msgid "Billing" -msgstr "Billing" +msgstr "Фактурирање" #. module: account #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "Parent Account" +msgstr "Сметка родител" #. module: account #: view:report.account.receivable:0 msgid "Accounts by Type" -msgstr "" +msgstr "Сметки по тип" #. module: account #: model:ir.model,name:account.model_account_analytic_chart msgid "Account Analytic Chart" -msgstr "Account Analytic Chart" +msgstr "Аналитички контен план" #. module: account #: help:account.invoice,residual:0 msgid "Remaining amount due." -msgstr "Remaining amount due." +msgstr "Преостанат износ кој се должи." #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "Записи сортирани по" +msgstr "Внесови сортирани по" #. module: account #: code:addons/account/account_invoice.py:1515 @@ -11141,12 +11417,13 @@ msgid "" "The selected unit of measure is not compatible with the unit of measure of " "the product." msgstr "" +"Избраната единица мерка не е компатибилна со единицата мерка на производот." #. module: account #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Accounts Mapping" -msgstr "Accounts Mapping" +msgstr "Мапирање на сметка" #. module: account #: model:ir.actions.act_window,help:account.action_tax_code_list @@ -11164,6 +11441,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да дефинирате нов даночен код.\n" +"

\n" +" Во зависност од земјата, даночниот код обично е ќелија која " +"треба \n" +" да се пополни во даночната пријава. OpenERP ви дозволува да " +"ја\n" +" дефинирате даночната структура и секоја даночна пресметка ќе " +"биде \n" +" регистрирана во еден или неколку даночни кодови.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -11190,22 +11479,36 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Изберете период и дневник кој сакате да ги пополните.\n" +"

\n" +" Овој преглед се користи од сметководителите за брзо " +"зачувување на \n" +" внесовите во OpenERP. Доколку сакате да зачувате влезна " +"фактура,\n" +" започнете со зачувување на ставката од сметката трошоци. " +"OpenERP\n" +" ќе ви предложи автоматизирање на Данокот поврзан со оваа " +"сметка и\n" +" соодветната \"Сметка плаќања\".\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 msgid "The income or expense account related to the selected product." -msgstr "The income or expense account related to the selected product." +msgstr "Сметка приходи или расходи поврзани со одреден производ." #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Инсталирајте повеќе урнеци на графикони" #. module: account #: report:account.general.journal:0 #: model:ir.actions.report.xml,name:account.account_general_journal msgid "General Journal" -msgstr "Општа картица" +msgstr "Општ дневник" #. module: account #: view:account.invoice:0 @@ -11217,7 +11520,7 @@ msgstr "Барај фактура" #: view:account.invoice:0 #: view:account.invoice.report:0 msgid "Refund" -msgstr "Повлечи" +msgstr "Поврат" #. module: account #: model:ir.model,name:account.model_res_partner_bank @@ -11227,7 +11530,7 @@ msgstr "Банкарски сметки" #. module: account #: field:res.partner,credit:0 msgid "Total Receivable" -msgstr "Total Receivable" +msgstr "Вкупно побарување" #. module: account #: view:account.move.line:0 @@ -11247,22 +11550,26 @@ msgid "" "You cannot remove/deactivate an account which is set on a customer or " "supplier." msgstr "" +"Не може да отстраните/деактивирате сметка која е подесена на купувач или " +"добавувач." #. module: account #: model:ir.model,name:account.model_validate_account_move_lines msgid "Validate Account Move Lines" -msgstr "Validate Account Move Lines" +msgstr "Валидирајте ставки на движење на сметка" #. module: account #: help:res.partner,property_account_position:0 msgid "" "The fiscal position will determine taxes and accounts used for the partner." msgstr "" +"Фискалната позиција ќе ги определи даноците и сметките кои ќе се користат за " +"партнерот." #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 msgid "Invoice's state is Done." -msgstr "Invoice's state is Done." +msgstr "Состојбата на фактурата е Завршено." #. module: account #: model:process.transition,note:account.process_transition_reconcilepaid0 @@ -11273,7 +11580,7 @@ msgstr "Штом биде завршено порамнувањето, факт #: code:addons/account/wizard/account_change_currency.py:59 #, python-format msgid "New currency is not configured properly." -msgstr "" +msgstr "Новата валута не е правилно конфигурирана." #. module: account #: view:account.account.template:0 @@ -11289,12 +11596,12 @@ msgstr "Manual Invoice Taxes" #: code:addons/account/account_invoice.py:550 #, python-format msgid "The payment term of supplier does not have a payment term line." -msgstr "" +msgstr "Рокот за плаќање на добавувачот нема ставка на рокот за плаќање." #. module: account #: field:account.account,parent_right:0 msgid "Parent Right" -msgstr "Parent Right" +msgstr "Десен родител" #. module: account #. openerp-web @@ -11318,7 +11625,7 @@ msgstr "account.addtmpl.wizard" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Partner's" -msgstr "Partner's" +msgstr "Партнер" #. module: account #: field:account.account,note:0 @@ -11338,8 +11645,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the analytic " "journal without removing it." msgstr "" -"Доколку активното поле е подесено на Грешка, ќе ви дозволи да ја сокриете " -"аналитичката картица без да ја отстраните." +"Доколку активното поле не е штиклирано, ќе ви дозволи да го сокриете " +"аналитичкиот дневник без да го отстраните." #. module: account #: field:account.analytic.line,ref:0 @@ -11371,7 +11678,7 @@ msgstr "Февруари" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Затварање на број на единици" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -11386,7 +11693,7 @@ msgstr "Банкарска сметка" #: model:ir.actions.act_window,name:account.action_account_central_journal #: model:ir.model,name:account.model_account_central_journal msgid "Account Central Journal" -msgstr "Account Central Journal" +msgstr "Централен дневник на сметка" #. module: account #: report:account.overdue:0 @@ -11401,7 +11708,7 @@ msgstr "Иднина" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "Барај ставки од картица" +msgstr "Барај ставки од дневник" #. module: account #: help:account.tax,base_sign:0 @@ -11418,7 +11725,7 @@ msgstr "Вообичаено 1 или -1." #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account_template msgid "Template Account Fiscal Mapping" -msgstr "Template Account Fiscal Mapping" +msgstr "Урнек за фискално мапирање на сметка" #. module: account #: field:account.chart.template,property_account_expense:0 @@ -11428,7 +11735,7 @@ msgstr "Сметка трошоци на урнек на производ" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Рок за плаќање на купувач" #. module: account #: help:accounting.report,label_filter:0 @@ -11436,13 +11743,13 @@ msgid "" "This label will be displayed on report to show the balance computed for the " "given comparison filter." msgstr "" -"This label will be displayed on report to show the balance computed for the " -"given comparison filter." +"Оваа етикет ќе биде прикажана на извештајот за да го прикаже салдото кое е " +"пресметано за даден филтер за споредување." #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round per line" -msgstr "" +msgstr "Заокружи по ставка" #. module: account #: help:account.move.line,amount_residual_currency:0 @@ -11450,8 +11757,9 @@ msgid "" "The residual amount on a receivable or payable of a journal entry expressed " "in its currency (maybe different of the company currency)." msgstr "" -"The residual amount on a receivable or payable of a journal entry expressed " -"in its currency (maybe different of the company currency)." +"Преостанатиот износ на побарување или плаќање за внесот во дневникот " +"изразено во неговата валута (може да биде различна од валутата на " +"компанијата)." #~ msgid "Current" #~ msgstr "Тековен" diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index 1daa850e2e8..3980e8d4652 100644 --- a/addons/account_analytic_analysis/i18n/mk.po +++ b/addons/account_analytic_analysis/i18n/mk.po @@ -2,20 +2,21 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-28 18:18+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:17+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -30,12 +31,12 @@ msgstr "Групирај По..." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Template" -msgstr "" +msgstr "Урнек" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "To Invoice" -msgstr "За фактурирање" +msgstr "Да се фактурира" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -95,22 +96,22 @@ msgstr "Сума на понудите за овој договор" #. module: account_analytic_analysis #: help:account.analytic.account,ca_invoiced:0 msgid "Total customer invoiced amount for this account." -msgstr "Вкупен фактуриран износ за оваа конто" +msgstr "Вкупно фактуриран износ на купувач за оваа сметка." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Cancelled" -msgstr "" +msgstr "Откажано" #. module: account_analytic_analysis #: help:account.analytic.account,timesheet_ca_invoiced:0 msgid "Sum of timesheet lines invoiced for this contract." -msgstr "" +msgstr "Сума на фактурирани ставки од временската таблица за овој договор." #. module: account_analytic_analysis #: model:email.template,subject:account_analytic_analysis.account_analytic_cron_email_template msgid "Contract expiration reminder ${user.company_id.name}" -msgstr "" +msgstr "Потсетник за истекување на договор ${user.company_id.name}" #. module: account_analytic_analysis #: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 @@ -121,7 +122,7 @@ msgstr "Ставки од налози за продажба на %s" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "End date is in the next month" -msgstr "" +msgstr "Крајниот датум е во наредниот месец" #. module: account_analytic_analysis #: help:account.analytic.account,revenue_per_hour:0 @@ -134,7 +135,7 @@ msgstr "" #: field:account_analytic_analysis.summary.user,account_id:0 #: model:ir.model,name:account_analytic_analysis.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -144,7 +145,7 @@ msgstr "Партнер" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts that are not assigned to an account manager." -msgstr "Договори што не се доделени на акаунт менаџер" +msgstr "Договори што не се доделени на менаџерот на сметката." #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue @@ -168,10 +169,10 @@ msgstr "" " Кликнете овде за да дефинирате нов договор.\n" "

\n" " Овде ќе ги најдете договорите што треба да се обноват поради " -"истекување или работата е поголема од максимално дозволената\n" +"истекување или работата е поголема од максимално дозволената.\n" "

\n" "OpenERP автоматски ги поставува договорите за обновување во статус на " -"чекање. После преговарањето, референтот треба да го затвори или да ги обнови " +"чекање. После преговарањето, продавачот треба да го затвори или да ги обнови " "договорите на чекње.\n" "

\n" " " @@ -190,7 +191,7 @@ msgstr "Менаџер на сметка" #: help:account.analytic.account,remaining_hours_to_invoice:0 msgid "Computed using the formula: Maximum Time - Total Invoiced Time" msgstr "" -"Пресметано со користење на формулата: Максимум Време - Вкупно Фактурирано " +"Пресметано со користење на формулата: Максимално Време - Вкупно Фактурирано " "Време" #. module: account_analytic_analysis @@ -201,13 +202,13 @@ msgstr "Очекувано" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Closed contracts" -msgstr "" +msgstr "Затворени договори" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 msgid "Computed using the formula: Theoretical Revenue - Total Costs" msgstr "" -"Пресметано со користење на формулата: Теоретска добивка - Вкупни трошоци" +"Пресметано со користење на формулата: Теоретски приход - Вкупни трошоци" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 @@ -234,13 +235,14 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Pricelist" -msgstr "" +msgstr "Ценовник" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours:0 msgid "Computed using the formula: Maximum Time - Total Worked Time" msgstr "" -"Пресметано со користење на формулата: МаксималноВреме - ВкупноСработеноВреме" +"Пресметано со користење на формулата: Максимално Време - Вкупно Сработено " +"Време" #. module: account_analytic_analysis #: help:account.analytic.account,hours_quantity:0 @@ -248,6 +250,8 @@ msgid "" "Number of time you spent on the analytic account (from timesheet). It " "computes quantities on all journal of type 'general'." msgstr "" +"Време кое го поминувате на аналитичката сметка (од временска таблица). Ги " +"пресметува количините на сите дневници од типот 'општо'." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -257,7 +261,7 @@ msgstr "Нема ништо за фактурирање, креирајте" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "Задолжително користење на шаблони во договори" +msgstr "Задолжително користење на урнеци во договори" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_invoiced_date:0 @@ -265,7 +269,7 @@ msgid "" "If invoice from the costs, this is the date of the latest work or cost that " "have been invoiced." msgstr "" -"Доколку фактурирате од трошоци, ова е датумот на последната работи или " +"Доколку фактурирате од трошоци, ова е датумот на последната работа или " "трошок што е фактуриран." #. module: account_analytic_analysis @@ -281,7 +285,7 @@ msgstr "Реална маржа" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts assigned to a customer." -msgstr "" +msgstr "Договори доделени на купувач." #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_month @@ -291,13 +295,13 @@ msgstr "Резиме на часови по месец" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Pending contracts" -msgstr "" +msgstr "Договори на чекање" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin_rate:0 msgid "Computes using the formula: (Real Margin / Total Costs) * 100." msgstr "" -"Пресметано со користење на формулата :(Реална маржа/ Вкупни трошоци)*100" +"Пресметано со користење на формулата :(Реална маржа / Вкупни трошоци)*100" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -317,7 +321,7 @@ msgstr "Родител" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Units Consumed" -msgstr "" +msgstr "Потрошени единици" #. module: account_analytic_analysis #: field:account.analytic.account,month_ids:0 @@ -339,7 +343,7 @@ msgstr "Почетен датум" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Expiring soon" -msgstr "" +msgstr "Истекува наскоро" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -415,16 +419,82 @@ msgid "" "\n" " " msgstr "" +"\n" +"Почитувани ${object.name},\n" +"\n" +"% macro account_table(values):\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % for partner, accounts in values:\n" +" % for account in accounts:\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % endfor\n" +" % endfor\n" +"
КупувачДоговорДатумиPrepaid UnitsКонтакт
${partner.name}${account.name}${account.date_start} to ${account.date and account.date or " +"'???'}\n" +" % if account.quantity_max != 0.0:\n" +" ${account.remaining_hours}/${account.quantity_max} units\n" +" % endif\n" +" ${account.partner_id.phone or ''}, " +"${account.partner_id.email or ''}
\n" +"% endmacro \n" +"\n" +"% if \"new\" in ctx[\"data\"]:\n" +"

Следниве договори штотуку истекоа:

\n" +" ${account_table(ctx[\"data\"][\"new\"].iteritems())}\n" +"% endif\n" +"\n" +"% if \"old\" in ctx[\"data\"]:\n" +"

Следниве истечени договори се уште не се обработени:

\n" +" ${account_table(ctx[\"data\"][\"old\"].iteritems())}\n" +"% endif\n" +"\n" +"% if \"future\" in ctx[\"data\"]:\n" +"

Следниве договори ќе истечат за помалку од еден месец:

\n" +" ${account_table(ctx[\"data\"][\"future\"].iteritems())}\n" +"% endif\n" +"\n" +"

\n" +" Можете да ги означите сите договори кои треба да бидат обновени со " +"користење на менито:\n" +"

\n" +"
    \n" +"
  • Продажби / Фактурирање / Договори за обновување
  • \n" +"
\n" +"

\n" +" Ви благодариме,\n" +"

\n" +"\n" +"
\n"
+"-- \n"
+"OpenERP Automatic Email\n"
+"
\n" +"\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Timesheets" -msgstr "Работни часови" +msgstr "Распореди" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Closed" -msgstr "" +msgstr "Затворено" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 @@ -432,13 +502,13 @@ msgid "" "Number of time (hours/days) (from journal of type 'general') that can be " "invoiced if you invoice based on analytic account." msgstr "" -"Време(часови/денови)(од дневни со тип 'општо') што може да биде фактурирано " -"доколку фактурата е базирана на аналитичко конто." +"Време(часови/денови)(од дневник со тип 'општо') што може да биде фактурирано " +"доколку фактурата е базирана на аналитичка сметка." #. module: account_analytic_analysis #: field:account.analytic.account,is_overdue_quantity:0 msgid "Overdue Quantity" -msgstr "" +msgstr "Заостната количина" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -448,7 +518,7 @@ msgstr "Статус" #. module: account_analytic_analysis #: field:account.analytic.account,ca_theorical:0 msgid "Theoretical Revenue" -msgstr "Теоретска добивка" +msgstr "Теоретски приход" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -471,6 +541,8 @@ msgstr "Налози за продажба" #: help:account.analytic.account,last_invoice_date:0 msgid "If invoice from the costs, this is the date of the latest invoiced." msgstr "" +"Доколку фактурирате од трошоци, ова е датумот на последниот фактуриран " +"трошок." #. module: account_analytic_analysis #: help:account.analytic.account,ca_theorical:0 @@ -479,9 +551,8 @@ msgid "" "if all these costs have been invoiced at the normal sale price provided by " "the pricelist." msgstr "" -"Базирано на трошоците на проектот, колкава би била заработката доколку сите " -"овие трошоци би биле фактурирани во нормална продажна цена, дадена во " -"ценовникот." +"Засновано на трошоците на проектот, колкав би бил приходот доколку сите овие " +"трошоци би биле фактурирани по нормална продажна цена, дадена во ценовникот." #. module: account_analytic_analysis #: field:account.analytic.account,user_ids:0 @@ -492,7 +563,7 @@ msgstr "Корисник" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Cancelled contracts" -msgstr "" +msgstr "Откажани договори" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.template_of_contract_action @@ -507,6 +578,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате урнек на договор.\n" +"

\n" +" Урнеците се користат за да го навестат " +"договорот/проектот кој \n" +" кој може да биде селектиран за брзо конфигурирање на\n" +" роковите и условите од договорот.\n" +"

\n" +" " #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user @@ -524,6 +604,8 @@ msgid "" "Allows you to set the template field as required when creating an analytic " "account or a contract." msgstr "" +"Ви овозможува да го подесите полето за урнек како што се бара кога се креира " +"аналитичка сметка или договор." #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_invoiced:0 @@ -537,12 +619,12 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,revenue_per_hour:0 msgid "Revenue per Time (real)" -msgstr "" +msgstr "Приход по време (реално)" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Expired or consumed" -msgstr "" +msgstr "Истечено или потрошено" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all @@ -559,6 +641,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате нов договор.\n" +"

\n" +" Користете ги договорите за да ги следите задачите, " +"распоредите или фактурирањето врз основа на\n" +" завршена работа, трошоци и/или налози за продажба. " +"OpenERP автоматски ќе ги управува\n" +" алармите за обновување на договорите до одговорниот " +"продавач.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 @@ -568,7 +661,7 @@ msgstr "Вкупно за фактурирање" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts not assigned" -msgstr "Не доделени договори" +msgstr "Недоделени договори" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -583,7 +676,7 @@ msgstr "Вкупно фактурирано" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "In Progress" -msgstr "" +msgstr "Во тек" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_ca:0 @@ -595,7 +688,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts in progress (open, draft)" -msgstr "" +msgstr "Договори во тек (отворено, нацрт)" #. module: account_analytic_analysis #: field:account.analytic.account,last_invoice_date:0 @@ -620,6 +713,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Овде ќе ги најдете распоредите и набавките кои сте ги " +"направиле за\n" +" договорите кои може повторно да бидат фактурирани на " +"купувачот. Доколку сакате\n" +" да ги снимите новите активности за да ги фактурирате, треба " +"да го употребите менито\n" +" временска таблица.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 @@ -658,12 +761,12 @@ msgstr " Сума на се што би можело да се фактурир #. module: account_analytic_analysis #: field:account.analytic.account,theorical_margin:0 msgid "Theoretical Margin" -msgstr "" +msgstr "Теоретска маржа" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_total:0 msgid "Total Remaining" -msgstr "Преостанато вкупно" +msgstr "Вкупно преостанато" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin:0 @@ -684,7 +787,7 @@ msgstr "Фиксна цена" #. module: account_analytic_analysis #: help:account.analytic.account,last_worked_date:0 msgid "Date of the latest work done on this account." -msgstr "Датум на последната работа завршена на оваа конто" +msgstr "Датум на последната работа завршена на оваа сметка" #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_sale_config_settings @@ -694,13 +797,13 @@ msgstr "sale.config.settings" #. module: account_analytic_analysis #: field:sale.config.settings,group_template_required:0 msgid "Mandatory use of templates." -msgstr "Задолжително користење на шаблони" +msgstr "Задолжително користење на урнеци" #. module: account_analytic_analysis #: model:ir.actions.act_window,name:account_analytic_analysis.template_of_contract_action #: model:ir.ui.menu,name:account_analytic_analysis.menu_template_of_contract_action msgid "Contract Template" -msgstr "Шаблон на договор" +msgstr "Урнек на договор" #. module: account_analytic_analysis #: help:account.analytic.account,total_cost:0 @@ -708,6 +811,8 @@ msgid "" "Total of costs for this account. It includes real costs (from invoices) and " "indirect costs, like time spent on timesheets." msgstr "" +"Вкупно трошоци за оваа сметка. Тоа вклучува реални трошоци (од фактурите) и " +"индиректни трошоци, како време поминато на распореди." #. module: account_analytic_analysis #: field:account.analytic.account,est_total:0 @@ -717,7 +822,7 @@ msgstr "Вкупна проценка" #. module: account_analytic_analysis #: field:account.analytic.account,remaining_ca:0 msgid "Remaining Revenue" -msgstr "" +msgstr "Преостанат приход" #. module: account_analytic_analysis #: help:account.analytic.account,ca_to_invoice:0 @@ -725,6 +830,8 @@ msgid "" "If invoice from analytic account, the remaining amount you can invoice to " "the customer based on the total costs." msgstr "" +"Доколку фактурирате од аналитичка сметка, преостанатиот износ можете да го " +"фактурирате на купувачот врз основа на вкупните трошоци." #. module: account_analytic_analysis #: field:account_analytic_analysis.summary.month,unit_amount:0 @@ -736,12 +843,12 @@ msgstr "Вкупно време" #: model:res.groups,comment:account_analytic_analysis.group_template_required msgid "" "the field template of the analytic accounts and contracts will be required." -msgstr "" +msgstr "полето Урнек на аналитичките сметки и договори ќе бидат потребни." #. module: account_analytic_analysis #: field:account.analytic.account,invoice_on_timesheets:0 msgid "On Timesheets" -msgstr "" +msgstr "На распореди" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_default/i18n/mk.po b/addons/account_analytic_default/i18n/mk.po index 4a1c0c65d1c..f4095fa5528 100644 --- a/addons/account_analytic_default/i18n/mk.po +++ b/addons/account_analytic_default/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 11:53+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:18+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -32,7 +33,7 @@ msgstr "Групирај по..." #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "Стандарден краен датум за ова Аналитичко конто" +msgstr "Стандарден краен датум за оваа Аналитичка сметка" #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -45,7 +46,7 @@ msgstr "" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking msgid "Picking List" -msgstr "Требување" +msgstr "Листа за требување" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -81,7 +82,7 @@ msgstr "Корисник" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.act_account_acount_move_line_open msgid "Entries" -msgstr "Записи" +msgstr "Внесови" #. module: account_analytic_default #: field:account.analytic.default,date_stop:0 @@ -123,7 +124,7 @@ msgstr "" #: view:account.analytic.default:0 #: field:account.analytic.default,analytic_id:0 msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default @@ -133,12 +134,12 @@ msgstr "Аналитичка дистрибуција" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "Стандарден стартен датум за ова аналитичко конто." +msgstr "Стандарден почетен датум за оваа аналитичка сметка." #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Accounts" -msgstr "Конта" +msgstr "Сметки" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_plans/i18n/mk.po b/addons/account_analytic_plans/i18n/mk.po index 57afc3949ee..6245c06761a 100644 --- a/addons/account_analytic_plans/i18n/mk.po +++ b/addons/account_analytic_plans/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-28 20:06+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:20+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:28+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -33,7 +34,7 @@ msgstr "" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account5_ids:0 msgid "Account5 Id" -msgstr "" +msgstr "Сметка5 Id" #. module: account_analytic_plans #: field:account.crossovered.analytic,date2:0 @@ -65,7 +66,8 @@ msgstr "Аналитички план" #: view:analytic.plan.create.model:0 msgid "" "This distribution model has been saved.You will be able to reuse it later." -msgstr "Моделот за редистрибуција е зачуван. Може да го користите покасно." +msgstr "" +"Моделот за дистрибуција е зачуван. Може да го користите повторно подоцна." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance_line @@ -75,7 +77,7 @@ msgstr "" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Lines" -msgstr "" +msgstr "Ставки на аналитичка дистрибуција" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -90,12 +92,12 @@ msgstr "До датум" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,plan_id:0 msgid "Plan Id" -msgstr "План ИД" +msgstr "ID на план" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_plan_instance_action msgid "Analytic Distribution's Models" -msgstr "" +msgstr "Модели на аналитичка дистрибуција" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -105,12 +107,12 @@ msgstr "Име на сметка" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Line" -msgstr "" +msgstr "Ставка на аналитичка дистрибуција" #. module: account_analytic_plans #: field:account.analytic.plan.instance,code:0 msgid "Distribution Code" -msgstr "" +msgstr "Код за дистрибуција" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -132,12 +134,12 @@ msgstr "Не ги прикажува празните ставки" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "There are no analytic lines related to account %s." -msgstr "Нема аналитички ставки поврзани со контото %s" +msgstr "Нема аналитички ставки поврзани со сметката %s" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account3_ids:0 msgid "Account3 Id" -msgstr "" +msgstr "Сметка3 Id" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -163,23 +165,23 @@ msgstr "Валута" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Analytic Account :" -msgstr "Аналитичко конто:" +msgstr "Аналитичка сметка:" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Save This Distribution as a Model" -msgstr "" +msgstr "Зачувајте ја оваа дистрибуција како модел" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_line msgid "Analytic Plan Line" -msgstr "" +msgstr "Ставка на аналитички план" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Analytic Account Reference:" -msgstr "" +msgstr "Референца на аналитичка сметка:" #. module: account_analytic_plans #: field:account.analytic.plan.line,name:0 @@ -189,7 +191,7 @@ msgstr "Име на план" #. module: account_analytic_plans #: field:account.analytic.plan,default_instance_id:0 msgid "Default Entries" -msgstr "Записи по подразбирање" +msgstr "Стандардни внесови" #. module: account_analytic_plans #: view:account.analytic.plan:0 @@ -201,12 +203,12 @@ msgstr "Аналитички планови" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 msgid "Perc(%)" -msgstr "Проц(%)" +msgstr "Процент(%)" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_move_line msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_analytic_plan_create_model @@ -216,7 +218,7 @@ msgstr "analytic.plan.create.model" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account1_ids:0 msgid "Account1 Id" -msgstr "Сметка1 ИД" +msgstr "Сметка1 Id" #. module: account_analytic_plans #: field:account.analytic.plan.line,max_required:0 @@ -233,7 +235,7 @@ msgstr "Коренска сметка" #: view:analytic.plan.create.model:0 #, python-format msgid "Distribution Model Saved" -msgstr "" +msgstr "Дистрибутивниот модел е зачуван" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance @@ -243,7 +245,7 @@ msgstr "" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_instance_model_open msgid "Distribution Models" -msgstr "" +msgstr "Дистрибутивни модели" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 @@ -253,7 +255,7 @@ msgstr "Во ред" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 msgid "Analytic Plan Lines" -msgstr "" +msgstr "Ставки на аналитички план" #. module: account_analytic_plans #: field:account.analytic.plan.line,min_required:0 @@ -263,17 +265,17 @@ msgstr "Минимум дозволено (%)" #. module: account_analytic_plans #: field:account.analytic.plan.instance,plan_id:0 msgid "Model's Plan" -msgstr "" +msgstr "План на модел" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account2_ids:0 msgid "Account2 Id" -msgstr "" +msgstr "Сметка2 Id" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Ставка од Банкарски извод" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:221 @@ -303,7 +305,7 @@ msgstr "Корисничка грешка!" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account6_ids:0 msgid "Account6 Id" -msgstr "" +msgstr "Сметка6 Id" #. module: account_analytic_plans #: field:account.analytic.plan.instance,journal_id:0 @@ -316,7 +318,7 @@ msgstr "Аналитички дневник" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:38 #, python-format msgid "Please put a name and a code before saving the model." -msgstr "" +msgstr "Внесете име и код пред да го зачувате моделот." #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -326,12 +328,12 @@ msgstr "Количина" #. module: account_analytic_plans #: model:ir.ui.menu,name:account_analytic_plans.menu_account_analytic_multi_plan_action msgid "Multi Plans" -msgstr "" +msgstr "Повеќекратни планови" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account_ids:0 msgid "Account Id" -msgstr "" +msgstr "Id на сметка" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -348,14 +350,14 @@ msgstr "Дневник" #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "You have to define an analytic journal on the '%s' journal." -msgstr "" +msgstr "Треба да дефинирате аналитички дневник на '%s' дневник." #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:342 #: code:addons/account_analytic_plans/account_analytic_plans.py:486 #, python-format msgid "No Analytic Journal !" -msgstr "Нема аналитичка картица !" +msgstr "Нема аналитички дневник !" #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.action_analytic_plan_create_model @@ -376,7 +378,7 @@ msgstr "Ставка од фактура" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "There is no analytic plan defined." -msgstr "" +msgstr "Нема дефинирано аналитички план." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement @@ -397,23 +399,23 @@ msgstr "Аналитичка сметка" #: field:account.move.line,analytics_id:0 #: model:ir.model,name:account_analytic_plans.model_account_analytic_default msgid "Analytic Distribution" -msgstr "" +msgstr "Аналитичка дистрибуција" #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:221 #, python-format msgid "A model with this name and code already exists." -msgstr "" +msgstr "Веќе постои модел со ова име и код." #. module: account_analytic_plans #: help:account.analytic.plan.line,root_analytic_id:0 msgid "Root account of this plan." -msgstr "" +msgstr "Коренска сметка на овој план." #. module: account_analytic_plans #: field:account.crossovered.analytic,ref:0 msgid "Analytic Account Reference" -msgstr "" +msgstr "Референца на аналитичка сметка" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_invoice diff --git a/addons/account_anglo_saxon/i18n/mk.po b/addons/account_anglo_saxon/i18n/mk.po index 5028e62a679..ec3cef943dc 100644 --- a/addons/account_anglo_saxon/i18n/mk.po +++ b/addons/account_anglo_saxon/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-01 14:29+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:21+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category @@ -41,7 +42,7 @@ msgstr "Урнек на производ" #: field:product.category,property_account_creditor_price_difference_categ:0 #: field:product.template,property_account_creditor_price_difference:0 msgid "Price Difference Account" -msgstr "" +msgstr "Сметка за разлика на цена" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_account_invoice @@ -60,3 +61,5 @@ msgid "" "This account will be used to value price difference between purchase price " "and cost price." msgstr "" +"Оваа сметка ќе се користи за да се вреднува разликата на цента помеѓу " +"набавната цена и цената на чинење." diff --git a/addons/account_asset/i18n/mk.po b/addons/account_asset/i18n/mk.po index d4348178962..a34e63d2dc9 100644 --- a/addons/account_asset/i18n/mk.po +++ b/addons/account_asset/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-11 09:54+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:22+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_asset #: view:account.asset.asset:0 @@ -32,7 +33,7 @@ msgstr "Краен датум" #. module: account_asset #: field:account.asset.asset,value_residual:0 msgid "Residual Value" -msgstr "Преостаната вредност" +msgstr "Вредност на остаток" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 @@ -67,7 +68,7 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" -"Покажува дека првиот запис за амортизација за ова средство треба да се " +"Покажува дека првиот внес за амортизација за ова средство треба да се " "направи од датумот на набавката наместо од први јануари" #. module: account_asset @@ -143,7 +144,7 @@ msgstr "Ставки на амортизација" #. module: account_asset #: help:account.asset.asset,salvage_value:0 msgid "It is the amount you plan to have that you cannot depreciate." -msgstr "" +msgstr "Ова е износот кој планирате дека нема да можете да го амортизирате." #. module: account_asset #: help:account.asset.asset,method_period:0 @@ -194,7 +195,7 @@ msgstr "Белешки" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "Запис за амортизација" +msgstr "Внес за амортизација" #. module: account_asset #: code:addons/account_asset/account_asset.py:82 @@ -206,7 +207,7 @@ msgstr "Грешка!" #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "# на ставки за обезвреднување" +msgstr "# на ставки за амортизација" #. module: account_asset #: field:account.asset.asset,method_period:0 @@ -296,6 +297,8 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" +"Prorata temporis може да се примени единствено на временскиот метод \"број " +"на амортизации\"." #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 @@ -335,7 +338,7 @@ msgstr "Средства во затворена состојба" #. module: account_asset #: field:account.asset.asset,parent_id:0 msgid "Parent Asset" -msgstr "" +msgstr "Средство Родител" #. module: account_asset #: view:account.asset.history:0 @@ -398,11 +401,11 @@ msgid "" "depreciations won't go beyond." msgstr "" "Методот што се користи за пресметување на датуми и број на ставки за " -"обезвреднување.\n" -"Број на обезвреднувања: Корекција на бројот на ставки за обезвреднување и " -"времето помеѓу 2 обезвреднувања.\n" -"Датум на завршување: Изберете го времето помеѓу 2 обезвреднувања и датумот " -"што обезвреднувањата нема да го поминат." +"амортизација.\n" +"Број на амортизации: Корекција на бројот на ставки за амортизација и времето " +"помеѓу 2 амортизации.\n" +"Датум на завршување: Изберете го времето помеѓу 2 амортизации и датумот што " +"амортизациите нема да го поминат." #. module: account_asset #: help:account.asset.asset,method_time:0 @@ -415,11 +418,17 @@ msgid "" " * Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Изберете метод што ќе го користите за пресметување на датуми и број на " +"ставки за амортизација.\n" +"Број на амортизации: Фиксирајте го бројот на ставки за амортизација и " +"времето помеѓу 2 амортизации.\n" +"Датум на завршување: Изберете го времето помеѓу 2 амортизации и датумот што " +"амортизациите нема да го поминат." #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "Средства во состојба на извршување" +msgstr "Средства во работна состојба" #. module: account_asset #: view:account.asset.asset:0 @@ -462,7 +471,7 @@ msgstr "Објавени ставки за амортизација" #. module: account_asset #: field:account.asset.asset,child_ids:0 msgid "Children Assets" -msgstr "" +msgstr "Средства Деца" #. module: account_asset #: view:asset.asset.report:0 @@ -472,7 +481,7 @@ msgstr "Датум на амортизација" #. module: account_asset #: field:account.asset.history,user_id:0 msgid "User" -msgstr "Корисни" +msgstr "Корисник" #. module: account_asset #: field:account.asset.category,account_asset_id:0 @@ -498,7 +507,7 @@ msgstr "Историја на средство" #. module: account_asset #: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard msgid "asset.depreciation.confirmation.wizard" -msgstr "Copy text \t asset.depreciation.confirmation.wizard" +msgstr "asset.depreciation.confirmation.wizard" #. module: account_asset #: field:account.asset.asset,active:0 @@ -540,7 +549,7 @@ msgstr "Општо" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "" +msgstr "Prorata Temporis" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -572,7 +581,7 @@ msgstr "Ставки на дневник" #. module: account_asset #: view:asset.modify:0 msgid "Asset Durations to Modify" -msgstr "Модификација на траење на средство" +msgstr "Изменување на времетраењето на средството" #. module: account_asset #: field:account.asset.asset,purchase_date:0 @@ -604,6 +613,7 @@ msgstr "Тековно" #, python-format msgid "You cannot delete an asset that contains posted depreciation lines." msgstr "" +"Не може да избришете средство кое содржи објавени ставки за амортизација." #. module: account_asset #: view:account.asset.category:0 @@ -683,7 +693,7 @@ msgid "" " " msgstr "" "

\n" -" Од овој извештај имате преглед на сите обезвреднувања. \n" +" Од овој извештај имате преглед на сите амортизации. \n" " Алатката за пребарување може да се користи за персонализирање " "на\n" " извештаите за средствата за да одговара на анализите што вам ви " @@ -737,7 +747,7 @@ msgstr "Износ на ставките за амортизација" #: code:addons/account_asset/wizard/wizard_asset_compute.py:49 #, python-format msgid "Created Asset Moves" -msgstr "" +msgstr "Креирани движења на средство" #. module: account_asset #: view:account.asset.asset:0 diff --git a/addons/account_bank_statement_extensions/i18n/mk.po b/addons/account_bank_statement_extensions/i18n/mk.po index 73a895a79af..6f7c044e99e 100644 --- a/addons/account_bank_statement_extensions/i18n/mk.po +++ b/addons/account_bank_statement_extensions/i18n/mk.po @@ -2,25 +2,26 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-01 12:29+0000\n" +"PO-Revision-Date: 2013-03-28 21:24+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Креатор на информации за корисник" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -88,7 +89,7 @@ msgstr "Потврди ги селектираните ставки на изв #: report:bank.statement.balance.report:0 #: model:ir.actions.report.xml,name:account_bank_statement_extensions.bank_statement_balance_report msgid "Bank Statement Balances Report" -msgstr "" +msgstr "Извештај за салдата на банкарскиот извод" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 @@ -99,7 +100,7 @@ msgstr "Откажи ставки" #: view:account.bank.statement.line.global:0 #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "" +msgstr "Информации за групно плаќање" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,state:0 @@ -150,7 +151,7 @@ msgstr "Потврдени ставки на изводот" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Credit Transactions." -msgstr "Трансакции на побарување" +msgstr "Трансакции на побарување." #. module: account_bank_statement_extensions #: model:ir.actions.act_window,help:account_bank_statement_extensions.action_cancel_statement_line @@ -160,7 +161,7 @@ msgstr "откажи ги селектираните ставки на изво #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_number:0 msgid "Counterparty Number" -msgstr "" +msgstr "Број на договорна страна" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -191,7 +192,7 @@ msgstr "Проширени филтри..." #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirmed lines cannot be changed anymore." -msgstr "Потврдените стави не може повеќе да бидат менувани" +msgstr "Потврдените ставки не може повеќе да бидат менувани" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 @@ -248,7 +249,7 @@ msgstr "Конто финансии" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_currency:0 msgid "Counterparty Currency" -msgstr "" +msgstr "Валута на договорна страна" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_bic:0 @@ -278,6 +279,8 @@ msgid "" "Code to identify transactions belonging to the same globalisation level " "within a batch payment" msgstr "" +"Кодот за идентификување на трансакциите припаѓа на исто ниво на " +"глобализација во рамките на групното плаќање" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -302,7 +305,7 @@ msgstr "Код" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_name:0 msgid "Counterparty Name" -msgstr "" +msgstr "Име на договорна страна" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_res_partner_bank @@ -360,4 +363,4 @@ msgstr "Вкупна сума" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "" +msgstr "ID на глобализација" diff --git a/addons/account_budget/i18n/mk.po b/addons/account_budget/i18n/mk.po index 051f07a9b86..5b66832f90d 100644 --- a/addons/account_budget/i18n/mk.po +++ b/addons/account_budget/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 08:18+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:26+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:29+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -59,7 +60,7 @@ msgstr "Валидирај корисник" #. module: account_budget #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_summary_report msgid "Print Summary" -msgstr "Резиме од печатењето" +msgstr "Печати резиме" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 @@ -121,7 +122,7 @@ msgstr "Статус" #: field:crossovered.budget.lines,analytic_account_id:0 #: model:ir.model,name:account_budget.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: account_budget #: code:addons/account_budget/account_budget.py:119 @@ -205,7 +206,7 @@ msgstr "Краен датум" #: model:ir.model,name:account_budget.model_account_budget_analytic #: model:ir.model,name:account_budget.model_account_budget_report msgid "Account Budget report for analytic account" -msgstr "" +msgstr "Извештај на сметка Буџет за аналитичката сметка" #. module: account_budget #: view:account.analytic.account:0 @@ -381,9 +382,8 @@ msgstr "" " оддели, категории на производи итн.)\n" "

\n" " Со следењето на вашите пари, помала е веројатноста да " -"преплатите\n" -" и поголема да ги постигнете финансисиките цели. Предвидете " -"го\n" +"потрошите повеќе и поголема да ги постигнете финансиските цели. " +"Предвидете го\n" " буџетот со поголема деталност околу приходите за аналитичка\n" " сметка и следење на еволуцијата врз база на вистинските " "остварувања\n" @@ -401,7 +401,7 @@ msgstr "Планиран изн" #: view:account.budget.post:0 #: field:account.budget.post,account_ids:0 msgid "Accounts" -msgstr "Конта" +msgstr "Сметки" #. module: account_budget #: view:account.analytic.account:0 @@ -415,7 +415,7 @@ msgstr "Конта" #: model:ir.actions.act_window,name:account_budget.act_crossovered_budget_lines_view #: model:ir.ui.menu,name:account_budget.menu_act_crossovered_budget_lines_view msgid "Budget Lines" -msgstr "Стафки од буџет" +msgstr "Ставки од буџет" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_check_writing/i18n/mk.po b/addons/account_check_writing/i18n/mk.po index 166306044ec..cf414fc9dcb 100644 --- a/addons/account_check_writing/i18n/mk.po +++ b/addons/account_check_writing/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-01 12:33+0000\n" +"PO-Revision-Date: 2013-03-28 21:31+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -25,7 +26,7 @@ msgstr "" #. module: account_check_writing #: report:account.print.check.top:0 msgid "Open Balance" -msgstr "Отворен биланс" +msgstr "Отвори салдо" #. module: account_check_writing #: view:account.check.write:0 @@ -36,7 +37,7 @@ msgstr "Испечати Чек" #. module: account_check_writing #: selection:res.company,check_layout:0 msgid "Check in middle" -msgstr "" +msgstr "Чек во средина" #. module: account_check_writing #: help:res.company,check_layout:0 @@ -45,6 +46,9 @@ msgid "" "Check in middle is compatible with Peachtree, ACCPAC and DacEasy. Check on " "bottom is compatible with Peachtree, ACCPAC and DacEasy only" msgstr "" +"Check on top е компатибилен со Quicken, QuickBooks и Microsoft Money. Check " +"in middle е компатибилен со Peachtree, ACCPAC и DacEasy. Check on bottom е " +"компатибилен единствено со Peachtree, ACCPAC и DacEasy." #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -129,7 +133,7 @@ msgstr "" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_bottom msgid "Print Check (Bottom)" -msgstr "" +msgstr "Печати чек (Дно)" #. module: account_check_writing #: model:ir.actions.act_window,help:account_check_writing.action_write_check @@ -147,6 +151,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за креирате нов чек. \n" +"

\n" +" Формуларот за плаќање на чекот ви дозволува да го следите " +"плаќањето кое го правите\n" +" кон вашите добавувачи со користење на чекови. Кога избирате " +"добавувач,\n" +" метод на плаќање и износот на уплатата, OpenERP ќе ви\n" +" предложи да го порамните вашето плаќање со отворените " +"фактури и \n" +" сметки на добавувачот.\n" +"

\n" +" " #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -158,7 +175,7 @@ msgstr "Краен датум" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_middle msgid "Print Check (Middle)" -msgstr "" +msgstr "Печати чек (Средина)" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_res_company @@ -185,7 +202,7 @@ msgstr "" #. module: account_check_writing #: model:ir.actions.report.xml,name:account_check_writing.account_print_check_top msgid "Print Check (Top)" -msgstr "" +msgstr "Печати чек (Врв)" #. module: account_check_writing #: report:account.print.check.bottom:0 diff --git a/addons/account_followup/i18n/mk.po b/addons/account_followup/i18n/mk.po index fc1c092eb7b..4f847200a3a 100644 --- a/addons/account_followup/i18n/mk.po +++ b/addons/account_followup/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-11 12:46+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:32+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -100,7 +101,7 @@ msgstr "задоцнети денови, превземи ги следните #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Чекори за проследување" #. module: account_followup #: code:addons/account_followup/account_followup.py:262 @@ -134,6 +135,8 @@ msgid "" "This is the next action to be taken. It will automatically be set when the " "partner gets a follow-up level that requires a manual action. " msgstr "" +"Ова е следна акција која треба да биде превземена. Таа автоматски ќе биде " +"подесена кога партнерот добива ниво на проследување кое бара рачна акција. " #. module: account_followup #: view:res.partner:0 @@ -285,7 +288,7 @@ msgstr "Партнери" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "Дозволеное е само едно проследување по компанија" +msgstr "Дозволено е е само едно проследување по компанија" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -296,7 +299,7 @@ msgstr "Потсетник за фактури" #. module: account_followup #: help:account_followup.followup.line,send_letter:0 msgid "When processing, it will print a letter" -msgstr "" +msgstr "Кога се процесира, ќе испечати писмо" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 @@ -311,7 +314,7 @@ msgstr "Не е судска постапка" #. module: account_followup #: view:account_followup.print:0 msgid "Send emails and generate letters" -msgstr "Прати пораки и генерирај писма" +msgstr "Прати е-пошти и генерирај писма" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup @@ -388,6 +391,8 @@ msgstr "Критериум за проследување" #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." msgstr "" +"Дава секвенциски редослед кога ја прикажува листата на ставки за " +"проследување." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 @@ -418,27 +423,29 @@ msgid "" "The followup plan defined for the current company does not have any followup " "action." msgstr "" +"Планот за проследување дефиниран за тековната компанија нема никаква акција " +"за проследување." #. module: account_followup #: field:account_followup.followup.line,delay:0 msgid "Due Days" -msgstr "денови на задоцнување" +msgstr "Денови на задоцнување" #. module: account_followup #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "" +msgstr "Ниво на проследување" #. module: account_followup #: field:account_followup.stat,date_followup:0 msgid "Latest followup" -msgstr "" +msgstr "Последно проследување" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup msgid "Reconcile Invoices & Payments" -msgstr "Порамни Фактири & Плаќања" +msgstr "Порамни Фактури & Плаќања" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s @@ -458,17 +465,17 @@ msgstr "Испрати емаил потврда" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up Entries with period in current year" -msgstr "" +msgstr "Внесови за проследување со период во тековната година" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "" +msgstr "Последно проследување" #. module: account_followup #: field:account_followup.print,partner_lang:0 msgid "Send Email in Partner Language" -msgstr "Испрати емаил на јазикот на партнерот" +msgstr "Испрати е-пошта на јазикот на партнерот" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:169 @@ -479,7 +486,7 @@ msgstr " испратена е-пошта(и)" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "" +msgstr "Испечати проследување & Испрати маил до купувачите" #. module: account_followup #: field:account_followup.followup.line,description:0 @@ -489,7 +496,7 @@ msgstr "Испечатени пораки" #. module: account_followup #: view:res.partner:0 msgid "Responsible of credit collection" -msgstr "" +msgstr "Одговорен за собирање на побарување" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:155 @@ -516,7 +523,7 @@ msgstr "Испечати задоцнети плаќања" #: field:account_followup.followup.line,followup_id:0 #: field:account_followup.stat,followup_id:0 msgid "Follow Ups" -msgstr "" +msgstr "Проследувања" #. module: account_followup #: code:addons/account_followup/account_followup.py:219 @@ -529,7 +536,7 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "" +msgstr "Следење на сметка" #. module: account_followup #: help:res.partner,payment_responsible_id:0 @@ -563,7 +570,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " manual action(s) assigned:" -msgstr " доделени рачни постапки:" +msgstr " доделени рачни акции:" #. module: account_followup #: view:res.partner:0 @@ -578,7 +585,7 @@ msgstr "Испрати писма и е-пошти" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Барај проследување" #. module: account_followup #: view:res.partner:0 @@ -586,17 +593,19 @@ msgid "" "He said the problem was temporary and promised to pay 50% before 15th of " "May, balance before 1st of July." msgstr "" +"Рекоа дека проблемот е привремен и ветија дека ќе платат 50% пред 15-ти Мај, " +"а остатокот до 1-ви Јули." #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Ставка за движење на сметка" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 #, python-format msgid "Send Letters and Emails: Actions Summary" -msgstr "" +msgstr "Испрати Писма и Е-пошти: Резиме на акција" #. module: account_followup #: view:account_followup.print:0 @@ -611,7 +620,7 @@ msgstr "Блокирано" #. module: account_followup #: sql_constraint:account_followup.followup.line:0 msgid "Days of the follow-up levels must be different" -msgstr "" +msgstr "Деновите на нивоата за проследување мора да бидат различни" #. module: account_followup #: view:res.partner:0 @@ -621,7 +630,7 @@ msgstr "Кликнете за да ја означите акцијата как #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "" +msgstr "Анализи на проследувања" #. module: account_followup #: view:res.partner:0 diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index 842487b2875..0cb501dba8a 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-28 18:09+0000\n" +"Last-Translator: Balint (eSolve) \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:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account_payment @@ -234,7 +234,7 @@ msgstr "Struktúrált" #. module: account_payment #: view:account.bank.statement:0 msgid "Import Payment Lines" -msgstr "Utalási sorok betöltése, importálása" +msgstr "Átutalási sorok importálása" #. module: account_payment #: view:payment.line:0 diff --git a/addons/account_payment/i18n/mk.po b/addons/account_payment/i18n/mk.po index 0958c61c007..c3e690c5fc2 100644 --- a/addons/account_payment/i18n/mk.po +++ b/addons/account_payment/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-04 15:20+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:33+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:30+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -29,6 +30,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате налог за плаќање.\n" +"

\n" +" Налогот за плаќање е барање за плаќање од вашата компанија " +"за \n" +" плаќање на фактура на добавувач или за поврат на купувач.\n" +"

\n" +" " #. module: account_payment #: field:payment.line,currency:0 @@ -43,7 +52,7 @@ msgstr "Постави на нацрт" #. module: account_payment #: help:payment.order,mode:0 msgid "Select the Payment Mode to be applied." -msgstr "" +msgstr "Изберете режим на плаќање кој ќе биде применет." #. module: account_payment #: view:payment.mode:0 @@ -61,7 +70,7 @@ msgstr "Ставки од уплата" #: field:payment.line,info_owner:0 #: view:payment.order:0 msgid "Owner Account" -msgstr "" +msgstr "Сопственик на сметка" #. module: account_payment #: help:account.invoice,amount_to_pay:0 @@ -69,6 +78,8 @@ msgid "" "The amount which should be paid at the current date\n" "minus the amount which is already in payment order" msgstr "" +"Износ кој треба да биде платен на тековниот датум \n" +"минус износот кој е веќе во налогот за плаќање" #. module: account_payment #: field:payment.line,company_id:0 @@ -80,7 +91,7 @@ msgstr "Компанија" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment msgid "Accounting / Payments" -msgstr "Сметководство/Уплати" +msgstr "Сметководство / Уплати" #. module: account_payment #: selection:payment.line,state:0 @@ -91,23 +102,23 @@ msgstr "Бесплатно" #: view:payment.order.create:0 #: field:payment.order.create,entries:0 msgid "Entries" -msgstr "Записи" +msgstr "Внесови" #. module: account_payment #: report:payment.order:0 msgid "Used Account" -msgstr "" +msgstr "Употребена сметка" #. module: account_payment #: field:payment.line,ml_maturity_date:0 #: field:payment.order.create,duedate:0 msgid "Due Date" -msgstr "Крајна дата" +msgstr "Краен датум" #. module: account_payment #: view:payment.order.create:0 msgid "_Add to payment order" -msgstr "" +msgstr "_Додади на налог за плаќање" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_account_payment_populate_statement @@ -122,6 +133,8 @@ msgid "" "You cannot cancel an invoice which has already been imported in a payment " "order. Remove it from the following payment order : %s." msgstr "" +"Не може да откажете фактура која е веќе импортирана во налог за плаќање.\n" +"Отстранете ја од следниов налог за плаќање : %s." #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 @@ -149,7 +162,7 @@ msgstr "Откажано" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree_new msgid "New Payment Order" -msgstr "" +msgstr "Нов налог за плаќање" #. module: account_payment #: report:payment.order:0 @@ -160,18 +173,18 @@ msgstr "Референца" #. module: account_payment #: sql_constraint:payment.line:0 msgid "The payment line name must be unique!" -msgstr "" +msgstr "Името на ставката за плаќање мора да биде уникатно!" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_order_tree #: model:ir.ui.menu,name:account_payment.menu_action_payment_order_form msgid "Payment Orders" -msgstr "" +msgstr "Налози за плаќање" #. module: account_payment #: selection:payment.order,date_prefered:0 msgid "Directly" -msgstr "Дирекно" +msgstr "Директно" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_payment_line_form @@ -184,7 +197,7 @@ msgstr "Ставка од уплата" #. module: account_payment #: view:payment.line:0 msgid "Amount Total" -msgstr "Износ вкупно" +msgstr "Вкупен износ" #. module: account_payment #: help:payment.order,state:0 @@ -193,6 +206,9 @@ msgid "" " Once the bank is confirmed the status is set to 'Confirmed'.\n" " Then the order is paid the status is 'Done'." msgstr "" +"Кога налогот е поставен статусот е 'Нацрт'.\n" +" Откако банката ќе го одобри стстусот се подесува на 'Потврдено'.\n" +" Кога налогот е платен статусот е 'Завршено'." #. module: account_payment #: view:payment.order:0 @@ -203,12 +219,12 @@ msgstr "Потврдено" #. module: account_payment #: help:payment.line,ml_date_created:0 msgid "Invoice Effective Date" -msgstr "" +msgstr "Датум на доспевање на фактурата" #. module: account_payment #: report:payment.order:0 msgid "Execution Type" -msgstr "" +msgstr "Тип на извршување" #. module: account_payment #: selection:payment.line,state:0 @@ -239,12 +255,12 @@ msgstr "Начин на плаќање" #. module: account_payment #: field:payment.line,ml_date_created:0 msgid "Effective Date" -msgstr "Ефективен датум" +msgstr "Датум на доспевање" #. module: account_payment #: field:payment.line,ml_inv_ref:0 msgid "Invoice Ref." -msgstr "" +msgstr "Реф. на фактурата" #. module: account_payment #: help:payment.order,date_prefered:0 @@ -253,6 +269,9 @@ msgid "" "by you.'Directly' stands for the direct execution.'Due date' stands for the " "scheduled date of execution." msgstr "" +"Изберете опција за Налогот за плаќање: 'Фиксно' за датумот кој е назначен од " +"Вас. 'Директно' за директно извршување. 'Краен датум' за закажаниот датум за " +"извршување." #. module: account_payment #: field:payment.order,date_created:0 @@ -262,7 +281,7 @@ msgstr "Датум на креирање" #. module: account_payment #: help:payment.mode,journal:0 msgid "Bank or Cash Journal for the Payment Mode" -msgstr "" +msgstr "Дневник Банка или Готовина за режимот на плаќање" #. module: account_payment #: selection:payment.order,date_prefered:0 @@ -273,17 +292,17 @@ msgstr "Фиксен датум" #: field:payment.line,info_partner:0 #: view:payment.order:0 msgid "Destination Account" -msgstr "Одредишно конто" +msgstr "Одредишна сметка" #. module: account_payment #: view:payment.line:0 msgid "Desitination Account" -msgstr "Одредишно конто" +msgstr "Одредишна сметка" #. module: account_payment #: view:payment.order:0 msgid "Search Payment Orders" -msgstr "" +msgstr "Барај налози за плаќање" #. module: account_payment #: field:payment.line,create_date:0 @@ -293,17 +312,17 @@ msgstr "Креирано" #. module: account_payment #: view:payment.order:0 msgid "Select Invoices to Pay" -msgstr "" +msgstr "Избери фактури за плаќање" #. module: account_payment #: view:payment.line:0 msgid "Currency Amount Total" -msgstr "" +msgstr "Вкупен износ на валута" #. module: account_payment #: view:payment.order:0 msgid "Make Payments" -msgstr "Изврши уплата" +msgstr "Изврши уплати" #. module: account_payment #: field:payment.line,state:0 @@ -320,7 +339,7 @@ msgstr "Партнер" #. module: account_payment #: field:payment.line,bank_statement_line_id:0 msgid "Bank statement line" -msgstr "Ставка од извод" +msgstr "Ставка од банкарски извод" #. module: account_payment #: selection:payment.order,date_prefered:0 @@ -353,6 +372,8 @@ msgid "" "If no payment date is specified, the bank will treat this payment line " "directly" msgstr "" +"Доколку не е назначен датум на плаќање, банката ќе ја третира оваа ставка за " +"уплата директно" #. module: account_payment #: model:ir.model,name:account_payment.model_account_payment_populate_statement @@ -363,12 +384,12 @@ msgstr "" #: code:addons/account_payment/account_move_line.py:110 #, python-format msgid "There is no partner defined on the entry line." -msgstr "" +msgstr "Нема дефинирано партнер за оваа ставка на внесот." #. module: account_payment #: help:payment.mode,name:0 msgid "Mode of Payment" -msgstr "" +msgstr "Режим на плаќање" #. module: account_payment #: report:payment.order:0 @@ -383,7 +404,7 @@ msgstr "Тип на плаќање" #. module: account_payment #: help:payment.line,amount_currency:0 msgid "Payment amount in the partner currency" -msgstr "" +msgstr "Износ на уплата во валута на партнерот" #. module: account_payment #: view:payment.order:0 @@ -416,16 +437,17 @@ msgstr "" #: help:payment.order,date_scheduled:0 msgid "Select a date if you have chosen Preferred Date to be fixed." msgstr "" +"Изберете датум доколку сте избрале Преферираниот датум да биде фиксен." #. module: account_payment #: field:account.payment.populate.statement,lines:0 msgid "Payment Lines" -msgstr "Стафки од уплата" +msgstr "Ставки од уплата" #. module: account_payment #: model:ir.model,name:account_payment.model_account_move_line msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account_payment #: help:payment.line,move_line_id:0 @@ -462,7 +484,7 @@ msgstr "Датум на извршување" #. module: account_payment #: view:account.payment.populate.statement:0 msgid "ADD" -msgstr "" +msgstr "ADD" #. module: account_payment #: model:ir.actions.act_window,name:account_payment.action_create_payment_order @@ -492,7 +514,7 @@ msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Invoice Ref" -msgstr "Реф на вактура" +msgstr "Реф на фактура" #. module: account_payment #: field:payment.line,name:0 @@ -502,7 +524,7 @@ msgstr "Вашата референца" #. module: account_payment #: view:payment.order:0 msgid "Payment order" -msgstr "Налог за уплата" +msgstr "Налог за плаќање" #. module: account_payment #: view:payment.line:0 @@ -536,7 +558,7 @@ msgstr "Откажи" #. module: account_payment #: field:payment.line,bank_id:0 msgid "Destination Bank Account" -msgstr "" +msgstr "Сметка на одредишна банка" #. module: account_payment #: view:payment.line:0 @@ -554,22 +576,22 @@ msgstr "Налог за плаќање" #. module: account_payment #: help:payment.line,amount:0 msgid "Payment amount in the company currency" -msgstr "" +msgstr "Износ на уплата во валута на компанијата" #. module: account_payment #: view:payment.order.create:0 msgid "Search Payment lines" -msgstr "" +msgstr "Барај ставки од уплата" #. module: account_payment #: field:payment.line,amount_currency:0 msgid "Amount in Partner Currency" -msgstr "" +msgstr "Износ во валута на партнерот" #. module: account_payment #: field:payment.line,communication2:0 msgid "Communication 2" -msgstr "" +msgstr "Комуникација 2" #. module: account_payment #: field:payment.order,date_scheduled:0 @@ -613,12 +635,12 @@ msgstr "Плаќање" #. module: account_payment #: report:payment.order:0 msgid "Payment Order / Payment" -msgstr "Налог за уплата/Уплата" +msgstr "Налог за плаќање / Плаќање" #. module: account_payment #: field:payment.line,move_line_id:0 msgid "Entry line" -msgstr "Стафка" +msgstr "Ставка на внес" #. module: account_payment #: help:payment.line,communication:0 @@ -641,7 +663,7 @@ msgstr "Банкарска сметка" #: view:payment.line:0 #: view:payment.order:0 msgid "Entry Information" -msgstr "" +msgstr "Информација за внес" #. module: account_payment #: model:ir.model,name:account_payment.model_payment_order_create @@ -656,7 +678,7 @@ msgstr "Налог" #. module: account_payment #: view:payment.order:0 msgid "Cancel Payments" -msgstr "" +msgstr "Откажи плаќања" #. module: account_payment #: field:payment.order,total:0 @@ -684,4 +706,4 @@ msgstr "или" #. module: account_payment #: help:payment.mode,bank_id:0 msgid "Bank Account for the Payment Mode" -msgstr "" +msgstr "Банкарска сметка за режимот на плаќање" diff --git a/addons/account_sequence/i18n/mk.po b/addons/account_sequence/i18n/mk.po index 6ed5d4d5cce..f5f64008b69 100644 --- a/addons/account_sequence/i18n/mk.po +++ b/addons/account_sequence/i18n/mk.po @@ -2,32 +2,33 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-04 15:17+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:34+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_sequence #: view:account.sequence.installer:0 #: model:ir.actions.act_window,name:account_sequence.action_account_seq_installer msgid "Account Sequence Application Configuration" -msgstr "" +msgstr "Конфигурирање на апликацијата за секвенца на сметка" #. module: account_sequence #: help:account.move,internal_sequence_number:0 #: help:account.move.line,internal_sequence_number:0 msgid "Internal Sequence Number" -msgstr "" +msgstr "Број на внатрешна секвенца" #. module: account_sequence #: help:account.sequence.installer,number_next:0 @@ -52,7 +53,7 @@ msgstr "Следниот број од секвенцата ќе биде зго #. module: account_sequence #: view:account.sequence.installer:0 msgid "Configure Your Account Sequence Application" -msgstr "" +msgstr "Конфигурирајте ја апликацијата за секвенцата на вашата сметка" #. module: account_sequence #: view:account.sequence.installer:0 @@ -72,12 +73,12 @@ msgstr "Компанија" #. module: account_sequence #: field:account.sequence.installer,padding:0 msgid "Number padding" -msgstr "" +msgstr "Дополнување на број" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_move_line msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account_sequence #: field:account.move,internal_sequence_number:0 @@ -110,7 +111,7 @@ msgstr "" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_move msgid "Account Entry" -msgstr "Запис на конто" +msgstr "Внес на сметка" #. module: account_sequence #: field:account.sequence.installer,suffix:0 @@ -133,6 +134,8 @@ msgid "" "This sequence will be used to maintain the internal number for the journal " "entries related to this journal." msgstr "" +"Оваа секвенца ќе се користи за да се одржува внатрешниот број за записите на " +"дневникот поврзани со овој дневник." #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_sequence_installer @@ -148,3 +151,5 @@ msgstr "Дневник" #: view:account.sequence.installer:0 msgid "You can enhance the Account Sequence Application by installing ." msgstr "" +"Можете да ја подобрите апликацијата за секвенцата на сметката преку " +"инсталирање." diff --git a/addons/account_test/i18n/mk.po b/addons/account_test/i18n/mk.po index 2c752b0f214..622319706a3 100644 --- a/addons/account_test/i18n/mk.po +++ b/addons/account_test/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-04 15:13+0000\n" +"PO-Revision-Date: 2013-03-28 21:36+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: account_test #: view:accounting.assert.test:0 @@ -59,7 +60,7 @@ msgid "" "Check that reconciled invoice for Sales/Purchases has reconciled entries for " "Payable and Receivable Accounts" msgstr "" -"Означете дека порамнетата фактура за Продажби/Набавки има порамнети записи " +"Означете дека порамнетата фактура за Продажби/Набавки има порамнети внесови " "за Сметките Плаќања и Побарувања" #. module: account_test @@ -78,7 +79,7 @@ msgstr "Име на тест" #. module: account_test #: report:account.test.assert.print:0 msgid "Accouting tests on" -msgstr "" +msgstr "Сметководствени тестови на" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_01 @@ -115,12 +116,12 @@ msgstr "Опис" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06_1 msgid "Check that there's no move for any account with « View » account type" -msgstr "" +msgstr "Означете дека нема движење за сметка со тип на сметка « Приказ »" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_08 msgid "Test 9 : Accounts and partners on account moves" -msgstr "" +msgstr "Тест 9: Сметки и партнери на движења на сметка" #. module: account_test #: model:ir.actions.act_window,name:account_test.action_accounting_assert @@ -178,7 +179,7 @@ msgstr "Тест 8: Заклучно салдо на банкарски изво #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_03 msgid "Test 3: Movement lines" -msgstr "" +msgstr "Тест 3: Ставки на движење" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_05_2 @@ -227,6 +228,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате Сметководствен Тест.\n" +"

\n" +" " #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_01 @@ -237,13 +242,14 @@ msgstr "Провери го салдото: Сума на задолжување #: model:accounting.assert.test,desc:account_test.account_test_08 msgid "Check that general accounts and partners on account moves are active" msgstr "" +"Означете дека општите сметки и партнерите на движењата на сметката се активни" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_06_1 msgid "Test 7: « View  » account type" -msgstr "" +msgstr "Тест 7: Тип на сметка « Приказ  »" #. module: account_test #: view:accounting.assert.test:0 msgid "Code Help" -msgstr "" +msgstr "Код Помош" diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index 8d0568fa95e..b1b06259acd 100644 --- a/addons/account_voucher/i18n/mk.po +++ b/addons/account_voucher/i18n/mk.po @@ -2,19 +2,19 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 11:54+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:41+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -42,12 +42,12 @@ msgstr "Референтно плаќање" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "Целосна Сума" +msgstr "Вкупен износ" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "Отвори го внесот на записи на клиенти" +msgstr "Отвори внесови на Дневникот Купувач" #. module: account_voucher #: view:account.voucher:0 @@ -62,12 +62,12 @@ msgid "" "sum of allocation on the voucher lines." msgstr "" "Пресметано како разлика помеѓу сумата на ваучерот и сумата распределена на " -"линиите на ваучерот." +"ставките на ваучерот." #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "(Update)" +msgstr "(Ажурирај)" #. module: account_voucher #: view:account.voucher:0 @@ -79,7 +79,7 @@ msgstr "Плаќање Сметка" #: 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 "Импортирај книжење" +msgstr "Импортирај внесови" #. module: account_voucher #: view:account.voucher:0 @@ -139,8 +139,8 @@ msgid "" "You can not change the journal as you already reconciled some statement " "lines!" msgstr "" -"Неможете да извршите промена на записот како што веќе порамнивте некоја од " -"состојбите!" +"Не можете да извршите промена на дневникот бидејќи веќе сте порамниле некои " +"од ставките на изводот!" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change @@ -173,7 +173,7 @@ msgstr "" " Кликни за регистрирање на сметкопотврда. \n" "

\n" " Со потврдување на сметкопотврдата, може да се прибележи\n" -" плаќањето на досатавувачот врз база на сметката.\n" +" плаќањето на доставувачот врз база на сметката.\n" "

\n" " " @@ -236,7 +236,7 @@ msgstr "Сметкопотврди" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "Ставка од запис" +msgstr "Ставка од дневник" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:508 @@ -336,7 +336,7 @@ msgstr "Коментар за копијата" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: account_voucher #: help:account.voucher,message_summary:0 @@ -360,7 +360,7 @@ msgstr "Информација за плаќањето" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "(update)" +msgstr "(ажурирај)" #. module: account_voucher #: view:account.voucher:0 @@ -373,7 +373,7 @@ msgstr "Нацрт" #. module: account_voucher #: view:account.bank.statement:0 msgid "Import Invoices" -msgstr "Импортирај фактури" +msgstr "Увези фактури" #. module: account_voucher #: view:account.voucher:0 @@ -384,7 +384,7 @@ msgstr "на пр. Фактура SAJ/0042" #: code:addons/account_voucher/account_voucher.py:1112 #, python-format msgid "Wrong voucher line" -msgstr "Погрешна линија на ваучер" +msgstr "Погрешна ставка на ваучер" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -408,13 +408,13 @@ msgid "" "to differences between exchange rates." msgstr "" "Треба да ја конфигурирате сметката за добивка во девизен курс, за автоматско " -"менаџирање на записите на сметката поврзани со разликите помеѓу девизните " +"управување со записите на сметката поврзани со разликите помеѓу девизните " "курсеви." #. module: account_voucher #: view:account.voucher:0 msgid "Sales Lines" -msgstr "Линии за продажба" +msgstr "Ставки за продажба" #. module: account_voucher #: view:account.voucher:0 @@ -442,7 +442,7 @@ msgstr "Ваучер на добавувачот" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -453,7 +453,7 @@ msgstr "Задолжување" #: code:addons/account_voucher/account_voucher.py:1547 #, python-format msgid "Unable to change journal !" -msgstr "Неможе да се промени записникот !" +msgstr "Не може да се промени дневникот !" #. module: account_voucher #: view:sale.receipt.report:0 @@ -470,13 +470,13 @@ msgstr "Тип" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "Про-Факрура Ваучери" +msgstr "Про-Фактура Ваучери" #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open msgid "Voucher Entries" -msgstr "Внес на ваучери" +msgstr "Внесови на ваучер" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_payment @@ -500,12 +500,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "Отвори го внесот на записи на добавувачи" +msgstr "Отвори ги внесовите на дневникот на добавувачот" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list msgid "Vouchers Entries" -msgstr "Внес на ваучери" +msgstr "Внесови на ваучери" #. module: account_voucher #: field:account.voucher,name:0 @@ -521,12 +521,13 @@ msgstr "Плати фактура" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "Сигурно ли сакате да го откажете порамнувањето и записот?" +msgstr "" +"Сигурно ли сакате да извршите отпорамнување и да го откажете записот?" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Receipt" -msgstr "" +msgstr "Потврда за продажба" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 @@ -578,7 +579,7 @@ msgstr "Просечно задоцнување" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to unreconcile this record?" -msgstr "" +msgstr "Дали сте сигурни дека сакате да од отпорамните овој запис?" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1153 @@ -612,12 +613,12 @@ msgid "" " " msgstr "" "

\n" -" Клик за регистрирање на ново плаќање. \n" +" Кликнете за регистрирање на ново плаќање. \n" "

\n" -" Внесете го клиентот и начинот на плаќање и тогаш или\n" +" Внесете го купувачот и начинот на плаќање и потоа или\n" " рачно внесете го записот за плаќање или OpenERP ќе ви даде " "предлог\n" -" автоматско порамнување на плаќањето со \n" +" за автоматско порамнување на плаќањето со \n" " отворената сметка или фактура\n" "

\n" " " @@ -631,7 +632,7 @@ msgstr "Сметка за загуба во девизен курс" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "Платена сума" +msgstr "Платен износ" #. module: account_voucher #: field:account.voucher,payment_option:0 @@ -661,13 +662,13 @@ msgid "" "to differences between exchange rates." msgstr "" "Треба да ја конфигурирате сметката за загуба во девизен курс, за автоматско " -"менаџирање на записите на сметката поврзани со разликите помеѓу девизните " -"курсеви." +"менаџирање на сметководствените внесови поврзани со разликите помеѓу " +"девизните курсеви." #. module: account_voucher #: view:account.voucher:0 msgid "Expense Lines" -msgstr "Линија за трошоци" +msgstr "Ставки за трошоци" #. module: account_voucher #: help:account.voucher,is_multi_currency:0 @@ -737,7 +738,7 @@ msgstr "Компанија" #. module: account_voucher #: help:account.voucher,paid:0 msgid "The Voucher has been totally paid." -msgstr "Ваучерот е целосно исплатен." +msgstr "Ваучерот е целосно платен." #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -770,7 +771,7 @@ msgstr "Вкупно со данок" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "Ваучер за купување" +msgstr "Ваучер за набавка" #. module: account_voucher #: view:account.voucher:0 @@ -806,7 +807,7 @@ msgid "" "Check this box if you are unsure of that journal entry and if you want to " "note it as 'to be reviewed' by an accounting expert." msgstr "" -"Штиклирајте доколку не сте сигурни за внесот во записникот и сакате да го " +"Штиклирајте доколку не сте сигурни за внесот во дневникот и сакате да го " "означите како 'да се прегледа' од страна на сметководствен експерт." #. module: account_voucher @@ -818,7 +819,7 @@ msgstr "Октомври" #: code:addons/account_voucher/account_voucher.py:976 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "Ве молиме активирајте го редоследот на одбраниот запис !" +msgstr "Ве молиме активирајте ја секвенцата на одбраниот дневник !" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -844,7 +845,7 @@ msgstr "Потврди за продажба" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "е следбеник" +msgstr "Пратител" #. module: account_voucher #: field:account.voucher,analytic_id:0 @@ -909,7 +910,7 @@ msgstr "Јануари" #: model:ir.actions.act_window,name:account_voucher.action_voucher_list #: model:ir.ui.menu,name:account_voucher.menu_encode_entries_by_voucher msgid "Journal Vouchers" -msgstr "Ваучери за записи" +msgstr "Ваучери за дневник" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company @@ -930,14 +931,14 @@ msgstr "Активен" #: code:addons/account_voucher/account_voucher.py:982 #, python-format msgid "Please define a sequence on the journal." -msgstr "Ве молиме дефинирајте го редоследот на записите" +msgstr "Ве молиме дефинирајте ја секвенцата на дневникот." #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.act_pay_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "Плаќања на клиентите" +msgstr "Плаќања на купувач" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all @@ -949,12 +950,12 @@ msgstr "Анализа на потврдите од продажбите" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "Групирај по дата на фактура" +msgstr "Групирај по датум на фактура" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "Испрати" +msgstr "Објави" #. module: account_voucher #: view:account.voucher:0 @@ -965,12 +966,12 @@ msgstr "Фактури и неподмирени трансакции" #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total:0 msgid "Total Without Tax" -msgstr "Вкупно без данок" +msgstr "Даночна основа" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Date" -msgstr "Дата на сметка" +msgstr "Датум на сметка" #. module: account_voucher #: view:account.voucher:0 @@ -991,7 +992,7 @@ msgstr "Број" #. module: account_voucher #: selection:account.voucher.line,type:0 msgid "Credit" -msgstr "Кредит" +msgstr "Побарување" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement @@ -1028,7 +1029,7 @@ msgstr "Фактура" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Items" -msgstr "Елементи за ваучерот" +msgstr "Ставки на ваучерот" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -1039,7 +1040,7 @@ msgstr "Откажи" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "Отвори го менито за фактури" +msgstr "Отвори го менито Фактурирање" #. module: account_voucher #: selection:account.voucher,state:0 @@ -1052,20 +1053,20 @@ msgstr "Про-фактура" #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "Ставки во картица" +msgstr "Ставки во дневник" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:508 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" -"Ве молиме дефинирајте стандардна кредитна/дебитна сметка за записот \"%s\"." +"Ве молиме дефинирајте стандардни сметки побарува/задолжува за записот \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Purchase" -msgstr "Купување" +msgstr "Набавка" #. module: account_voucher #: view:account.invoice:0 @@ -1116,7 +1117,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "Испратени ваучери" +msgstr "Објавени ваучери" #. module: account_voucher #: field:account.voucher,payment_rate:0 @@ -1144,23 +1145,23 @@ msgstr "Мај" #: view:sale.receipt.report:0 #: field:sale.receipt.report,journal_id:0 msgid "Journal" -msgstr "Запис" +msgstr "Дневник" #. module: account_voucher #: view:account.voucher:0 msgid "Internal Notes" -msgstr "Внатрешни забелешки" +msgstr "Внатрешни белешки" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "Кредити" +msgstr "Побарувања" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Original Amount" -msgstr "Оригинална сума" +msgstr "Оригинален износ" #. module: account_voucher #: view:account.voucher:0 @@ -1191,12 +1192,12 @@ msgstr "Плаќање" #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Posted" -msgstr "Пратено" +msgstr "Објавено" #. module: account_voucher #: view:account.voucher:0 msgid "Customer" -msgstr "Клиент" +msgstr "Купувач" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -1249,12 +1250,12 @@ msgstr "Стандарден тип" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "Пораки и историја на комуникација" +msgstr "Историја на пораки и комуникацијата" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines msgid "Entries by Statement from Invoices" -msgstr "Записи по изјава од фактури" +msgstr "Внесови пд извод од фактури" #. module: account_voucher #: view:account.voucher:0 @@ -1265,25 +1266,25 @@ msgstr "Вкупно" #. module: account_voucher #: field:account.voucher,move_id:0 msgid "Account Entry" -msgstr "Запис на сметка" +msgstr "Внес на сметка" #. module: account_voucher #: constraint:account.bank.statement.line:0 msgid "" "The amount of the voucher must be the same amount as the one on the " "statement line." -msgstr "Сумата на ваучерот мора да биде иста со сумата во изјавата." +msgstr "Сумата на ваучерот мора да биде иста со сумата во изводот." #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:879 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." -msgstr "Неможете да избришете ваучер(и) кои се веќе отворени или платени." +msgstr "Не можете да избришете ваучер(и) кои се веќе отворени или платени." #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "Дата на стапување во сила на сметководствените записи" +msgstr "Дата на доспевање на сметководствените внесови" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change @@ -1293,14 +1294,14 @@ msgstr "Промена на статус" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "Држи отворено" +msgstr "Остави отворено" #. module: account_voucher #: field:account.voucher,line_ids:0 #: view:account.voucher.line:0 #: model:ir.model,name:account_voucher.model_account_voucher_line msgid "Voucher Lines" -msgstr "Линии на ваучер" +msgstr "Ставки на ваучер" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1311,7 +1312,7 @@ msgstr "Просечно доцнење на наплата" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" -msgstr "Обезданочување на сумата" +msgstr "Неданочен износ" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report @@ -1330,7 +1331,7 @@ msgstr "Партнер" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "Отворено биланс" +msgstr "Отвори салдо" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1014 @@ -1346,9 +1347,9 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" -"Стандардно, Ваучерите за порамнување правени по нацрт банкарски извештаи се " -"неактивни, со што се дозволува криење на клиент/добавувач плаќањето додека " -"не се потврди изјавата на банката." +"Стандардно, Ваучерите за порамнување направени по нацрт банкарски изводи се " +"неактивни, со што се дозволува да се сокрие плаќањето на " +"купувачот/добавувачот додека не се потврди изводот на банката." #~ msgid "Sale voucher" #~ msgstr "Ваучер за продажба" diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index 34f6a3a7f35..5af93a4b58c 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.po @@ -10,20 +10,20 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-13 11:50+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: ESKON Inzenering\n" +"PO-Revision-Date: 2013-03-28 21:43+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: analytic #: field:account.analytic.account,child_ids:0 msgid "Child Accounts" -msgstr "Сметка (дете)" +msgstr "Сметки (дете)" #. module: analytic #: selection:account.analytic.account,state:0 @@ -80,7 +80,7 @@ msgstr "" " на сервисни единици, менаџерот на " "сметката \n" " се известува преку e-mail за да го \n" -" обнови договорот со клиентот." +" обнови договорот со купувачот." #. module: analytic #: selection:account.analytic.account,type:0 @@ -100,7 +100,7 @@ msgstr "Менаџер на сметка" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: analytic #: selection:account.analytic.account,state:0 @@ -191,8 +191,8 @@ msgid "" "Sets the higher limit of time to work on the contract, based on the " "timesheet. (for instance, number of hours in a limited support contract.)" msgstr "" -"Сетирање на горна граница на време за работана договорот, базирано на " -"контролната картица. (на пример, број на часови во договор со ограничена " +"Подесување на горна граница на време за работа на договорот, базирано на " +"временската таблица. (на пример, број на часови во договор со ограничена " "поддршка)" #. module: analytic @@ -208,7 +208,7 @@ msgid "" msgstr "" "Доколку поставите компанија, избраната валута мора да биде иста како на " "компанијата. \n" -"Може да отстранете каде компанијата припаѓа и со тоа да извршите промена на " +"Може да отстраните каде припаѓа компанијата и со тоа да извршите промена на " "валутата, само на аналитичка сметка со тип 'преглед'. Ова може да биде " "навистина корисно во консолидациски цели кај табели со различни валути на " "неколку компании, на пример." @@ -216,7 +216,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Пратител" #. module: analytic #: field:account.analytic.line,user_id:0 @@ -255,7 +255,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "Клиент" +msgstr "Купувач" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -270,12 +270,12 @@ msgstr "Пораки" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "Пораки и историја на комуникација" +msgstr "Историја на пораки и комуникација" #. module: analytic #: constraint:account.analytic.line:0 msgid "You cannot create analytic line on view account." -msgstr "Неможе да креирате аналитичка линија на сметка за преглед." +msgstr "Не може да креирате аналитичка ставка на сметка приказ." #. module: analytic #: view:account.analytic.account:0 @@ -286,7 +286,7 @@ msgstr "Информации за договорот" #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "Шаблон на договор" +msgstr "Урнек на договор" #. module: analytic #: field:account.analytic.account,message_summary:0 @@ -301,7 +301,7 @@ msgstr "Припејд сервисни единици" #. module: analytic #: field:account.analytic.account,credit:0 msgid "Credit" -msgstr "Кредит" +msgstr "Побарување" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened @@ -321,11 +321,11 @@ msgid "" "default data that you can reuse easily." msgstr "" "Доколку изберете тип за Преглед, тоа значи дека нема да биде дозволено " -"внесување на записи во записникот користејки ја таа сметка.\n" +"креирање на внесови во дневникот користејки ја таа сметка.\n" "Типот 'Аналитичка сметка' значи обични корисници што ќе се користат во " "сметководството.\n" -"Доколку одберете Договор или Проект, тоа ви ја нуди можноста за менаџирање " -"на валидноста и опциите за фактурирање за оваа сметка.\n" +"Доколку одберете Договор или Проект, тоа ви ја нуди можноста за управување " +"со валидноста и опциите за фактурирање за оваа сметка.\n" "Специјалниот тип 'Шаблон на договор' ви овозможува да дефинирате шаблон со " "стандардни податоци кои може лесно да ги менувате." @@ -342,7 +342,7 @@ msgstr "Аналитички приказ" #. module: analytic #: field:account.analytic.account,balance:0 msgid "Balance" -msgstr "Биланс" +msgstr "Салдо" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -428,7 +428,7 @@ msgstr "Почетен датум" #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "Аналитички записи" +msgstr "Аналитички внесови" #~ msgid "Stage opened" #~ msgstr "Фаза отворено" diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index 5b358b5cac8..b8fc60182b6 100644 --- a/addons/analytic_contract_hr_expense/i18n/mk.po +++ b/addons/analytic_contract_hr_expense/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 08:05+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:44+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:31+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -35,7 +36,7 @@ msgstr "трошоци" #. module: analytic_contract_hr_expense #: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: analytic_contract_hr_expense #: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 diff --git a/addons/analytic_user_function/i18n/mk.po b/addons/analytic_user_function/i18n/mk.po index 3321e796c50..1c8e203103d 100644 --- a/addons/analytic_user_function/i18n/mk.po +++ b/addons/analytic_user_function/i18n/mk.po @@ -2,20 +2,21 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 08:07+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:46+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -51,7 +52,7 @@ msgstr "Цена по час за овој корисник" #: field:analytic.user.funct.grid,account_id:0 #: model:ir.model,name:analytic_user_function.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:106 @@ -95,12 +96,12 @@ msgstr "Единица мерка" #: code:addons/analytic_user_function/analytic_user_function.py:136 #, python-format msgid "There is no expense account define for this product: \"%s\" (id:%d)" -msgstr "Нема дефинирано конто трошоци за овој производ: \"%s\" (id>%d)" +msgstr "Нема дефинирано сметка трошоци за овој производ: \"%s\" (id>%d)" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "Ставка на распоред" +msgstr "Ставка од временска таблица" #. module: analytic_user_function #: view:account.analytic.account:0 @@ -111,6 +112,12 @@ msgid "" " specific user. This allows to set invoicing\n" " conditions for a group of contracts." msgstr "" +"OpenERP рекурсивно ќе ги пребара сметките родител\n" +" за да провери дали одредени услови се дефинирани " +"за\n" +" одреден корисник. Ова овозможува да се подесат " +"условите\n" +" за фактурирање за група на договори." #. module: analytic_user_function #: field:analytic.user.funct.grid,user_id:0 diff --git a/addons/anonymization/i18n/mk.po b/addons/anonymization/i18n/mk.po index 0ee3e1b0ff0..185af67cd60 100644 --- a/addons/anonymization/i18n/mk.po +++ b/addons/anonymization/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-11 13:02+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:47+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -230,7 +231,7 @@ msgid "" msgstr "" "Анонимизацијата на базата на податоци моментално е во нестабилна состојба. " "Некои полиња се анонимизирани, некои не се. Пробајте да го решите овој " -"проблем пред да се обидете да направите билошто." +"проблем пред да се обидете да направите било што." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -279,7 +280,7 @@ msgid "" msgstr "" "Анонимизацијата на базата на податоци моментално е во нестабилна состојба. " "Некои полиња се анонимизирани, некои не се. Пробајте да го решите овој " -"проблем пред да направите билошто друго." +"проблем пред да направите било што друго." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 @@ -319,7 +320,7 @@ msgstr "Започнато" #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." msgstr "" -"Базата на податоци е анонимизирана, неможете да ја анонимизирате повторно." +"Базата на податоци е анонимизирана, не можете да ја анонимизирате повторно." #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/association/i18n/mk.po b/addons/association/i18n/mk.po index 08fc51359d7..500174685f0 100644 --- a/addons/association/i18n/mk.po +++ b/addons/association/i18n/mk.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" -"PO-Revision-Date: 2013-03-06 14:35+0000\n" +"PO-Revision-Date: 2013-03-28 21:48+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: Macedonian \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:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: association @@ -25,7 +25,7 @@ msgstr "Вики" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Event Management" -msgstr "Менаџмент на настан" +msgstr "Управување со настани" #. module: association #: field:profile.association.config.install_modules_wizard,project_gtd:0 @@ -88,7 +88,7 @@ msgstr "" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Resources Management" -msgstr "Менаџмент на ресурси" +msgstr "Управување со ресурсите" #. module: association #: model:ir.module.module,shortdesc:association.module_meta_information diff --git a/addons/audittrail/i18n/mk.po b/addons/audittrail/i18n/mk.po index 7bbb29f752c..bfec43b3a67 100644 --- a/addons/audittrail/i18n/mk.po +++ b/addons/audittrail/i18n/mk.po @@ -2,25 +2,26 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-11 13:32+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:49+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: audittrail #: view:audittrail.log:0 msgid "Old Value Text : " -msgstr "" +msgstr "Текст со стара врдност : " #. module: audittrail #: code:addons/audittrail/audittrail.py:76 @@ -69,7 +70,7 @@ msgstr "Статус" #: model:ir.actions.act_window,name:audittrail.action_audittrail_log_tree #: model:ir.ui.menu,name:audittrail.menu_audit_logs msgid "Audit Logs" -msgstr "" +msgstr "Логови за ревизија" #. module: audittrail #: view:audittrail.log:0 @@ -104,6 +105,8 @@ msgid "" "Select this if you want to keep track of read/open on any record of the " "object of this rule" msgstr "" +"Изберете доколку сакате да го следите читањето/отварањето на било кој запис " +"од објектот на ова правило" #. module: audittrail #: field:audittrail.log,method:0 @@ -136,6 +139,8 @@ msgid "" "Select this if you want to keep track of workflow on any record of the " "object of this rule" msgstr "" +"Означете доколку сакате да го следите работниот тек на било кој запис за " +"објектот на ова правило" #. module: audittrail #: field:audittrail.rule,user_id:0 @@ -167,7 +172,7 @@ msgstr "" #. module: audittrail #: view:audittrail.log:0 msgid "New Value Text: " -msgstr "" +msgstr "Текст со нова вредност: " #. module: audittrail #: view:audittrail.rule:0 @@ -223,12 +228,12 @@ msgstr "Ревизија" #. module: audittrail #: field:audittrail.rule,log_workflow:0 msgid "Log Workflow" -msgstr "" +msgstr "Лог РаботенТек" #. module: audittrail #: field:audittrail.rule,log_read:0 msgid "Log Reads" -msgstr "" +msgstr "Лог Читања" #. module: audittrail #: code:addons/audittrail/audittrail.py:77 @@ -257,6 +262,8 @@ msgid "" "Select this if you want to keep track of deletion on any record of the " "object of this rule" msgstr "" +"Означете доколку сакате да го следите бришењето на било кој запис за " +"објектот на ова правило" #. module: audittrail #: view:audittrail.log:0 @@ -292,7 +299,7 @@ msgstr "" #. module: audittrail #: field:audittrail.rule,log_unlink:0 msgid "Log Deletes" -msgstr "" +msgstr "Лог Бришеања" #. module: audittrail #: view:audittrail.log:0 @@ -313,7 +320,7 @@ msgstr "" #. module: audittrail #: field:audittrail.rule,log_write:0 msgid "Log Writes" -msgstr "" +msgstr "Лог Пишувања" #. module: audittrail #: view:audittrail.view.log:0 @@ -323,7 +330,7 @@ msgstr "Отвори логови" #. module: audittrail #: field:audittrail.log.line,new_value_text:0 msgid "New value Text" -msgstr "" +msgstr "Текст со нова вредност" #. module: audittrail #: field:audittrail.rule,name:0 @@ -373,7 +380,7 @@ msgstr "Нова вредност : " #. module: audittrail #: field:audittrail.log.line,old_value_text:0 msgid "Old value Text" -msgstr "" +msgstr "Текст со стара врдност" #. module: audittrail #: view:audittrail.view.log:0 @@ -398,7 +405,7 @@ msgstr "или" #. module: audittrail #: field:audittrail.rule,log_action:0 msgid "Log Action" -msgstr "" +msgstr "Лог Акција" #. module: audittrail #: help:audittrail.rule,log_create:0 @@ -406,3 +413,5 @@ msgid "" "Select this if you want to keep track of creation on any record of the " "object of this rule" msgstr "" +"Означете доколку сакате да го следите креирањето на било кој запис за " +"објектот на ова правило" diff --git a/addons/auth_ldap/i18n/mk.po b/addons/auth_ldap/i18n/mk.po index 956177c6bd1..3cc19395bf5 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/i18n/mk.po @@ -2,25 +2,26 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 08:22+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:53+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "Нацрт корисник" +msgstr "Урнек корисник" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 diff --git a/addons/auth_oauth/i18n/mk.po b/addons/auth_oauth/i18n/mk.po index 01fbfa22c45..a735867a207 100644 --- a/addons/auth_oauth/i18n/mk.po +++ b/addons/auth_oauth/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-02 22:20+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 21:54+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -102,12 +103,12 @@ msgstr "Овозможува корисниците да се најавуваа #. module: auth_oauth #: sql_constraint:res.users:0 msgid "OAuth UID must be unique per provider" -msgstr "OAuth UID must be unique per provider" +msgstr "OAuth UID мора да биде уникатно по провајдер" #. module: auth_oauth #: help:res.users,oauth_uid:0 msgid "Oauth Provider user_id" -msgstr "Oauth Provider user_id" +msgstr "Oauth Провајдер user_id" #. module: auth_oauth #: field:auth.oauth.provider,data_endpoint:0 @@ -117,7 +118,7 @@ msgstr "URL на податоци" #. module: auth_oauth #: view:auth.oauth.provider:0 msgid "arch" -msgstr "" +msgstr "arch" #. module: auth_oauth #: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider diff --git a/addons/auth_oauth/i18n/nl.po b/addons/auth_oauth/i18n/nl.po index 2dfa65314ae..6b62f45c8a3 100644 --- a/addons/auth_oauth/i18n/nl.po +++ b/addons/auth_oauth/i18n/nl.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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-28 11:48+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-03-28 05:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: auth_oauth @@ -40,7 +40,7 @@ msgstr "Provider name" #. module: auth_oauth #: field:auth.oauth.provider,scope:0 msgid "Scope" -msgstr "Beriek" +msgstr "Bereik" #. module: auth_oauth #: field:res.users,oauth_provider_id:0 diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index a456d06dff9..5744fac6d7d 100644 --- a/addons/auth_signup/i18n/mk.po +++ b/addons/auth_signup/i18n/mk.po @@ -2,19 +2,19 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 08:11+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: ESKON-INZENERING \n" +"PO-Revision-Date: 2013-03-28 21:58+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -63,7 +63,7 @@ msgstr "Ресетирај лозинка" #. module: auth_signup #: field:base.config.settings,auth_signup_template_user_id:0 msgid "Template user for new users created through signup" -msgstr "Шаблонски корисник за новите корисници креирани преку регистрација" +msgstr "Урнек корисник за новите корисници креирани преку регистрација" #. module: auth_signup #: model:email.template,subject:auth_signup.reset_password_email diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po index d1325a8fbf1..2896fbbc50b 100644 --- a/addons/base_action_rule/i18n/mk.po +++ b/addons/base_action_rule/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-13 12:20+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 22:01+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:32+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -32,6 +31,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- Во овој приказ \"Пребарај\", селектирајте го менито \"Зачувај тековен " +"филтер\", внесете го името (пр. Креирај 01/01/2012) и додадете ја опцијата " +"\"Сподели со сите корисници\"" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -51,12 +53,12 @@ msgstr "Одговорен" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Примери: потсетници за email, услуга јави се на објектот и др." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "Додади следбеници" +msgstr "Додади пратители" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 @@ -112,7 +114,7 @@ msgstr "Статус" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Филтер Пред ажурирање" #. module: base_action_rule #: view:base.action.rule:0 @@ -140,7 +142,7 @@ msgstr "Филтерот мора да биде достапен на оваа #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Филтер После ажурирање" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -184,6 +186,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Одете на страницата \"Модел на поврзан документ\" и подесете ги " +"параметрите на филтерот во приказ \"Пребарај\" (Пример за филтер заснован на " +"Leads/Можности: Датум на креирање \"е еднаква на\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -225,7 +230,7 @@ msgstr "Тип на одлагање" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Акции на серверот за стартување" #. module: base_action_rule #: help:base.action.rule,active:0 @@ -261,7 +266,8 @@ msgstr "Поврзан модел на документ" #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." -msgstr "Доколку го има." +msgstr "" +"Доколку го има, овој услов мора да биде задоволен пред да се ажурира записот." #. module: base_action_rule #: field:base.action.rule,sequence:0 diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index 330b078a592..cc9c06a7554 100644 --- a/addons/base_calendar/i18n/mk.po +++ b/addons/base_calendar/i18n/mk.po @@ -2,20 +2,21 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-02 10:02+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:02+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -36,6 +37,8 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" +"Ова својство ја дефинира листата на исклучоците датум/време за компонентата " +"рекурсивен календар." #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -61,7 +64,7 @@ msgstr "Непознато" #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "" +msgstr "Состанок кој се повторува" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 @@ -107,7 +110,7 @@ msgstr "Четврто" #: field:crm.meeting,day:0 #: selection:crm.meeting,select1:0 msgid "Date of month" -msgstr "" +msgstr "Датум од месецот" #. module: base_calendar #: selection:calendar.event,class:0 @@ -187,7 +190,7 @@ msgstr "Основен аларм" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "" +msgstr "Корисници на кои е делегирано оригиналното барање" #. module: base_calendar #: field:calendar.attendee,ref:0 @@ -251,7 +254,7 @@ msgstr "Грешка!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Претседател" #. module: base_calendar #: view:crm.meeting:0 @@ -268,7 +271,7 @@ msgstr "Процедура" #: field:calendar.todo,recurrent_id:0 #: field:crm.meeting,recurrent_id:0 msgid "Recurrent ID" -msgstr "" +msgstr "Повторувачка ID" #. module: base_calendar #: selection:calendar.event,state:0 @@ -305,7 +308,7 @@ msgstr "Тема на состанокот" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Крај на повторливоста" #. module: base_calendar #: view:calendar.event:0 @@ -320,7 +323,7 @@ msgstr "Опција за повторување" #. module: base_calendar #: view:calendar.event:0 msgid "Choose day where repeat the meeting" -msgstr "" +msgstr "Изберете ден кога ќе се повтори состанокот" #. module: base_calendar #: view:crm.meeting:0 @@ -344,7 +347,7 @@ msgstr "Датум на завршување" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Опционо учество" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -373,6 +376,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Доколку активното поле е означено, ќе можете да ја сокриете информацијата за " +"аларм за настанот без да ја отстраните." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -441,7 +446,7 @@ msgstr "Потврди" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "" +msgstr "Календарска задача" #. module: base_calendar #: field:calendar.event,su:0 @@ -463,7 +468,7 @@ msgstr "Детали за потсетникот" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "" +msgstr "Делегирано од" #. module: base_calendar #: selection:calendar.event,select1:0 @@ -516,7 +521,7 @@ msgstr "Изврши" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_alarm msgid "Event alarm information" -msgstr "" +msgstr "Информација за аларм за настан" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1015 @@ -551,7 +556,7 @@ msgstr "Видливост" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "" +msgstr "Дали е потребен е одговор?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 @@ -635,7 +640,7 @@ msgstr "часови" #. module: base_calendar #: view:calendar.event:0 msgid "Cancel Event" -msgstr "" +msgstr "Откажи настан" #. module: base_calendar #: field:calendar.attendee,partner_id:0 @@ -725,7 +730,7 @@ msgstr "Сопственик" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Дозволете настанот автоматски да се повторува во овој интервал" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar @@ -747,6 +752,7 @@ msgstr "Одбиено" #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" +"Групирање по датум не е поддржано, наместо тоа употребете календарски приказ." #. module: base_calendar #: view:calendar.event:0 @@ -870,7 +876,7 @@ msgstr "Статус" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "" +msgstr "Е-пошта на поканета личност" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 @@ -931,12 +937,12 @@ msgstr "Покани" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "The" -msgstr "" +msgstr "The" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Напиши датум" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -975,7 +981,7 @@ msgstr "Ноември" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "" +msgstr "Ги покажува групите на кои припаѓа учесникот" #. module: base_calendar #: field:calendar.event,mo:0 @@ -998,7 +1004,7 @@ msgstr "Октомври" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "" +msgstr "Неизвесно" #. module: base_calendar #: constraint:calendar.event:0 @@ -1059,7 +1065,7 @@ msgstr "Активно" #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "" +msgstr "Не може да дуплирате календарски учесник." #. module: base_calendar #: view:calendar.event:0 @@ -1078,6 +1084,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" +"'Времетраење' и 'Повотри' се опциони, но доколку се појави едното, мора и " +"другото" #. module: base_calendar #: help:calendar.attendee,role:0 @@ -1093,6 +1101,7 @@ msgstr "Делегирано на" #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" msgstr "" +"Ја дефинира акцијата која треба да биде повикана кога е активиран алармот" #. module: base_calendar #: view:crm.meeting:0 @@ -1118,6 +1127,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" +"Доколку активното поле е означено, ќе можете да ја сокриете информацијата за " +"аларм за настанот без да ја отстраните." #. module: base_calendar #: field:calendar.event,end_type:0 @@ -1192,6 +1203,8 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" +"Дава покомплетен опис на календарската " +"компонента, од онаа дадена во \"РЕЗИМЕ\"" #. module: base_calendar #: view:calendar.event:0 @@ -1288,7 +1301,7 @@ msgstr "Потврдени настани" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "" +msgstr "URI Референца" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1374,12 +1387,12 @@ msgstr "" #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "Нопотврдено" +msgstr "Непотврдено" #. module: base_calendar #: help:calendar.attendee,sent_by:0 msgid "Specify the user that is acting on behalf of the calendar user" -msgstr "" +msgstr "Означува корисник кој делува во име на календарски корисник" #. module: base_calendar #: view:calendar.event:0 @@ -1412,7 +1425,7 @@ msgstr "Име" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Датум/Времиња на исклучок" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1420,6 +1433,8 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" +"Содржи текст кој треба да биде употребен како тема на " +"пораката за email содржи текст за прикажување" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message @@ -1436,7 +1451,7 @@ msgstr "Аларм" #. module: base_calendar #: field:calendar.attendee,sent_by_uid:0 msgid "Sent By User" -msgstr "" +msgstr "Испратено од корисник" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1461,7 +1476,7 @@ msgstr "Период на повторување" #: field:calendar.todo,week_list:0 #: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "" +msgstr "Ден од недела" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1013 @@ -1519,7 +1534,7 @@ msgstr "Информации за учесник" #. module: base_calendar #: field:calendar.alarm,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "ID на ресурс" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1543,7 +1558,7 @@ msgstr "Секвенца" #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "" +msgstr "Подесува аларм во ова време, пред да се појави настанот" #. module: base_calendar #: view:calendar.event:0 @@ -1592,7 +1607,7 @@ msgstr "Времетраење" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "" +msgstr "Датум на активирање" #. module: base_calendar #: help:calendar.alarm,attach:0 diff --git a/addons/base_gengo/i18n/mk.po b/addons/base_gengo/i18n/mk.po index c3831ef0fee..87fbe913e24 100644 --- a/addons/base_gengo/i18n/mk.po +++ b/addons/base_gengo/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-02 17:18+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:03+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: base_gengo #: view:res.company:0 @@ -25,7 +26,7 @@ msgstr "Коментар за преведувачот" #. module: base_gengo #: field:ir.translation,job_id:0 msgid "Gengo Job ID" -msgstr "" +msgstr "Gengo Job ID" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 @@ -47,12 +48,12 @@ msgstr "Gengo приватен клуч" #: constraint:ir.translation:0 msgid "" "The Gengo translation service selected is not supported for this language." -msgstr "" +msgstr "Избраниот Gengo сервис за преведување не е поддржан за овој јазик." #. module: base_gengo #: view:res.company:0 msgid "Add Gengo login Public Key..." -msgstr "" +msgstr "Додади јавен клуч за најава на Gengo..." #. module: base_gengo #: model:ir.model,name:base_gengo.model_base_gengo_translations @@ -62,12 +63,12 @@ msgstr "base.gengo.translations" #. module: base_gengo #: view:ir.translation:0 msgid "Gengo Comments & Activity..." -msgstr "" +msgstr "Gengo Коментари & Активности..." #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." -msgstr "" +msgstr "Работните места се автоматски одобрени од Gengo." #. module: base_gengo #: field:base.gengo.translations,lang_id:0 @@ -77,7 +78,7 @@ msgstr "Јазик" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "Коментари активност врзани со Gengo" +msgstr "Коментари & активност врзани со Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 @@ -92,6 +93,9 @@ msgid "" "Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " "authentication parameters under `Settings > Companies > Gengo Parameters`." msgstr "" +"Недостига Gengo `Јавен клуч` или `Приватен клуч`. Внесете ги вашите " +"параметри за Gengo автентикација под `Settings > Companies > Gengo " +"Parameters`." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -101,7 +105,7 @@ msgstr "Превод од машина" #. module: base_gengo #: view:res.company:0 msgid "Add Gengo login Private Key..." -msgstr "" +msgstr "Додади приватен клуч за најава на Gengo..." #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 @@ -112,6 +116,10 @@ msgid "" "--\n" " Commented on %s by %s." msgstr "" +"%s\n" +"\n" +"--\n" +" Коментирано на %s од %s." #. module: base_gengo #: field:ir.translation,gengo_translation:0 @@ -121,7 +129,7 @@ msgstr "" #. module: base_gengo #: view:res.company:0 msgid "Add your comments here for translator...." -msgstr "" +msgstr "Додадете ги овде вашите коментари за преведувач...." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -134,6 +142,8 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"Изберете го нивото на сервисот кој го сакате за автоматско преведување со " +"користење на Gengo." #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 @@ -143,7 +153,7 @@ msgstr "" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "" +msgstr "Да се одобри во Gengo" #. module: base_gengo #: view:res.company:0 @@ -180,14 +190,14 @@ msgstr "Автоматско одобрување на превод?" #: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations #: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations msgid "Gengo: Manual Request of Translation" -msgstr "" +msgstr "Gengo: Рачно барање за превод" #. module: base_gengo #: code:addons/base_gengo/ir_translation.py:62 #: code:addons/base_gengo/wizard/base_gengo_translations.py:109 #, python-format msgid "Gengo Authentication Error" -msgstr "Грешка со автентикација" +msgstr "Грешка Gengo автентикација" #. module: base_gengo #: model:ir.model,name:base_gengo.model_res_company @@ -201,6 +211,9 @@ msgid "" "translation has to be approved to be uploaded in this system. You are " "supposed to do that directly by using your Gengo Account" msgstr "" +"Белешка: Доколку состојбата на преводот е 'Во тек', тоа значи дека преводот " +"треба да биде одобрен за да биде качен во овој систем. Тоа треба да го " +"направите директно со користење на вашата Gengo Сметка" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:82 @@ -209,6 +222,8 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Gengo конекцијата е неуспешна со оваа порака:\n" +"``%s``" #. module: base_gengo #: view:res.company:0 @@ -243,7 +258,7 @@ msgstr "Про" #. module: base_gengo #: view:base.gengo.translations:0 msgid "Gengo Request Form" -msgstr "" +msgstr "Формулар за Gengo барање" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 diff --git a/addons/base_iban/i18n/mk.po b/addons/base_iban/i18n/mk.po index 3062ab9f35c..7a417851a75 100644 --- a/addons/base_iban/i18n/mk.po +++ b/addons/base_iban/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 08:00+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:06+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:33+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -25,14 +26,14 @@ msgid "" "valid payments" msgstr "" "\n" -"Ве молиме дефинирајте BIC/Swift код за банка за IBAN тип на сметка за " -"извршување на плаќања." +"Ве молиме дефинирајте BIC/Swift код на банка за банкарски тип на сметка IBAN " +"за да направите валидни плаќања." #. module: base_iban #: code:addons/base_iban/base_iban.py:141 #, python-format msgid "This IBAN does not pass the validation check, please verify it" -msgstr "IBAN-от не ја поминува проверката за валидност. Проверете го." +msgstr "IBAN-от не ја поминува проверката за валидност. Потврдете го." #. module: base_iban #: model:res.partner.bank.type,format_layout:base_iban.bank_iban @@ -47,7 +48,7 @@ msgstr "bank_bic" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field msgid "zip" -msgstr "zip" +msgstr "Поштенски број" #. module: base_iban #: help:res.partner.bank,iban:0 @@ -81,7 +82,7 @@ msgstr "IBAN" #: code:addons/base_iban/base_iban.py:142 #, python-format msgid "The IBAN is invalid, it should begin with the country code" -msgstr "IBAN-от е невалиде, треба да започнува со кодот на државата" +msgstr "IBAN-от е невалиден, треба да започнува со кодот на државата" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_report_designer/i18n/mk.po b/addons/base_report_designer/i18n/mk.po index bfed85a3281..e6449ba9d46 100644 --- a/addons/base_report_designer/i18n/mk.po +++ b/addons/base_report_designer/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-13 11:42+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:13+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -49,7 +50,7 @@ msgstr "The .SXW извештај" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_designer_installer msgid "base_report_designer.installer" -msgstr "Copy text \t base_report_designer.installer" +msgstr "base_report_designer.installer" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_rml_save diff --git a/addons/base_setup/i18n/mk.po b/addons/base_setup/i18n/mk.po index 657eca71f9d..eef2c3638bc 100644 --- a/addons/base_setup/i18n/mk.po +++ b/addons/base_setup/i18n/mk.po @@ -9,14 +9,14 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-03-04 14:50+0000\n" +"PO-Revision-Date: 2013-03-28 22:14+0000\n" "Last-Translator: Aleksandar Panov \n" "Language-Team: OpenERP Macedonia \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:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -129,7 +129,7 @@ msgstr "Дозволи на корисниците да импортираат #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "Менаџирање на повеќе компании" +msgstr "Управување со повеќе компании" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_setup/i18n/nl.po b/addons/base_setup/i18n/nl.po index acd3a954f93..e9ca4450a34 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/i18n/nl.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:38+0000\n" -"PO-Revision-Date: 2013-03-15 07:31+0000\n" +"PO-Revision-Date: 2013-03-28 11:39+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-03-28 05:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: base_setup @@ -224,7 +224,7 @@ msgid "" " launch the OpenERP Server with the option" msgstr "" "Het publiek portal is alleen toegankelijk als u zich in een enkele database-" -"modus bevind. u kunt\n" +"modus bevind. U kunt\n" " de OpenERP Server starten met de optie" #. module: base_setup @@ -357,9 +357,8 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" -"te doen.\n" -" Eenmaal geactiveerd, zal de login pagina " -"worden vervangen door de openbare website." +"Eenmaal geactiveerd, zal de login pagina worden vervangen door de openbare " +"website." #. module: base_setup #: field:base.config.settings,module_share:0 diff --git a/addons/base_vat/i18n/mk.po b/addons/base_vat/i18n/mk.po index f144540660c..4175f22aacb 100644 --- a/addons/base_vat/i18n/mk.po +++ b/addons/base_vat/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-13 08:07+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:18+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: base_vat #: view:res.partner:0 @@ -58,7 +59,9 @@ msgstr "на пр. BE0477472701" msgid "" "Check this box if the partner is subjected to the VAT. It will be used for " "the VAT legal statement." -msgstr "Штиклирајте доколку партнерот е ДДВ обврзник." +msgstr "" +"Штиклирајте доколку партнерот е ДДВ обврзник. Тоа ќе биде искористено за ДДВ " +"пријавата." #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner @@ -75,4 +78,4 @@ msgstr "" #. module: base_vat #: field:res.partner,vat_subjected:0 msgid "VAT Legal Statement" -msgstr "" +msgstr "ДДВ пријава" diff --git a/addons/claim_from_delivery/i18n/mk.po b/addons/claim_from_delivery/i18n/mk.po index 2a6ad3135f9..863c3f2a44b 100644 --- a/addons/claim_from_delivery/i18n/mk.po +++ b/addons/claim_from_delivery/i18n/mk.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:38+0000\n" -"PO-Revision-Date: 2013-03-07 16:09+0000\n" +"PO-Revision-Date: 2013-03-28 22:21+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: Macedonian \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:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: claim_from_delivery @@ -25,7 +25,7 @@ msgstr "Рекламации" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "Налог за испорака" +msgstr "Испратница" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery diff --git a/addons/contacts/i18n/mk.po b/addons/contacts/i18n/mk.po index 36bfc90afd0..87e6c2d8574 100644 --- a/addons/contacts/i18n/mk.po +++ b/addons/contacts/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-02-27 10:28+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:22+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:34+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -30,9 +31,9 @@ msgid "" " " msgstr "" "

\n" -"Кликни овде за да креираш контакт во вашиот адресар.\n" +"Кликни овде за да креирате контакт во вашиот адресар.\n" "

\n" -"OpenERP помага за лесно следење на активностите поврзани со купувач. " +"OpenERP помага за лесно следење на активностите поврзани со купувач; " "дискусии, историја на бизнис можности, документи, итн.\n" "

\n" " " diff --git a/addons/crm/i18n/es_MX.po b/addons/crm/i18n/es_MX.po index ac53d7016c1..792db148d7a 100644 --- a/addons/crm/i18n/es_MX.po +++ b/addons/crm/i18n/es_MX.po @@ -1,26 +1,26 @@ -# Spanish (Mexico) translation for openobject-addons -# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# Spanish translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2013. +# FIRST AUTHOR , 2012. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:36+0000\n" -"PO-Revision-Date: 2013-03-28 01:06+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Spanish (Mexico) \n" +"PO-Revision-Date: 2013-03-28 08:09+0000\n" +"Last-Translator: Antonio Fregoso \n" +"Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: crm #: view:crm.lead.report:0 msgid "# Leads" -msgstr "" +msgstr "# Iniciativas" #. module: crm #: help:sale.config.settings,fetchmail_lead:0 @@ -28,6 +28,8 @@ msgid "" "Allows you to configure your incoming mail server, and create leads from " "incoming emails." msgstr "" +"Le permite configurar su servidor de correo entrante y crear iniciativas " +"desde los correos entrantes." #. module: crm #: code:addons/crm/crm_lead.py:881 @@ -38,13 +40,13 @@ msgstr "" #: selection:crm.lead.report,type:0 #, python-format msgid "Lead" -msgstr "" +msgstr "Iniciativa" #. module: crm #: view:crm.lead:0 #: field:crm.lead,title:0 msgid "Title" -msgstr "" +msgstr "Título" #. module: crm #: model:ir.actions.server,message:crm.action_email_reminder_lead @@ -55,40 +57,45 @@ msgid "" "Description: [[object.description]]\n" " " msgstr "" +"Advertencia: Una iniciativa entrante está sin procesar más de 5 días.\n" +"Nombre: [[object.name ]]\n" +"ID: [[object.id ]]\n" +"Descripción: [[object.description]]\n" +" " #. module: crm #: field:crm.opportunity2phonecall,action:0 #: field:crm.phonecall2phonecall,action:0 msgid "Action" -msgstr "" +msgstr "Acción" #. module: crm #: model:ir.actions.server,name:crm.action_set_team_sales_department msgid "Set team to Sales Department" -msgstr "" +msgstr "Establecer como equipo al Departamento de ventas" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Select Opportunities" -msgstr "" +msgstr "Seleccionar oportunidades" #. module: crm #: model:res.groups,name:crm.group_fund_raising #: field:sale.config.settings,group_fund_raising:0 msgid "Manage Fund Raising" -msgstr "" +msgstr "Administrar recaudación de fondos" #. module: crm #: view:crm.lead.report:0 #: field:crm.phonecall.report,delay_close:0 msgid "Delay to close" -msgstr "" +msgstr "Demora cierre" #. module: crm #: view:crm.case.stage:0 #: field:crm.case.stage,name:0 msgid "Stage Name" -msgstr "" +msgstr "Nombre de etapa" #. module: crm #: view:crm.lead:0 @@ -96,61 +103,61 @@ msgstr "" #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Salesperson" -msgstr "" +msgstr "Comercial" #. module: crm #: model:ir.model,name:crm.model_crm_lead_report msgid "CRM Lead Analysis" -msgstr "" +msgstr "Análisis Iniciativas CRM" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,day:0 msgid "Day" -msgstr "" +msgstr "Día" #. module: crm #: view:crm.lead:0 msgid "Company Name" -msgstr "" +msgstr "Nombre de la compañía" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor6 msgid "Training" -msgstr "" +msgstr "Formación" #. module: crm #: model:ir.actions.act_window,name:crm.crm_lead_categ_action #: model:ir.ui.menu,name:crm.menu_crm_lead_categ msgid "Sales Tags" -msgstr "" +msgstr "Etiquetas de ventas" #. module: crm #: view:crm.lead.report:0 msgid "Exp. Closing" -msgstr "" +msgstr "Cierre Esperado" #. module: crm #: view:crm.phonecall:0 msgid "Cancel Call" -msgstr "" +msgstr "Cancelar Llamada" #. module: crm #: help:crm.lead.report,creation_day:0 msgid "Creation day" -msgstr "" +msgstr "Fecha creción" #. module: crm #: field:crm.segmentation.line,name:0 msgid "Rule Name" -msgstr "" +msgstr "Nombre de regla" #. module: crm #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "Sólo es posible convertir una llamada telefónica cada vez." #. module: crm #: view:crm.case.resource.type:0 @@ -160,17 +167,17 @@ msgstr "" #: field:crm.lead.report,type_id:0 #: model:ir.model,name:crm.model_crm_case_resource_type msgid "Campaign" -msgstr "" +msgstr "Campaña" #. module: crm #: view:crm.lead:0 msgid "Search Opportunities" -msgstr "" +msgstr "Busqueda de oportunidades" #. module: crm #: help:crm.lead.report,deadline_month:0 msgid "Expected closing month" -msgstr "" +msgstr "Mes esperado de cierre" #. module: crm #: help:crm.case.section,message_summary:0 @@ -180,6 +187,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 "" +"Contiene el resumen del chatter (nº de mensajes, ...). Este resumen viene " +"directamente en formato HTML para poder ser insertado en las vistas kanban." #. module: crm #: code:addons/crm/crm_lead.py:624 @@ -187,7 +196,7 @@ msgstr "" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" -msgstr "" +msgstr "¡Aviso!" #. module: crm #: view:crm.lead:0 @@ -202,86 +211,86 @@ msgstr "" #: model:ir.model,name:crm.model_res_partner #: model:process.node,name:crm.process_node_partner0 msgid "Partner" -msgstr "" +msgstr "Empresa" #. module: crm #: view:crm.phonecall:0 #: model:ir.actions.act_window,name:crm.phonecall_to_phonecall_act msgid "Schedule Other Call" -msgstr "" +msgstr "Planificar otra llamada" #. module: crm #: code:addons/crm/crm_phonecall.py:209 #: view:crm.phonecall:0 #, python-format msgid "Phone Call" -msgstr "" +msgstr "Llamada de telefono" #. module: crm #: field:crm.lead,opt_out:0 msgid "Opt-Out" -msgstr "" +msgstr "No acepta recibir emails" #. module: crm #: view:crm.lead:0 msgid "Opportunities that are assigned to me" -msgstr "" +msgstr "Oportunidades asignadas a mi" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "Nº reuniones" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead msgid "Reminder to User" -msgstr "" +msgstr "Recordatorio al usuario" #. module: crm #: field:crm.segmentation,segmentation_line:0 msgid "Criteria" -msgstr "" +msgstr "Criterios" #. module: crm #: view:crm.lead:0 msgid "Assigned to My Team(s)" -msgstr "" +msgstr "Asignado a mi equipo" #. module: crm #: view:crm.segmentation:0 msgid "Excluded Answers :" -msgstr "" +msgstr "Respuestas excluidas:" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Fusionar oportunidades" #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.action_report_crm_lead #: model:ir.ui.menu,name:crm.menu_report_crm_leads_tree msgid "Leads Analysis" -msgstr "" +msgstr "Análisis de iniciativas" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_resource_type_act #: model:ir.ui.menu,name:crm.menu_crm_case_resource_type_act msgid "Campaigns" -msgstr "" +msgstr "Campañas" #. module: crm #: view:crm.lead:0 #: field:crm.lead,state_id:0 msgid "State" -msgstr "" +msgstr "Estado" #. module: crm #: view:crm.lead:0 #: field:crm.lead,categ_ids:0 #: model:ir.ui.menu,name:crm.menu_crm_case_phonecall-act msgid "Categories" -msgstr "" +msgstr "Categorías" #. module: crm #: help:crm.lead,opt_out:0 @@ -289,22 +298,24 @@ msgid "" "If opt-out is checked, this contact has refused to receive emails or " "unsubscribed to a campaign." msgstr "" +"Si opt-out está marcado, este contacto ha rehusado recibir correos " +"electrónicos o ha eliminado su suscripción a una campaña." #. module: crm #: model:process.transition,name:crm.process_transition_leadpartner0 msgid "Prospect Partner" -msgstr "" +msgstr "Socio prospecto" #. module: crm #: code:addons/crm/crm_lead.py:982 #, python-format msgid "No Subject" -msgstr "" +msgstr "Sin asunto" #. module: crm #: field:crm.lead,contact_name:0 msgid "Contact Name" -msgstr "" +msgstr "Nombre de contacto" #. module: crm #: help:crm.segmentation,categ_id:0 @@ -312,6 +323,8 @@ msgid "" "The partner category that will be added to partners that match the " "segmentation criterions after computation." msgstr "" +"La categoría de empresas que será añadida a las empresas que cumplan los " +"criterios de segmentación después del cálculo." #. module: crm #: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act @@ -326,40 +339,50 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para definir una nueva segmentación de clientes.\n" +"

\n" +"Cree categorías específicas que puede asignar a sus contactos para " +"administrar mejor sus interacciones con ellos. La herramienta de " +"segmentación es capaz de asignar categorías a los contactos de acuerdo a los " +"criterios que establezca.\n" +"

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 #: field:crm.phonecall,partner_id:0 #: field:crm.phonecall2phonecall,contact_name:0 msgid "Contact" -msgstr "" +msgstr "Contacto" #. module: crm #: help:crm.case.section,change_responsible:0 msgid "" "When escalating to this team override the salesman with the team leader." msgstr "" +"Al escalar a este equipo sobreescribir al comercial con el jefe de equipo." #. module: crm #: model:process.transition,name:crm.process_transition_opportunitymeeting0 msgid "Opportunity Meeting" -msgstr "" +msgstr "Oportunidad de Reunión" #. module: crm #: help:crm.lead.report,delay_close:0 #: help:crm.phonecall.report,delay_close:0 msgid "Number of Days to close the case" -msgstr "" +msgstr "Número de días para cerrar el caso" #. module: crm #: model:process.node,note:crm.process_node_opportunities0 msgid "When a real project/opportunity is detected" -msgstr "" +msgstr "Cuando un proyecto/oportunidad real es detectado" #. module: crm #: field:res.partner,opportunity_ids:0 msgid "Leads and Opportunities" -msgstr "" +msgstr "Iniciativas y oportunidades" #. module: crm #: model:ir.actions.act_window,help:crm.relate_partner_opportunities @@ -378,12 +401,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una oportunidad relacionada con este cliente.\n" +"

\n" +"Use las oportunidades para seguir la pista al flujo de sus ventas, seguir " +"una venta potencial y prever mejor sus futuros ingresos.\n" +"

\n" +"Podrá planificar reuniones y llamadas telefónicas desde las oportunidades, " +"convertirlas en ofertas, adjuntar documentos relacionados, rastrear todas " +"las discusiones, y mucho más.\n" +"

\n" +" " #. module: crm #: model:crm.case.stage,name:crm.stage_lead7 #: view:crm.lead:0 msgid "Dead" -msgstr "" +msgstr "Muerta" #. module: crm #: field:crm.case.section,message_unread:0 @@ -391,37 +425,37 @@ msgstr "" #: field:crm.lead,message_unread:0 #: field:crm.phonecall,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Mensajes sin leer" #. module: crm #: view:crm.segmentation:0 #: field:crm.segmentation.line,segmentation_id:0 #: model:ir.actions.act_window,name:crm.crm_segmentation-act msgid "Segmentation" -msgstr "" +msgstr "Segmentación" #. module: crm #: selection:crm.lead2opportunity.partner,action:0 #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Link to an existing customer" -msgstr "" +msgstr "Enlace a cliente existente" #. module: crm #: field:crm.lead,write_date:0 msgid "Update Date" -msgstr "" +msgstr "Actualizar fecha" #. module: crm #: field:crm.case.section,user_id:0 msgid "Team Leader" -msgstr "" +msgstr "Jefe de equipo" #. module: crm #: code:addons/crm/crm_lead.py:1032 #, python-format msgid "%s a call for %s.%s" -msgstr "" +msgstr "%s una llamada para %s.%s" #. module: crm #: help:crm.case.stage,probability:0 @@ -429,6 +463,8 @@ msgid "" "This percentage depicts the default/average probability of the Case for this " "stage to be a success" msgstr "" +"Este porcentaje representa la probabilidad por defecto / media para que los " +"casos de esta etapa sean un éxito." #. module: crm #: view:crm.lead:0 @@ -438,12 +474,12 @@ msgstr "" #: field:crm.phonecall.report,categ_id:0 #: field:crm.phonecall2phonecall,categ_id:0 msgid "Category" -msgstr "" +msgstr "Categoría" #. module: crm #: view:crm.lead.report:0 msgid "#Opportunities" -msgstr "" +msgstr "# Oportunidades" #. module: crm #: code:addons/crm/crm_lead.py:624 @@ -451,11 +487,13 @@ msgstr "" msgid "" "Please select more than one element (lead or opportunity) from the list view." msgstr "" +"Seleccione por favor más de un elemento (iniciativa u oportunidad) desde la " +"vista lista." #. module: crm #: field:crm.lead,partner_address_email:0 msgid "Partner Contact Email" -msgstr "" +msgstr "Email de contacto de la empresa" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_section_act @@ -469,11 +507,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para definir un nuevo equipo de ventas.\n" +"

\n" +"Use los equipos de venta para organizar a los diferentes comerciales o " +"departamentos en equipos separados. Cada equipo trabajará en su propia lista " +"de oportunidades.\n" +"

\n" +" " #. module: crm #: model:process.transition,note:crm.process_transition_opportunitymeeting0 msgid "Normal or phone meeting for opportunity" -msgstr "" +msgstr "Oportunidad de reunion normal ó telefonico." #. module: crm #: field:crm.lead,state:0 @@ -482,72 +528,72 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: crm #: view:crm.lead2opportunity.partner:0 msgid "Create Opportunity" -msgstr "" +msgstr "Crear oportunidad" #. module: crm #: view:sale.config.settings:0 msgid "Configure" -msgstr "" +msgstr "Configurar" #. module: crm #: view:crm.lead:0 msgid "Escalate" -msgstr "" +msgstr "Escalado" #. module: crm #: view:crm.lead:0 msgid "Mailings" -msgstr "" +msgstr "Mailings" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Etapa cambiada" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "June" -msgstr "" +msgstr "Junio" #. module: crm #: selection:crm.segmentation,state:0 msgid "Not Running" -msgstr "" +msgstr "No ejecutado" #. module: crm #: field:crm.lead.report,planned_revenue:0 msgid "Planned Revenue" -msgstr "" +msgstr "Ingresos previstos" #. module: crm #: code:addons/crm/crm_lead.py:970 #, python-format msgid "Customer Email" -msgstr "" +msgstr "Email del Cliente" #. module: crm #: field:crm.lead,planned_revenue:0 msgid "Expected Revenue" -msgstr "" +msgstr "Ingreso estimado" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "October" -msgstr "" +msgstr "Octubre" #. module: crm #: view:crm.segmentation:0 msgid "Included Answers :" -msgstr "" +msgstr "Respuestas incluidas:" #. module: crm #: help:crm.phonecall,state:0 @@ -558,28 +604,32 @@ msgid "" " If the call needs to be done then the status is set " "to 'Not Held'." msgstr "" +"El estado se establece a 'Para hacer', cuando un caso es creado. Si el caso " +"está en progreso el estado se establece a 'Abierto'. Cuando la llamada " +"finaliza, el estado se establece a 'Realizada'. si la llamada requiere ser " +"realizada entonces el estado se establece a 'No realizada'" #. module: crm #: field:crm.case.section,message_summary:0 #: field:crm.lead,message_summary:0 #: field:crm.phonecall,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Resumen" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge" -msgstr "" +msgstr "Fusionar" #. module: crm #: view:crm.case.categ:0 msgid "Case Category" -msgstr "" +msgstr "Categoría del caso" #. module: crm #: field:crm.lead,partner_address_name:0 msgid "Partner Contact Name" -msgstr "" +msgstr "Nombre contacto de empresa" #. module: crm #: model:ir.actions.server,subject:crm.action_email_reminder_lead @@ -587,6 +637,8 @@ msgid "" "Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' " "+object.partner_id.name or '']]" msgstr "" +"Recordatorio en iniciativa: [[object.id ]] [[object.partner_id and 'of ' " +"+object.partner_id.name or '']]" #. module: crm #: code:addons/crm/crm_lead.py:745 @@ -595,33 +647,36 @@ msgid "" "No customer name defined. Please fill one of the following fields: Company " "Name, Contact Name or Email (\"Name \")" msgstr "" +"No hay nombre del cliente definido. Por favor llene uno de los siguientes " +"campos: Nombre de Empresa, Nombre del contacto o Email (\"Nombre " +"\")" #. module: crm #: view:crm.segmentation:0 msgid "Profiling Options" -msgstr "" +msgstr "Opciones de perfiles" #. module: crm #: view:crm.phonecall.report:0 msgid "#Phone calls" -msgstr "" +msgstr "#Llamadas telefónicas" #. module: crm #: sql_constraint:crm.case.section:0 msgid "The code of the sales team must be unique !" -msgstr "" +msgstr "¡El código del equipo de ventas debe ser único!" #. module: crm #: help:crm.lead,email_from:0 msgid "Email address of the contact" -msgstr "" +msgstr "Dirección de email del contacto" #. module: crm #: selection:crm.case.stage,state:0 #: view:crm.lead:0 #: selection:crm.lead,state:0 msgid "In Progress" -msgstr "" +msgstr "En Proceso" #. module: crm #: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action @@ -635,6 +690,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para añadir una nueva categoría.\n" +"

\n" +"Cree categorías específicas de llamadas telefónicas para definir mejor el " +"tipo de llamadas registradas en el sistema.\n" +"

\n" +" " #. module: crm #: help:crm.case.section,reply_to:0 @@ -642,79 +704,82 @@ msgid "" "The email address put in the 'Reply-To' of all emails sent by OpenERP about " "cases in this sales team" msgstr "" +"La dirección de correo electrónico usada como \"Responder a\" de todos los " +"correos electrónicos enviados por OpenERP para los casos de este equipo de " +"ventas." #. module: crm #: field:crm.lead.report,creation_month:0 msgid "Creation Month" -msgstr "" +msgstr "Mes de creación" #. module: crm #: field:crm.case.section,resource_calendar_id:0 #: model:ir.ui.menu,name:crm.menu_action_resource_calendar_form msgid "Working Time" -msgstr "" +msgstr "Horario de trabajo" #. module: crm #: view:crm.segmentation.line:0 msgid "Partner Segmentation Lines" -msgstr "" +msgstr "Líneas de segmentación de empresa" #. module: crm #: model:ir.actions.act_window,name:crm.action_report_crm_phonecall #: model:ir.ui.menu,name:crm.menu_report_crm_phonecalls_tree msgid "Phone Calls Analysis" -msgstr "" +msgstr "Análisis de llamadas" #. module: crm #: view:crm.lead:0 msgid "Leads Form" -msgstr "" +msgstr "Formulario de iniciativas" #. module: crm #: view:crm.segmentation:0 #: model:ir.model,name:crm.model_crm_segmentation msgid "Partner Segmentation" -msgstr "" +msgstr "Segmentación de empresa" #. module: crm #: field:crm.lead,company_currency:0 msgid "Currency" -msgstr "" +msgstr "Moneda" #. module: crm #: field:crm.lead.report,probable_revenue:0 msgid "Probable Revenue" -msgstr "" +msgstr "Ingreso estimado" #. module: crm #: help:crm.lead.report,creation_month:0 msgid "Creation month" -msgstr "" +msgstr "Mes de creación" #. module: crm #: help:crm.segmentation,name:0 msgid "The name of the segmentation." -msgstr "" +msgstr "El nombre de la segmentación." #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +msgstr "Iniciativas de EEUU" #. module: crm #: sql_constraint:crm.lead:0 msgid "The probability of closing the deal should be between 0% and 100%!" -msgstr "" +msgstr "¡La probabilidad de cierre debería estar entre 0% y 100%!" #. module: crm #: view:crm.lead:0 msgid "Leads Generation" -msgstr "" +msgstr "Generación de iniciativas" #. module: crm #: view:board.board:0 msgid "Statistics Dashboard" -msgstr "" +msgstr "Tablero de estadísticas" #. module: crm #: code:addons/crm/crm_lead.py:861 @@ -728,69 +793,71 @@ msgstr "" #: field:res.partner,opportunity_count:0 #, python-format msgid "Opportunity" -msgstr "" +msgstr "Oportunidad" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead7 msgid "Television" -msgstr "" +msgstr "Televisión" #. module: crm #: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert msgid "Convert to opportunities" -msgstr "" +msgstr "Convertir a oportunidad" #. module: crm #: model:ir.model,name:crm.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: crm #: view:crm.segmentation:0 msgid "Stop Process" -msgstr "" +msgstr "Parar el proceso" #. module: crm #: field:crm.case.section,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alias" #. module: crm #: view:crm.phonecall:0 msgid "Search Phonecalls" -msgstr "" +msgstr "Buscar llamadas" #. module: crm #: view:crm.lead.report:0 msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" msgstr "" +"Iniciativas/Oportunidades que están asignadas a uno de los equipos de venta " +"que gestiono" #. module: crm #: field:crm.segmentation.line,expr_value:0 msgid "Value" -msgstr "" +msgstr "Valor" #. module: crm #: field:calendar.attendee,categ_id:0 msgid "Event Type" -msgstr "" +msgstr "Tipo de evento" #. module: crm #: field:crm.segmentation,exclusif:0 msgid "Exclusive" -msgstr "" +msgstr "Exclusivo" #. module: crm #: code:addons/crm/crm_lead.py:584 #, python-format msgid "From %s : %s" -msgstr "" +msgstr "De %s : %s" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Convert to Opportunities" -msgstr "" +msgstr "Convertir a oportunidad" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -799,18 +866,18 @@ msgstr "" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "or" -msgstr "" +msgstr "o" #. module: crm #: field:crm.lead.report,create_date:0 #: field:crm.phonecall.report,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Fecha creación" #. module: crm #: field:crm.lead,ref2:0 msgid "Reference 2" -msgstr "" +msgstr "Referencia 2" #. module: crm #: help:crm.case.stage,section_ids:0 @@ -818,22 +885,24 @@ msgid "" "Link between stages and sales teams. When set, this limitate the current " "stage to the selected sales teams." msgstr "" +"Enlace entre etapas y equipos de ventas. Cuando se asigna, las etapas están " +"limitadas al equipo de venta seleccionado." #. module: crm #: view:crm.case.stage:0 #: field:crm.case.stage,requirements:0 msgid "Requirements" -msgstr "" +msgstr "Requerimientos" #. module: crm #: field:crm.lead,zip:0 msgid "Zip" -msgstr "" +msgstr "Código postal" #. module: crm #: view:crm.phonecall:0 msgid "Unassigned Phonecalls" -msgstr "" +msgstr "Llamadas sin asignar" #. module: crm #: view:crm.lead:0 @@ -846,103 +915,103 @@ msgstr "" #: model:process.node,name:crm.process_node_opportunities0 #: view:res.partner:0 msgid "Opportunities" -msgstr "" +msgstr "Oportunidades" #. module: crm #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "" +msgstr "Categoría de empresa" #. module: crm #: field:crm.lead,probability:0 msgid "Success Rate (%)" -msgstr "" +msgstr "Tasa de éxito (%)" #. module: crm #: field:crm.segmentation,sales_purchase_active:0 msgid "Use The Sales Purchase Rules" -msgstr "" +msgstr "Utiliza las reglas de compra ventas" #. module: crm #: model:crm.case.categ,name:crm.categ_phone2 msgid "Outbound" -msgstr "" +msgstr "Saliente" #. module: crm #: view:crm.lead:0 msgid "Leads that are assigned to me" -msgstr "" +msgstr "Iniciativas asignadas a mi" #. module: crm #: view:crm.lead:0 msgid "Mark Won" -msgstr "" +msgstr "Marcar ganado" #. module: crm #: field:crm.case.stage,probability:0 msgid "Probability (%)" -msgstr "" +msgstr "Probabilidad (%)" #. module: crm #: view:crm.lead:0 msgid "Mark Lost" -msgstr "" +msgstr "Marcar perdido" #. module: crm #: model:ir.filters,name:crm.filter_draft_lead msgid "Draft Leads" -msgstr "" +msgstr "Iniciativas borrador" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "March" -msgstr "" +msgstr "Marzo" #. module: crm #: view:crm.lead:0 msgid "Send Email" -msgstr "" +msgstr "Enviar correo" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 #, python-format msgid "Warning !" -msgstr "" +msgstr "Advertencia !" #. module: crm #: help:crm.case.section,message_unread:0 #: help:crm.lead,message_unread:0 #: help:crm.phonecall,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Si se marca, los nuevos mensajes requieren su atención" #. module: crm #: field:crm.lead,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "Días para abrir" #. module: crm #: view:crm.lead:0 msgid "ZIP" -msgstr "" +msgstr "CP" #. module: crm #: field:crm.lead,mobile:0 #: field:crm.phonecall,partner_mobile:0 msgid "Mobile" -msgstr "" +msgstr "Móvil" #. module: crm #: field:crm.lead,ref:0 msgid "Reference" -msgstr "" +msgstr "Referencia" #. module: crm #: help:crm.case.section,resource_calendar_id:0 msgid "Used to compute open days" -msgstr "" +msgstr "Utilizado para cálculo de días abiertos" #. module: crm #: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_meeting_new @@ -950,47 +1019,47 @@ msgstr "" #: view:res.partner:0 #: field:res.partner,meeting_ids:0 msgid "Meetings" -msgstr "" +msgstr "Reuniones" #. module: crm #: field:crm.lead,date_action_next:0 #: field:crm.lead,title_action:0 #: field:crm.phonecall,date_action_next:0 msgid "Next Action" -msgstr "" +msgstr "Acción siguiente" #. module: crm #: code:addons/crm/crm_lead.py:763 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "Empresa establecida a %s." #. module: crm #: selection:crm.lead.report,state:0 #: selection:crm.phonecall,state:0 #: selection:crm.phonecall.report,state:0 msgid "Draft" -msgstr "" +msgstr "Borrador" #. module: crm #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "" +msgstr "Segmentaciones de empresa" #. module: crm #: view:crm.lead.report:0 msgid "Show only opportunity" -msgstr "" +msgstr "Mostrar únicamente oportunidades" #. module: crm #: field:crm.lead,name:0 msgid "Subject" -msgstr "" +msgstr "Asunto" #. module: crm #: view:crm.lead:0 msgid "Show Sales Team" -msgstr "" +msgstr "Mostrar equipo de ventas" #. module: crm #: help:sale.config.settings,module_crm_claim:0 @@ -998,22 +1067,24 @@ msgid "" "Allows you to track your customers/suppliers claims and grievances.\n" " This installs the module crm_claim." msgstr "" +"Le permite rastrear las reclamaciones y quejas de sus clientes/proveedores.\n" +"Esto instalará el módulo 'crm_claim'." #. module: crm #: model:crm.case.stage,name:crm.stage_lead6 #: view:crm.lead:0 msgid "Won" -msgstr "" +msgstr "Ganado" #. module: crm #: field:crm.lead.report,delay_expected:0 msgid "Overpassed Deadline" -msgstr "" +msgstr "Fecha límite sobrepasada" #. module: crm #: model:crm.case.section,name:crm.section_sales_department msgid "Sales Department" -msgstr "" +msgstr "Departamento de ventas" #. module: crm #: field:crm.case.stage,type:0 @@ -1021,12 +1092,12 @@ msgstr "" #: field:crm.lead.report,type:0 #: view:crm.opportunity2phonecall:0 msgid "Type" -msgstr "" +msgstr "Tipo" #. module: crm #: view:crm.segmentation:0 msgid "Compute Segmentation" -msgstr "" +msgstr "Calcular la segmentación" #. module: crm #: selection:crm.lead,priority:0 @@ -1034,7 +1105,7 @@ msgstr "" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Lowest" -msgstr "" +msgstr "Muy bajo" #. module: crm #: field:crm.lead,create_date:0 @@ -1042,28 +1113,28 @@ msgstr "" #: field:crm.phonecall,create_date:0 #: field:crm.phonecall.report,creation_date:0 msgid "Creation Date" -msgstr "" +msgstr "Fecha creación" #. module: crm #: code:addons/crm/crm_lead.py:698 #, python-format msgid "Lead converted into an Opportunity" -msgstr "" +msgstr "Iniciativa convertida a oportunidad" #. module: crm #: selection:crm.segmentation.line,expr_name:0 msgid "Purchase Amount" -msgstr "" +msgstr "Importe de compra" #. module: crm #: view:crm.phonecall.report:0 msgid "Year of call" -msgstr "" +msgstr "Año de la llamada" #. module: crm #: view:crm.lead:0 msgid "Open Leads" -msgstr "" +msgstr "Iniciativas abiertas" #. module: crm #: view:crm.case.stage:0 @@ -1072,27 +1143,27 @@ msgstr "" #: view:crm.lead.report:0 #: field:crm.lead.report,stage_id:0 msgid "Stage" -msgstr "" +msgstr "Etapa" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone Calls that are assigned to me" -msgstr "" +msgstr "Llamadas que están asignadas a mí" #. module: crm #: field:crm.lead,user_login:0 msgid "User Login" -msgstr "" +msgstr "Nombre de usuario" #. module: crm #: view:crm.lead:0 msgid "No salesperson" -msgstr "" +msgstr "No vendedor" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in pending state" -msgstr "" +msgstr "Llamadas con estado pendiente" #. module: crm #: view:crm.case.section:0 @@ -1102,7 +1173,7 @@ msgstr "" #: model:ir.actions.act_window,name:crm.crm_lead_stage_act #: model:ir.ui.menu,name:crm.menu_crm_lead_stage_act msgid "Stages" -msgstr "" +msgstr "Etapas" #. module: crm #: help:sale.config.settings,module_crm_helpdesk:0 @@ -1110,33 +1181,35 @@ msgid "" "Allows you to communicate with Customer, process Customer query, and " "provide better help and support. This installs the module crm_helpdesk." msgstr "" +"Le permite comunicarse conel cliente, procesar solicitud del cliente y " +"proveer mejor ayuda y servicio. Instala el módulo crm_helpdesk." #. module: crm #: view:crm.lead:0 msgid "Delete" -msgstr "" +msgstr "Borrar" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_create msgid "Opportunity created" -msgstr "" +msgstr "Oportunidad creada" #. module: crm #: view:crm.lead:0 msgid "í" -msgstr "" +msgstr "í" #. module: crm #: view:crm.phonecall:0 msgid "Description..." -msgstr "" +msgstr "Descripción" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "September" -msgstr "" +msgstr "Setiembre" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_oppor11 @@ -1153,11 +1226,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una nueva oportunidad.\n" +"

\n" +"OpenERP le ayuda a gestionar el flujo de ventas para seguir ventas " +"potenciales y prever mejor sus futuros ingresos.\n" +"

\n" +"Será capaz de planificar reuniones y llamadas telefónicas desde las " +"oportunidades, convertirlas en presupuestos, adjuntar documentos " +"relacionados, seguir todas las discusiones, y mucho más.\n" +"

\n" +" " #. module: crm #: field:crm.segmentation,partner_id:0 msgid "Max Partner ID processed" -msgstr "" +msgstr "Máx ID de empresa procesado" #. module: crm #: help:crm.case.stage,on_change:0 @@ -1165,37 +1249,39 @@ msgid "" "Setting this stage will change the probability automatically on the " "opportunity." msgstr "" +"Cambiando a esta etapa cambiará automáticamente la probabilidad de la " +"oportunidad." #. module: crm #: view:crm.lead:0 msgid "oe_kanban_text_red" -msgstr "" +msgstr "oe_kanban_text_red" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act msgid "Payment Modes" -msgstr "" +msgstr "Formas de pago" #. module: crm #: field:crm.lead.report,opening_date:0 #: field:crm.phonecall.report,opening_date:0 msgid "Opening Date" -msgstr "" +msgstr "Fecha de apertura" #. module: crm #: help:crm.phonecall,duration:0 msgid "Duration in Minutes" -msgstr "" +msgstr "Duración en minutos" #. module: crm #: field:crm.case.channel,name:0 msgid "Channel Name" -msgstr "" +msgstr "Nombre del canal" #. module: crm #: help:crm.lead.report,deadline_day:0 msgid "Expected closing day" -msgstr "" +msgstr "Fecha de cierre prevista" #. module: crm #: help:crm.case.section,active:0 @@ -1203,6 +1289,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the sales team " "without removing it." msgstr "" +"Si el campo activo se marca, permite ocultar el equipo de ventas sin " +"eliminarlo." #. module: crm #: help:crm.case.stage,case_default:0 @@ -1210,6 +1298,8 @@ msgid "" "If you check this field, this stage will be proposed by default on each " "sales team. It will not assign this stage to existing teams." msgstr "" +"SI selecciona este campo, esta etapa será propuesta por defecto a cada " +"equipo de ventas. No asignará esta etapa a equipos existentes." #. module: crm #: help:crm.case.stage,type:0 @@ -1217,12 +1307,15 @@ msgid "" "This field is used to distinguish stages related to Leads from stages " "related to Opportunities, or to specify stages available for both types." msgstr "" +"Este campo se utiliza para diferenciar etapas relacionadas con iniciativas " +"de etapas relacionadas con oportunidades, o para especificar etapas " +"disponibles para ambos tipos." #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_create #: model:mail.message.subtype,name:crm.mt_salesteam_lead msgid "Lead Created" -msgstr "" +msgstr "Iniciativa creada" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1230,33 +1323,35 @@ msgid "" "Check if you want to use this tab as part of the segmentation rule. If not " "checked, the criteria beneath will be ignored" msgstr "" +"Márquela si quiere utilizar esta pestaña como parte de la regla de " +"segmentación. Si no se marca, los criterios que contenga serán ignorados" #. module: crm #: field:crm.segmentation,state:0 msgid "Execution Status" -msgstr "" +msgstr "Estado ejecución" #. module: crm #: view:crm.opportunity2phonecall:0 msgid "Log call" -msgstr "" +msgstr "Registrar llamada" #. module: crm #: field:crm.lead,day_close:0 msgid "Days to Close" -msgstr "" +msgstr "Días para el cierre" #. module: crm #: field:crm.case.section,complete_name:0 msgid "unknown" -msgstr "" +msgstr "desconocido" #. module: crm #: field:crm.case.section,message_is_follower:0 #: field:crm.lead,message_is_follower:0 #: field:crm.phonecall,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Es un seguidor." #. module: crm #: field:crm.opportunity2phonecall,date:0 @@ -1264,28 +1359,28 @@ msgstr "" #: field:crm.phonecall,date:0 #: field:crm.phonecall2phonecall,date:0 msgid "Date" -msgstr "" +msgstr "Fecha" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_4 msgid "Online Support" -msgstr "" +msgstr "Soporte en línea" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Filtros extendidos..." #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in closed state" -msgstr "" +msgstr "Llamadas en estado cerrado" #. module: crm #: view:crm.phonecall.report:0 msgid "Search" -msgstr "" +msgstr "Buscar" #. module: crm #: help:crm.lead,state:0 @@ -1295,23 +1390,29 @@ msgid "" "set to 'Done'. If the case needs to be reviewed then the Status is set to " "'Pending'." msgstr "" +"El estado se establece a 'Borrador', cuando un caso es creado. Si el caso " +"está en progreso el estado se establece 'Abierto'. Cuando el caso finaliza, " +"el estado se establece a 'Realizado'. Si el caso necesita ser revisado " +"entonces el estado se establece a 'Pendiente'." #. module: crm #: model:crm.case.section,name:crm.crm_case_section_1 msgid "Sales Marketing Department" -msgstr "" +msgstr "Departamento de ventas y marketing" #. module: crm #: code:addons/crm/crm_lead.py:569 #, python-format msgid "Merged lead" -msgstr "" +msgstr "Iniciativafusionada" #. module: crm #: help:crm.lead,section_id:0 msgid "" "When sending mails, the default email address is taken from the sales team." msgstr "" +"Cunado se envían emails, la dirección de email por defecto proviene del " +"equipo de ventas" #. module: crm #: view:crm.phonecall:0 @@ -1319,52 +1420,54 @@ msgid "" "Phone Calls Assigned to the current user or with a team having the current " "user as team leader" msgstr "" +"Llamadas telefónicas asignadas al usuario actual o con un equipo que tiene " +"al usuario actual como líder del equipo" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Description" -msgstr "" +msgstr "Descripción de segmentación" #. module: crm #: code:addons/crm/crm_lead.py:565 #, python-format msgid "Merged opportunities" -msgstr "" +msgstr "Oportunidades fusionadas" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor7 msgid "Consulting" -msgstr "" +msgstr "Consultoría" #. module: crm #: field:crm.case.section,code:0 msgid "Code" -msgstr "" +msgstr "Código" #. module: crm #: view:sale.config.settings:0 msgid "Features" -msgstr "" +msgstr "Características" #. module: crm #: field:crm.case.section,child_ids:0 msgid "Child Teams" -msgstr "" +msgstr "Equipos hijos" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in draft and open state" -msgstr "" +msgstr "Llamadas que están en estado borrador o abierto" #. module: crm #: field:crm.lead2opportunity.partner.mass,user_ids:0 msgid "Salesmen" -msgstr "" +msgstr "Vendedores" #. module: crm #: view:crm.lead:0 msgid "References" -msgstr "" +msgstr "Referencias" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -1374,103 +1477,105 @@ msgstr "" #: view:crm.phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor4 msgid "Information" -msgstr "" +msgstr "Información" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in pending state" -msgstr "" +msgstr "Iniciativas/Oportunidades que están en estado pendiente" #. module: crm #: view:crm.phonecall:0 msgid "To Do" -msgstr "" +msgstr "Por hacer" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_lost msgid "Opportunity lost" -msgstr "" +msgstr "Oportunidad perdida" #. module: crm #: field:crm.lead2opportunity.partner,action:0 #: field:crm.lead2opportunity.partner.mass,action:0 #: field:crm.partner.binding,action:0 msgid "Related Customer" -msgstr "" +msgstr "Cliente relacionado" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor8 msgid "Other" -msgstr "" +msgstr "Otro" #. module: crm #: field:crm.phonecall,opportunity_id:0 #: model:ir.model,name:crm.model_crm_lead msgid "Lead/Opportunity" -msgstr "" +msgstr "Inicaitiva / Oportunbidad" #. module: crm #: model:ir.actions.act_window,name:crm.action_merge_opportunities #: model:ir.actions.act_window,name:crm.merge_opportunity_act msgid "Merge leads/opportunities" -msgstr "" +msgstr "Fusionar iniciativas/oportunidades" #. module: crm #: help:crm.case.stage,sequence:0 msgid "Used to order stages. Lower is better." -msgstr "" +msgstr "Utilizado para ordenar etapas. Bajo es más prioritario." #. module: crm #: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action msgid "Phonecall Categories" -msgstr "" +msgstr "Categorías de llamadas" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in open state" -msgstr "" +msgstr "Iniciativas/Oportunidades que están en estado abierto" #. module: crm #: view:crm.lead:0 msgid "Opportunities that are assigned to any sales teams I am member of" msgstr "" +"Oportunidades que son asignadas a a cualquier equipo de ventas del que sea " +"miembro" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage msgid "Stage Changed" -msgstr "" +msgstr "Etapa cambiada" #. module: crm #: field:crm.case.stage,section_ids:0 msgid "Sections" -msgstr "" +msgstr "Secciones" #. module: crm #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive Sales team." -msgstr "" +msgstr "¡Error! No puede crear equipos de ventas recursivos." #. module: crm #: selection:crm.opportunity2phonecall,action:0 #: selection:crm.phonecall2phonecall,action:0 msgid "Log a call" -msgstr "" +msgstr "Registrar una llamada" #. module: crm #: selection:crm.segmentation.line,expr_name:0 msgid "Sale Amount" -msgstr "" +msgstr "Importe de venta" #. module: crm #: view:crm.phonecall.report:0 #: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_phonecall_new msgid "Phone calls" -msgstr "" +msgstr "Llamadas telefónicas" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_opportunity @@ -1481,46 +1586,51 @@ msgid "" "mainly used by the sales manager in order to do the periodic review with the " "teams of the sales pipeline." msgstr "" +"El análisis de oportunidades le da acceso instantáneo a sus oportunidades " +"con información como el ingreso previsto, coste planeado, fechas límite " +"incumplidas o el número de interacciones por oportunidad. Este informe lo " +"utiliza principalmente el responsable de ventas para hacer una revisión " +"periódica del proceso de ventas con los equipos." #. module: crm #: field:crm.case.categ,name:0 #: field:crm.payment.mode,name:0 #: field:crm.segmentation,name:0 msgid "Name" -msgstr "" +msgstr "Nombre" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities that are assigned to me" -msgstr "" +msgstr "Iniciativas/Oportunidades que están asignadas a mí." #. module: crm #: view:crm.lead.report:0 msgid "My Case(s)" -msgstr "" +msgstr "Mi(s) caso(s)" #. module: crm #: help:crm.case.section,message_ids:0 #: help:crm.lead,message_ids:0 #: help:crm.phonecall,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Mensajes e historial de comunicación" #. module: crm #: view:crm.lead:0 msgid "Show Countries" -msgstr "" +msgstr "Mostrar países" #. module: crm #: view:crm.phonecall.report:0 msgid "Date of call" -msgstr "" +msgstr "Fecha de la llamada" #. module: crm #: view:crm.lead:0 #: view:crm.phonecall:0 msgid "Creation" -msgstr "" +msgstr "Creación" #. module: crm #: selection:crm.lead,priority:0 @@ -1528,27 +1638,27 @@ msgstr "" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "High" -msgstr "" +msgstr "Alto" #. module: crm #: model:process.node,note:crm.process_node_partner0 msgid "Convert to prospect to business partner" -msgstr "" +msgstr "Convertir prospección a empresa" #. module: crm #: model:ir.model,name:crm.model_crm_payment_mode msgid "CRM Payment Mode" -msgstr "" +msgstr "CRM Forma de pago" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in done state" -msgstr "" +msgstr "Iniciativas / Oportunidades que están en el estado realizado" #. module: crm #: field:crm.lead.report,delay_close:0 msgid "Delay to Close" -msgstr "" +msgstr "Tiempo restante para el cierre" #. module: crm #: view:crm.lead:0 @@ -1556,7 +1666,7 @@ msgstr "" #: view:crm.phonecall:0 #: view:crm.phonecall.report:0 msgid "Group By..." -msgstr "" +msgstr "Agrupar por..." #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail @@ -1566,24 +1676,24 @@ msgstr "" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge Leads/Opportunities" -msgstr "" +msgstr "Fusionar iniciativas/oportunidades" #. module: crm #: field:crm.case.section,parent_id:0 msgid "Parent Team" -msgstr "" +msgstr "Equipo padre" #. module: crm #: selection:crm.lead2opportunity.partner,action:0 #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Do not link to a customer" -msgstr "" +msgstr "No enlazar a un cliente" #. module: crm #: field:crm.lead,date_action:0 msgid "Next Action Date" -msgstr "" +msgstr "Fecha de la próxima acción" #. module: crm #: help:crm.case.stage,state:0 @@ -1592,37 +1702,41 @@ msgid "" "stage. For example, if a stage is related to the status 'Close', when your " "document reaches this stage, it is automatically closed." msgstr "" +"El estado de su documento cambiará automáticamente en función de la etapa " +"seleccionada. Por ejemplo, si una etapa está relacionada con el estado " +"'Cerrado', cuando su documento llegue a este estado, se cierra " +"automáticamente." #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Assign opportunities to" -msgstr "" +msgstr "Asignar oportunidades a" #. module: crm #: model:crm.case.categ,name:crm.categ_phone1 msgid "Inbound" -msgstr "" +msgstr "Entrante" #. module: crm #: view:crm.phonecall.report:0 msgid "Month of call" -msgstr "" +msgstr "Mes de la llamada" #. module: crm #: view:crm.lead:0 msgid "Describe the lead..." -msgstr "" +msgstr "Describe la iniciativa..." #. module: crm #: code:addons/crm/crm_phonecall.py:290 #, python-format msgid "Partner has been created." -msgstr "" +msgstr "El cliente ha sido creado." #. module: crm #: field:sale.config.settings,module_crm_claim:0 msgid "Manage Customer Claims" -msgstr "" +msgstr "Gestionar reclamaciones de clientes" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_lead @@ -1631,11 +1745,15 @@ msgid "" "the treatment delays or number of leads per state. You can sort out your " "leads analysis by different groups to get accurate grained analysis." msgstr "" +"El análisis de iniciativas le permite verificar diferente información " +"referente a CRM como el tratamiento de retrasos o el número de iniciativas " +"por estado. Puede ordenar sus iniciativas por diferentes grupos para tener " +"un análisis" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor3 msgid "Services" -msgstr "" +msgstr "Servicios" #. module: crm #: selection:crm.lead,priority:0 @@ -1643,48 +1761,48 @@ msgstr "" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Highest" -msgstr "" +msgstr "Muy alto" #. module: crm #: help:crm.lead.report,creation_year:0 msgid "Creation year" -msgstr "" +msgstr "Año de creación" #. module: crm #: view:crm.case.section:0 #: field:crm.lead,description:0 msgid "Notes" -msgstr "" +msgstr "Notas" #. module: crm #: view:crm.opportunity2phonecall:0 msgid "Call Description" -msgstr "" +msgstr "Descripción de llamada" #. module: crm #: field:crm.lead,partner_name:0 msgid "Customer Name" -msgstr "" +msgstr "Nombre del cliente" #. module: crm #: field:crm.case.section,reply_to:0 msgid "Reply-To" -msgstr "" +msgstr "Responder a" #. module: crm #: view:crm.lead:0 msgid "Display" -msgstr "" +msgstr "Mostrar" #. module: crm #: view:board.board:0 msgid "Opportunities by Stage" -msgstr "" +msgstr "Oportunidades por etapa" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 msgid "Prospect is converting to business partner" -msgstr "" +msgstr "El prospecto se convierte a partner" #. module: crm #: view:crm.case.channel:0 @@ -1692,7 +1810,7 @@ msgstr "" #: model:ir.model,name:crm.model_crm_case_channel #: model:ir.ui.menu,name:crm.menu_crm_case_channel msgid "Channels" -msgstr "" +msgstr "Canales" #. module: crm #: view:crm.phonecall:0 @@ -1700,32 +1818,32 @@ msgstr "" #: view:crm.phonecall.report:0 #: selection:crm.phonecall.report,state:0 msgid "Held" -msgstr "" +msgstr "Realizada" #. module: crm #: view:crm.lead:0 msgid "Extra Info" -msgstr "" +msgstr "Información extra" #. module: crm #: view:crm.lead:0 msgid "Fund Raising" -msgstr "" +msgstr "Recaudación de fondos" #. module: crm #: view:crm.lead:0 msgid "Edit..." -msgstr "" +msgstr "Editar…" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead5 msgid "Google Adwords" -msgstr "" +msgstr "Google Adwords" #. module: crm #: view:crm.case.section:0 msgid "Select Stages for this Sales Team" -msgstr "" +msgstr "Seleccione etapas para este equipo de ventas" #. module: crm #: view:crm.lead:0 @@ -1736,145 +1854,146 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,priority:0 msgid "Priority" -msgstr "" +msgstr "Prioridad" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner msgid "Lead To Opportunity Partner" -msgstr "" +msgstr "Iniciativa a Oportunidad" #. module: crm #: help:crm.lead,partner_id:0 msgid "Linked partner (optional). Usually created when converting the lead." msgstr "" +"Empresa asociada(opcional). Usualmente es creado al convertir la iniciativa." #. module: crm #: field:crm.lead,payment_mode:0 #: view:crm.payment.mode:0 #: model:ir.actions.act_window,name:crm.action_crm_payment_mode msgid "Payment Mode" -msgstr "" +msgstr "Modo de pago" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner_mass msgid "Mass Lead To Opportunity Partner" -msgstr "" +msgstr "Transformación masiva de iniciativa a oportunidad" #. module: crm #: view:sale.config.settings:0 msgid "On Mail Server" -msgstr "" +msgstr "En servidor de mail" #. module: crm #: model:ir.actions.act_window,name:crm.open_board_statistical_dash #: model:ir.ui.menu,name:crm.menu_board_statistics_dash msgid "CRM" -msgstr "" +msgstr "CRM" #. module: crm #: model:ir.actions.act_window,name:crm.crm_segmentation_tree-act #: model:ir.ui.menu,name:crm.menu_crm_segmentation-act msgid "Contacts Segmentation" -msgstr "" +msgstr "Segmentación de contactos" #. module: crm #: model:process.node,note:crm.process_node_meeting0 msgid "Schedule a normal or phone meeting" -msgstr "" +msgstr "Programar una reunión normal o telefónica" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead1 msgid "Telesales" -msgstr "" +msgstr "Ventas a distancia" #. module: crm #: model:ir.model,name:crm.model_crm_segmentation_line msgid "Segmentation line" -msgstr "" +msgstr "Línea de segmentación" #. module: crm #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Planned Date" -msgstr "" +msgstr "Fecha prevista" #. module: crm #: view:crm.lead:0 msgid "Expected Revenues" -msgstr "" +msgstr "Ingresos esperados" #. module: crm #: view:crm.lead:0 msgid "Referrer" -msgstr "" +msgstr "Referenciado por" #. module: crm #: help:crm.lead,type:0 #: help:crm.lead.report,type:0 msgid "Type is used to separate Leads and Opportunities" -msgstr "" +msgstr "El tipo es utilizado para separar iniciativas y oportunidades" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "July" -msgstr "" +msgstr "Julio" #. module: crm #: view:crm.lead:0 msgid "Lead / Customer" -msgstr "" +msgstr "Iniciativa / Cliente" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_2 msgid "Support Department" -msgstr "" +msgstr "Departamento de soporte" #. module: crm #: view:crm.lead.report:0 msgid "Show only lead" -msgstr "" +msgstr "Mostrar solo iniciativas" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act #: model:ir.model,name:crm.model_crm_case_section #: model:ir.ui.menu,name:crm.menu_crm_case_section_act msgid "Sales Teams" -msgstr "" +msgstr "Equipos de ventas" #. module: crm #: field:crm.case.stage,case_default:0 msgid "Default to New Sales Team" -msgstr "" +msgstr "Por defecto a un nuevo equipo de ventas" #. module: crm #: view:crm.lead:0 msgid "Team" -msgstr "" +msgstr "Equipo" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in New state" -msgstr "" +msgstr "Iniciativas / oportunidades que están en estado nuveo" #. module: crm #: selection:crm.phonecall,state:0 #: view:crm.phonecall.report:0 msgid "Not Held" -msgstr "" +msgstr "Pendiente" #. module: crm #: field:crm.lead.report,probability:0 msgid "Probability" -msgstr "" +msgstr "Probabilidad" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,month:0 msgid "Month" -msgstr "" +msgstr "Mes" #. module: crm #: view:crm.lead:0 @@ -1882,41 +2001,41 @@ msgstr "" #: model:ir.ui.menu,name:crm.menu_crm_leads #: model:process.node,name:crm.process_node_leads0 msgid "Leads" -msgstr "" +msgstr "Iniciativas" #. module: crm #: code:addons/crm/crm_lead.py:563 #, python-format msgid "Merged leads" -msgstr "" +msgstr "Combinar iniciativas" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 msgid "Design" -msgstr "" +msgstr "Diseño" #. module: crm #: selection:crm.lead2opportunity.partner,name:0 #: selection:crm.lead2opportunity.partner.mass,name:0 msgid "Merge with existing opportunities" -msgstr "" +msgstr "Fusionar con oportunidad existente" #. module: crm #: view:crm.phonecall.report:0 #: selection:crm.phonecall.report,state:0 msgid "Todo" -msgstr "" +msgstr "Por hacer" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_convert_to_opportunity #: model:mail.message.subtype,name:crm.mt_salesteam_lead_opportunity msgid "Lead to Opportunity" -msgstr "" +msgstr "Iniciativa a oportunidad" #. module: crm #: field:crm.lead,user_email:0 msgid "User Email" -msgstr "" +msgstr "Email del usuario" #. module: crm #: help:crm.lead,partner_name:0 @@ -1924,12 +2043,14 @@ msgid "" "The name of the future partner company that will be created while converting " "the lead into opportunity" msgstr "" +"El nombre de compañía de la futura empresa será creado al convertir la " +"iniciativa en oportunidad." #. module: crm #: field:crm.opportunity2phonecall,note:0 #: field:crm.phonecall2phonecall,note:0 msgid "Note" -msgstr "" +msgstr "Nota" #. module: crm #: selection:crm.lead,priority:0 @@ -1937,7 +2058,7 @@ msgstr "" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Low" -msgstr "" +msgstr "Bajo" #. module: crm #: selection:crm.case.stage,state:0 @@ -1947,17 +2068,17 @@ msgstr "" #: selection:crm.lead.report,state:0 #: field:crm.phonecall,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Cerrado" #. module: crm #: view:crm.lead:0 msgid "Open Opportunities" -msgstr "" +msgstr "Oportunidades abiertas" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead2 msgid "Email Campaign - Services" -msgstr "" +msgstr "Email campaña - servicios" #. module: crm #: selection:crm.case.stage,state:0 @@ -1966,22 +2087,22 @@ msgstr "" #: selection:crm.lead.report,state:0 #: selection:crm.phonecall.report,state:0 msgid "Pending" -msgstr "" +msgstr "Pendiente" #. module: crm #: view:crm.lead:0 msgid "Assigned to Me" -msgstr "" +msgstr "Asignada a mi" #. module: crm #: model:process.transition,name:crm.process_transition_leadopportunity0 msgid "Prospect Opportunity" -msgstr "" +msgstr "Oportunidad de prospección" #. module: crm #: field:crm.lead,email_cc:0 msgid "Global CC" -msgstr "" +msgstr "CC Global" #. module: crm #: view:crm.lead:0 @@ -1990,18 +2111,18 @@ msgstr "" #: model:ir.ui.menu,name:crm.menu_crm_case_phone #: model:ir.ui.menu,name:crm.menu_crm_config_phonecall msgid "Phone Calls" -msgstr "" +msgstr "Llamadas telefónicas" #. module: crm #: view:crm.case.stage:0 msgid "Stage Search" -msgstr "" +msgstr "Búsqueda de etapa" #. module: crm #: help:crm.lead.report,delay_open:0 #: help:crm.phonecall.report,delay_open:0 msgid "Number of Days to open the case" -msgstr "" +msgstr "Número de días para abrir el caso" #. module: crm #: field:crm.lead,phone:0 @@ -2010,7 +2131,7 @@ msgstr "" #: field:crm.phonecall,partner_phone:0 #: field:crm.phonecall2phonecall,phone:0 msgid "Phone" -msgstr "" +msgstr "Teléfono" #. module: crm #: field:crm.case.channel,active:0 @@ -2018,95 +2139,95 @@ msgstr "" #: field:crm.lead,active:0 #: field:crm.phonecall,active:0 msgid "Active" -msgstr "" +msgstr "Activo" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Mandatory Expression" -msgstr "" +msgstr "Expresión obligatoria" #. module: crm #: selection:crm.lead2opportunity.partner,action:0 #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Create a new customer" -msgstr "" +msgstr "Crear un nuevo cliente" #. module: crm #: field:crm.lead.report,deadline_day:0 msgid "Exp. Closing Day" -msgstr "" +msgstr "Fecha de cierre esperada" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor2 msgid "Software" -msgstr "" +msgstr "Software" #. module: crm #: field:crm.case.section,change_responsible:0 msgid "Reassign Escalated" -msgstr "" +msgstr "Reasignar escalado" #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.action_report_crm_opportunity #: model:ir.ui.menu,name:crm.menu_report_crm_opportunities_tree msgid "Opportunities Analysis" -msgstr "" +msgstr "Análisis de oportunidades" #. module: crm #: view:crm.lead:0 msgid "Misc" -msgstr "" +msgstr "Varios" #. module: crm #: view:crm.lead:0 #: view:crm.lead.report:0 #: selection:crm.lead.report,state:0 msgid "Open" -msgstr "" +msgstr "Abierto" #. module: crm #: view:crm.lead:0 #: field:crm.lead,city:0 msgid "City" -msgstr "" +msgstr "Ciudad" #. module: crm #: selection:crm.case.stage,type:0 msgid "Both" -msgstr "" +msgstr "Ambos" #. module: crm #: view:crm.phonecall:0 msgid "Call Done" -msgstr "" +msgstr "Llamada realizada" #. module: crm #: view:crm.phonecall:0 #: field:crm.phonecall,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Responsable" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_3 msgid "Direct Marketing" -msgstr "" +msgstr "Marketing directo" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor1 msgid "Product" -msgstr "" +msgstr "Producto" #. module: crm #: field:crm.lead.report,creation_year:0 msgid "Creation Year" -msgstr "" +msgstr "Año de creación" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Conversion Options" -msgstr "" +msgstr "Opciones de conversión" #. module: crm #: view:crm.case.section:0 @@ -2114,16 +2235,20 @@ msgid "" "Follow this salesteam to automatically track the events associated to users " "of this team." msgstr "" +"Seguir a este equipo de ventas para rastrear automáticamente los eventos " +"asociados a los usuarios de este equipo." #. module: crm #: view:crm.lead:0 msgid "Address" -msgstr "" +msgstr "Dirección" #. module: crm #: view:crm.lead:0 msgid "Leads that are assigned to any sales teams I am member of" msgstr "" +"Iniciativas que son asignadas a cualquier equipo de ventas del que soy " +"miembro" #. module: crm #: help:crm.case.section,alias_id:0 @@ -2131,29 +2256,31 @@ msgid "" "The email address associated with this team. New emails received will " "automatically create new leads assigned to the team." msgstr "" +"La dirección de correo asociada a este equipo. Nuevos emails recibidos " +"crearán automáticamente nuevas iniciativas asociadas al equipo." #. module: crm #: view:crm.lead:0 msgid "Search Leads" -msgstr "" +msgstr "Buscar iniciativas" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,delay_open:0 msgid "Delay to open" -msgstr "" +msgstr "Retraso de apertura" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0 #: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound msgid "Scheduled Calls" -msgstr "" +msgstr "Llamadas planificadas" #. module: crm #: field:crm.lead,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: crm #: help:crm.lead,type_id:0 @@ -2161,46 +2288,48 @@ msgid "" "From which campaign (seminar, marketing campaign, mass mailing, ...) did " "this contact come from?" msgstr "" +"Campaña de procedencia (seminario, campaña de marketing, mailing masivo, ... " +") de este contacto" #. module: crm #: model:ir.model,name:crm.model_calendar_attendee msgid "Attendee information" -msgstr "" +msgstr "Información asistencia" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Test" -msgstr "" +msgstr "Prueba de segmentación" #. module: crm #: view:crm.segmentation:0 msgid "Continue Process" -msgstr "" +msgstr "Continuar el proceso" #. module: crm #: selection:crm.lead2opportunity.partner,name:0 #: selection:crm.lead2opportunity.partner.mass,name:0 #: model:ir.actions.act_window,name:crm.action_crm_lead2opportunity_partner msgid "Convert to opportunity" -msgstr "" +msgstr "Convertir a oportunidad" #. module: crm #: field:crm.opportunity2phonecall,user_id:0 #: field:crm.phonecall2phonecall,user_id:0 msgid "Assign To" -msgstr "" +msgstr "Asignar a" #. module: crm #: field:crm.lead,date_action_last:0 #: field:crm.phonecall,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Última acción" #. module: crm #: field:crm.phonecall,duration:0 #: field:crm.phonecall.report,duration:0 msgid "Duration" -msgstr "" +msgstr "Duración" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0 @@ -2217,6 +2346,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para planificar una llamada.\n" +"

\n" +"OpenERP le permite definir fácilmente las llamadas a ser realizadas por su " +"equipo de ventas y seguirlas basadas en su resumen.\n" +"

\n" +"Puede usar la característica de importación para importar masivamente una " +"nueva lista de prospectos a calificar.\n" +"

\n" +" " #. module: crm #: help:crm.case.stage,fold:0 @@ -2224,32 +2363,34 @@ 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 "" +"Esta etapa no es visible, por ejemplo en la barra de estado o vista kanban, " +"cuando no hay registros en este estado para visualizar" #. module: crm #: field:crm.lead.report,nbr:0 #: field:crm.phonecall.report,nbr:0 msgid "# of Cases" -msgstr "" +msgstr "# de casos" #. module: crm #: help:crm.phonecall,section_id:0 msgid "Sales team to which Case belongs to." -msgstr "" +msgstr "Equipo de ventas al cual pertence el caso" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead6 msgid "Banner Ads" -msgstr "" +msgstr "Anuncios" #. module: crm #: field:crm.merge.opportunity,opportunity_ids:0 msgid "Leads/Opportunities" -msgstr "" +msgstr "Iniciativas/Oportunidades" #. module: crm #: field:crm.lead,fax:0 msgid "Fax" -msgstr "" +msgstr "Fax" #. module: crm #: field:crm.lead,company_id:0 @@ -2259,60 +2400,60 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Compañía" #. module: crm #: selection:crm.segmentation,state:0 msgid "Running" -msgstr "" +msgstr "En proceso" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity msgid "Lead converted into an opportunity" -msgstr "" +msgstr "Iniciativa convertida a oportunidad" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won msgid "Opportunity won" -msgstr "" +msgstr "Oportunidad ganada" #. module: crm #: field:crm.case.categ,object_id:0 msgid "Object Name" -msgstr "" +msgstr "Nombre del objeto" #. module: crm #: view:crm.phonecall:0 msgid "Phone Calls Assigned to Me or My Team(s)" -msgstr "" +msgstr "Llamadas asignadas a mí o a mi equipo" #. module: crm #: view:crm.lead:0 msgid "Reset" -msgstr "" +msgstr "Restablecer" #. module: crm #: view:sale.config.settings:0 msgid "After-Sale Services" -msgstr "" +msgstr "Servicios Post-venta" #. module: crm #: field:crm.case.section,message_ids:0 #: field:crm.lead,message_ids:0 #: field:crm.phonecall,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Mensajes" #. module: crm #: help:crm.lead,channel_id:0 msgid "Communication channel (mail, direct, phone, ...)" -msgstr "" +msgstr "Canal de comunicación (email, directo, teléfono, ...)" #. module: crm #: field:crm.opportunity2phonecall,name:0 #: field:crm.phonecall2phonecall,name:0 msgid "Call summary" -msgstr "" +msgstr "Resumen de la llamada" #. module: crm #: selection:crm.case.stage,state:0 @@ -2321,18 +2462,18 @@ msgstr "" #: selection:crm.phonecall,state:0 #: selection:crm.phonecall.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: crm #: view:crm.lead:0 msgid "Street..." -msgstr "" +msgstr "Calle..." #. module: crm #: field:crm.lead.report,date_closed:0 #: field:crm.phonecall.report,date_closed:0 msgid "Close Date" -msgstr "" +msgstr "Fecha cierre" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_phonecall @@ -2342,84 +2483,89 @@ msgid "" "several criteria and drill down the information, by adding more groups in " "the report." msgstr "" +"Desde este informe, puede analizar el rendimiento de su equipo de ventas " +"basándose en sus llamadas telefónicas. Puede agrupar o filtrar la " +"información de acuerdo a varios criterios y profundizar en la información " +"añadiendo más grupos al informe." #. module: crm #: field:crm.case.stage,fold:0 msgid "Fold by Default" -msgstr "" +msgstr "Replegar por defecto" #. module: crm #: field:crm.case.stage,state:0 msgid "Related Status" -msgstr "" +msgstr "Estado relacionado" #. module: crm #: field:crm.phonecall,name:0 msgid "Call Summary" -msgstr "" +msgstr "Resumen de llamadas" #. module: crm #: field:crm.lead,color:0 msgid "Color Index" -msgstr "" +msgstr "Índice de colores" #. module: crm #: field:crm.segmentation.line,expr_operator:0 msgid "Operator" -msgstr "" +msgstr "Operador" #. module: crm #: view:crm.lead:0 #: model:ir.actions.act_window,name:crm.opportunity2phonecall_act msgid "Schedule/Log Call" -msgstr "" +msgstr "Planificar/Registrar llamada" #. module: crm #: view:crm.merge.opportunity:0 msgid "Select Leads/Opportunities" -msgstr "" +msgstr "Seleccionar Iniciativas/Oportunidades" #. module: crm #: selection:crm.phonecall,state:0 msgid "Confirmed" -msgstr "" +msgstr "Confirmado" #. module: crm #: model:ir.model,name:crm.model_crm_partner_binding msgid "Handle partner binding or generation in CRM wizards." msgstr "" +"Asistentes CRM para gestionar el enlanzamiento o la generación de empresas." #. module: crm #: model:ir.actions.act_window,name:crm.act_oppor_stage_user msgid "Planned Revenue By User and Stage" -msgstr "" +msgstr "Ingresos previstos por Usuario y Etapa" #. module: crm #: view:crm.phonecall:0 msgid "Confirm" -msgstr "" +msgstr "Confirmar" #. module: crm #: view:crm.lead:0 msgid "Unread messages" -msgstr "" +msgstr "Mensajes sin leer" #. module: crm #: field:crm.phonecall.report,section_id:0 msgid "Section" -msgstr "" +msgstr "Sección" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Optional Expression" -msgstr "" +msgstr "Expresión opcional" #. module: crm #: field:crm.case.section,message_follower_ids:0 #: field:crm.lead,message_follower_ids:0 #: field:crm.phonecall,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seguidores" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all @@ -2438,18 +2584,30 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una iniciativa sin calificar.\n" +"

\n" +"Use las iniciativas si necesita un paso de calificación antes de crear una " +"oportunidad o un cliente. Puede ser una tarjeta de visita que recibió, un " +"formulario de contacto rellenado en su sitio web, o un archivo de prospectos " +"sin calificar importado.\n" +"

\n" +"Una vez calificada, la iniciativa se puede convertir en una oportunidad de " +"negocio y/o un nuevo cliente en su libreta de direcciones.\n" +"

\n" +" " #. module: crm #: field:sale.config.settings,fetchmail_lead:0 msgid "Create leads from incoming mails" -msgstr "" +msgstr "Crear iniciativa desde correos entrantes" #. module: crm #: view:crm.lead:0 #: field:crm.lead,email_from:0 #: field:crm.phonecall,email_from:0 msgid "Email" -msgstr "" +msgstr "Email" #. module: crm #: view:crm.case.channel:0 @@ -2458,19 +2616,19 @@ msgstr "" #: view:crm.lead.report:0 #: field:crm.lead.report,channel_id:0 msgid "Channel" -msgstr "" +msgstr "Canal" #. module: crm #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Schedule Call" -msgstr "" +msgstr "Planificar llamada" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "My Sales Team(s)" -msgstr "" +msgstr "Mi equipo de ventas" #. module: crm #: help:crm.segmentation,exclusif:0 @@ -2480,16 +2638,20 @@ msgid "" "If checked, remove the category from partners that doesn't match " "segmentation criterions" msgstr "" +"Marque esta opción si la categoría está limitada a empresas que coincidan " +"con los criterios de segmentación. \n" +"Si está marcada, elimina la categoría de aquellas empresas que no coincidan " +"con los criterios de segmentación." #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 msgid "Creating business opportunities from Leads" -msgstr "" +msgstr "Creando oportunidades de negocio desde iniciativas" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead3 msgid "Email Campaign - Products" -msgstr "" +msgstr "Campaña email - productos" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 @@ -2508,42 +2670,53 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para registrar el resumen de una llamada telefónica.\n" +"

\n" +"OpenERP le permite registrar las llamadas entrantes sobre la marcha para " +"mantener el histórico de comunicación con un cliente o informar a otro " +"miembro del equipo.\n" +"

\n" +"Para seguir una llamada, puede lanzar una petición para otra llamada, una " +"reunión o una oportunidad.\n" +"

\n" +" " #. module: crm #: model:process.node,note:crm.process_node_leads0 msgid "Very first contact with new prospect" -msgstr "" +msgstr "Primer contacto con nueva prospección" #. module: crm #: view:res.partner:0 msgid "Calls" -msgstr "" +msgstr "Llamadas" #. module: crm #: view:crm.lead:0 msgid "Cancel Case" -msgstr "" +msgstr "Cancela caso" #. module: crm #: field:crm.case.stage,on_change:0 msgid "Change Probability Automatically" -msgstr "" +msgstr "Cambiar la probabilidad automáticamente" #. module: crm #: view:crm.phonecall.report:0 msgid "My Phone Calls" -msgstr "" +msgstr "Mis llamadas" #. module: crm #: model:crm.case.stage,name:crm.stage_lead3 msgid "Qualification" -msgstr "" +msgstr "Calificación" #. module: crm #: field:crm.lead2opportunity.partner,name:0 #: field:crm.lead2opportunity.partner.mass,name:0 msgid "Conversion Action" -msgstr "" +msgstr "Acciones de conversión" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_categ_action @@ -2559,95 +2732,104 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para definir una nueva etiqueta de ventas.\n" +"

\n" +"Cree etiquetas específicas que se ajusten a las actividades de su compañía " +"para clasificar y analizar mejor sus iniciativas y oportunidades. Dichas " +"categorías pueden reflejar por ejemplo su estructura de productos o los " +"diferentes tipos de ventas que hace.\n" +"

\n" +" " #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "August" -msgstr "" +msgstr "Agosto" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_lost #: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost msgid "Opportunity Lost" -msgstr "" +msgstr "Oportunidad perdida" #. module: crm #: field:crm.lead.report,deadline_month:0 msgid "Exp. Closing Month" -msgstr "" +msgstr "Mes de cierre previsto" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "December" -msgstr "" +msgstr "Diciembre" #. module: crm #: view:crm.phonecall:0 msgid "Date of Call" -msgstr "" +msgstr "Fecha de la llamada" #. module: crm #: view:crm.lead:0 #: field:crm.lead,date_deadline:0 msgid "Expected Closing" -msgstr "" +msgstr "Cierre previsto" #. module: crm #: model:ir.model,name:crm.model_crm_opportunity2phonecall msgid "Opportunity to Phonecall" -msgstr "" +msgstr "Oportunidad a llamada telefónica" #. module: crm #: view:crm.segmentation:0 msgid "Sales Purchase" -msgstr "" +msgstr "Compra Ventas" #. module: crm #: view:crm.lead:0 msgid "Schedule Meeting" -msgstr "" +msgstr "Programar reunión" #. module: crm #: field:crm.lead.report,deadline_year:0 msgid "Ex. Closing Year" -msgstr "" +msgstr "Año de cierre previsto" #. module: crm #: model:ir.actions.client,name:crm.action_client_crm_menu msgid "Open Sale Menu" -msgstr "" +msgstr "Menu ventas abiertas" #. module: crm #: field:crm.lead,date_open:0 #: field:crm.phonecall,date_open:0 msgid "Opened" -msgstr "" +msgstr "Abierto" #. module: crm #: view:crm.case.section:0 #: field:crm.case.section,member_ids:0 msgid "Team Members" -msgstr "" +msgstr "Miembros del equipo" #. module: crm #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Schedule/Log a Call" -msgstr "" +msgstr "Planificar/Registrar una llamada" #. module: crm #: field:crm.lead,planned_cost:0 msgid "Planned Costs" -msgstr "" +msgstr "Costos previstos" #. module: crm #: help:crm.lead,date_deadline:0 msgid "Estimate of the date on which the opportunity will be won." -msgstr "" +msgstr "Fecha estimada en la que la oportunidad será ganada" #. module: crm #: help:crm.lead,email_cc:0 @@ -2656,23 +2838,26 @@ msgid "" "outbound emails for this record before being sent. Separate multiple email " "addresses with a comma" msgstr "" +"Estas direcciones de correo serán añadidas al campo CC para todos los " +"correos entrantes y salientes de este registro antes de ser enviados. Separe " +"las diferentes direcciones de correo con una coma." #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_incoming0 #: model:ir.ui.menu,name:crm.menu_crm_case_phone_inbound msgid "Logged Calls" -msgstr "" +msgstr "Llamadas registradas" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_won #: model:mail.message.subtype,name:crm.mt_salesteam_lead_won msgid "Opportunity Won" -msgstr "" +msgstr "Oportunidad ganada" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree msgid "Cases by Sales Team" -msgstr "" +msgstr "Casos por equipo de ventas" #. module: crm #: view:crm.lead:0 @@ -2680,17 +2865,17 @@ msgstr "" #: model:ir.model,name:crm.model_crm_meeting #: model:process.node,name:crm.process_node_meeting0 msgid "Meeting" -msgstr "" +msgstr "Reunión" #. module: crm #: model:ir.model,name:crm.model_crm_case_categ msgid "Category of Case" -msgstr "" +msgstr "Categoría de caso" #. module: crm #: view:board.board:0 msgid "Planned Revenue by Stage and User" -msgstr "" +msgstr "Ingresos previsto por etapa y usuario" #. module: crm #: selection:crm.lead,priority:0 @@ -2698,131 +2883,134 @@ msgstr "" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Normal" -msgstr "" +msgstr "Normal" #. module: crm #: field:crm.lead,street2:0 msgid "Street2" -msgstr "" +msgstr "Calle2" #. module: crm #: field:sale.config.settings,module_crm_helpdesk:0 msgid "Manage Helpdesk and Support" -msgstr "" +msgstr "Gestionar incidencias y soporte" #. module: crm #: field:crm.lead.report,delay_open:0 msgid "Delay to Open" -msgstr "" +msgstr "Retraso de apertura" #. module: crm #: field:crm.lead.report,user_id:0 #: field:crm.phonecall.report,user_id:0 msgid "User" -msgstr "" +msgstr "Usuario" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "November" -msgstr "" +msgstr "Noviembre" #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.act_opportunity_stage msgid "Opportunities By Stage" -msgstr "" +msgstr "Oportunidades por etapa" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "January" -msgstr "" +msgstr "Enero" #. module: crm #: model:process.process,name:crm.process_process_contractprocess0 msgid "Contract" -msgstr "" +msgstr "Contrato" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead4 msgid "Twitter Ads" -msgstr "" +msgstr "Anuncios Twiter" #. module: crm #: field:crm.lead.report,creation_day:0 msgid "Creation Day" -msgstr "" +msgstr "Fecha de creación" #. module: crm #: view:crm.lead.report:0 msgid "Planned Revenues" -msgstr "" +msgstr "Ingresos esperados" #. module: crm #: help:crm.lead.report,deadline_year:0 msgid "Expected closing year" -msgstr "" +msgstr "Año de cierre previsto" #. module: crm #: view:crm.lead:0 msgid "e.g. Call for proposal" -msgstr "" +msgstr "e. d. Llamada a proponer" #. module: crm #: model:ir.model,name:crm.model_crm_case_stage msgid "Stage of case" -msgstr "" +msgstr "Etapa del caso" #. module: crm #: code:addons/crm/crm_lead.py:569 #, python-format msgid "Merged opportunity" -msgstr "" +msgstr "Oportunidad fusionadaq" #. module: crm #: view:crm.lead:0 msgid "Unassigned" -msgstr "" +msgstr "Sin asignar" #. module: crm #: selection:crm.opportunity2phonecall,action:0 #: selection:crm.phonecall2phonecall,action:0 msgid "Schedule a call" -msgstr "" +msgstr "Planificar una llamada" #. module: crm #: view:crm.lead:0 msgid "Categorization" -msgstr "" +msgstr "Categorización" #. module: crm #: view:crm.phonecall2phonecall:0 msgid "Log Call" -msgstr "" +msgstr "Registrar llamada" #. module: crm #: help:sale.config.settings,group_fund_raising:0 msgid "Allows you to trace and manage your activities for fund raising." msgstr "" +"Permitir rastrear y administrar sus actividades para recaudación de fondos." #. module: crm #: field:crm.meeting,phonecall_id:0 #: model:ir.model,name:crm.model_crm_phonecall msgid "Phonecall" -msgstr "" +msgstr "Llamada telefónica" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls that are assigned to one of the sale teams I manage" msgstr "" +"Las llamadas de teléfono están asignadas a uno de los equipos que yo " +"gestiono." #. module: crm #: view:crm.lead:0 msgid "at" -msgstr "" +msgstr "en" #. module: crm #: model:crm.case.stage,name:crm.stage_lead1 @@ -2831,19 +3019,19 @@ msgstr "" #: selection:crm.lead,state:0 #: view:crm.lead.report:0 msgid "New" -msgstr "" +msgstr "Nuevo" #. module: crm #: field:crm.lead,function:0 msgid "Function" -msgstr "" +msgstr "Función" #. module: crm #: field:crm.case.section,note:0 #: field:crm.phonecall,description:0 #: field:crm.segmentation,description:0 msgid "Description" -msgstr "" +msgstr "Descripción" #. module: crm #: field:crm.case.categ,section_id:0 @@ -2862,14 +3050,14 @@ msgstr "" #: field:crm.phonecall2phonecall,section_id:0 #: field:res.partner,section_id:0 msgid "Sales Team" -msgstr "" +msgstr "Equipo de ventas" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "May" -msgstr "" +msgstr "Mayo" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_channel_action @@ -2887,41 +3075,52 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para definir un nuevo canal.\n" +"

\n" +"Use los canales para administrar las fuentes de sus iniciativas y " +"oportunidades. Los canales se usan sobre todo en los informes para analizar " +"el rendimiento de ventas en relación con los esfuerzos de marketing.\n" +"

\n" +"Algunos ejemplos de canales: web de la compañía, campaña de llamadas " +"telefónicas, distribuidor, etc.\n" +"

\n" +" " #. module: crm #: view:crm.lead:0 msgid "Internal Notes" -msgstr "" +msgstr "Notas internas" #. module: crm #: view:crm.lead:0 msgid "New Opportunities" -msgstr "" +msgstr "Nuevas oportunidades" #. module: crm #: field:crm.segmentation.line,operator:0 msgid "Mandatory / Optional" -msgstr "" +msgstr "Obligatorio / Opcional" #. module: crm #: field:crm.lead,street:0 msgid "Street" -msgstr "" +msgstr "Calle" #. module: crm #: field:crm.lead,referred:0 msgid "Referred By" -msgstr "" +msgstr "Referenciado por" #. module: crm #: view:crm.phonecall:0 msgid "Reset to Todo" -msgstr "" +msgstr "Cambiar a 'Para hacer'" #. module: crm #: field:crm.case.section,working_hours:0 msgid "Working Hours" -msgstr "" +msgstr "Horario de trabajo" #. module: crm #: code:addons/crm/crm_lead.py:968 @@ -2931,31 +3130,33 @@ msgstr "" #: field:crm.partner.binding,partner_id:0 #, python-format msgid "Customer" -msgstr "" +msgstr "Cliente" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "February" -msgstr "" +msgstr "Febrero" #. module: crm #: view:crm.phonecall:0 msgid "Schedule a Meeting" -msgstr "" +msgstr "Planificar una reunión" #. module: crm #: model:crm.case.stage,name:crm.stage_lead8 #: view:crm.lead:0 msgid "Lost" -msgstr "" +msgstr "Perdido" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 #, python-format msgid "Closed/Cancelled leads cannot be converted into opportunities." msgstr "" +"Las iniciativas Cerradas/canceladas no pueden ser convertidas en " +"oportunidades." #. module: crm #: view:crm.lead:0 @@ -2963,7 +3164,7 @@ msgstr "" #: view:crm.lead.report:0 #: field:crm.lead.report,country_id:0 msgid "Country" -msgstr "" +msgstr "País" #. module: crm #: view:crm.lead:0 @@ -2971,82 +3172,82 @@ msgstr "" #: view:crm.lead2opportunity.partner.mass:0 #: view:crm.phonecall:0 msgid "Convert to Opportunity" -msgstr "" +msgstr "Convertir a oportunidad" #. module: crm #: help:crm.phonecall,email_from:0 msgid "These people will receive email." -msgstr "" +msgstr "Estas personas recibirán un email." #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "April" -msgstr "" +msgstr "Abril" #. module: crm #: field:crm.case.resource.type,name:0 msgid "Campaign Name" -msgstr "" +msgstr "Nombre de la campaña" #. module: crm #: view:crm.segmentation:0 msgid "Profiling" -msgstr "" +msgstr "Perfiles" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall_report msgid "Phone calls by user and section" -msgstr "" +msgstr "Llamadas telefónicas por usuario y sección" #. module: crm #: model:crm.case.stage,name:crm.stage_lead5 msgid "Negotiation" -msgstr "" +msgstr "Negociación" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2phonecall msgid "Phonecall To Phonecall" -msgstr "" +msgstr "Llamada telefónica a llamada telefónica" #. module: crm #: field:crm.case.stage,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Secuencia" #. module: crm #: field:crm.segmentation.line,expr_name:0 msgid "Control Variable" -msgstr "" +msgstr "Variable de control" #. module: crm #: model:crm.case.stage,name:crm.stage_lead4 msgid "Proposition" -msgstr "" +msgstr "Propuesta" #. module: crm #: view:crm.phonecall:0 #: field:res.partner,phonecall_ids:0 msgid "Phonecalls" -msgstr "" +msgstr "Llamadas telefónicas" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,name:0 msgid "Year" -msgstr "" +msgstr "Año" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead8 msgid "Newsletter" -msgstr "" +msgstr "Boletín de noticias" #. module: crm #: model:mail.message.subtype,name:crm.mt_salesteam_lead_stage msgid "Opportunity Stage Changed" -msgstr "" +msgstr "Etapa de la oportunidad cambiada" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_stage_act @@ -3060,3 +3261,59 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para establecer una nueva etapa en su flujo iniciativa/oportunidad.\n" +"

\n" +"Las etapas permiten ver fácilmente a los comerciales cómo una iniciativa u " +"oportunidad están posicionadas en el ciclo de ventas.\n" +"

\n" +" " + +#~ msgid "Send Mail" +#~ msgstr "Enviar correo" + +#~ msgid "Exp.Closing" +#~ msgstr "Cierre previsto" + +#~ msgid "New Leads" +#~ msgstr "Nuevas iniciativas" + +#~ msgid "Unassigned Leads" +#~ msgstr "Iniciativas sin asignar" + +#~ msgid "Unassigned Opportunities" +#~ msgstr "Oportunidades sin asignar" + +#~ msgid "Create date" +#~ msgstr "Fecha de creación" + +#~ msgid "Leads that are assigned to one of the sale teams I manage, or to me" +#~ msgstr "" +#~ "Iniciativas asignadas a uno de los equipos que gestiono, o a mí mismo" + +#~ msgid "" +#~ "Opportunities that are assigned to either me or one of the sale teams I " +#~ "manage" +#~ msgstr "" +#~ "Oportunidades que están asignadas a mi o a uno de los equipos que gestiono" + +#~ msgid "Lead Description" +#~ msgstr "Descripción de la iniciativa" + +#~ msgid "Users" +#~ msgstr "Usuarios" + +#~ msgid "Leads Assigned to Me or My Team(s)" +#~ msgstr "Iniciativas asignadas a mi o mi equipo" + +#~ msgid "Opportunities Assigned to Me or My Team(s)" +#~ msgstr "Oportunidades asignadas a mi o mi equipo" + +#, python-format +#~ msgid "%s a call for the %s." +#~ msgstr "" +#~ "Copy text \t\r\n" +#~ "%s una llamada para el %s." + +#~ msgid "Opportunity ${object.name | h})" +#~ msgstr "Oportunidad ${object.name | h})" diff --git a/addons/crm/i18n/ko.po b/addons/crm/i18n/ko.po index c49f4e9c514..36a9b469c71 100644 --- a/addons/crm/i18n/ko.po +++ b/addons/crm/i18n/ko.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:36+0000\n" -"PO-Revision-Date: 2013-03-28 05:34+0000\n" +"PO-Revision-Date: 2013-03-29 04:04+0000\n" "Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: crm @@ -27,7 +27,7 @@ msgstr "# 리드" msgid "" "Allows you to configure your incoming mail server, and create leads from " "incoming emails." -msgstr "" +msgstr "수신메일서버를 설정하고 수신 이메일로부터 리드를 생성할 수 있게 함." #. module: crm #: code:addons/crm/crm_lead.py:881 @@ -44,7 +44,7 @@ msgstr "리드" #: view:crm.lead:0 #: field:crm.lead,title:0 msgid "Title" -msgstr "" +msgstr "직함" #. module: crm #: model:ir.actions.server,message:crm.action_email_reminder_lead @@ -55,40 +55,45 @@ msgid "" "Description: [[object.description]]\n" " " msgstr "" +"경고 미처리된 수신 리드가 5일 이상 경과되었습니다.\n" +"명칭: [[object.name ]]\n" +"ID: [[object.id ]]\n" +"설명: [[object.description]]\n" +" " #. module: crm #: field:crm.opportunity2phonecall,action:0 #: field:crm.phonecall2phonecall,action:0 msgid "Action" -msgstr "액션" +msgstr "조치" #. module: crm #: model:ir.actions.server,name:crm.action_set_team_sales_department msgid "Set team to Sales Department" -msgstr "" +msgstr "팀을 영업팀으로 설정" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Select Opportunities" -msgstr "" +msgstr "기회를 선택" #. module: crm #: model:res.groups,name:crm.group_fund_raising #: field:sale.config.settings,group_fund_raising:0 msgid "Manage Fund Raising" -msgstr "" +msgstr "기금 모금 관리" #. module: crm #: view:crm.lead.report:0 #: field:crm.phonecall.report,delay_close:0 msgid "Delay to close" -msgstr "" +msgstr "마감까지 지연" #. module: crm #: view:crm.case.stage:0 #: field:crm.case.stage,name:0 msgid "Stage Name" -msgstr "" +msgstr "단계명" #. module: crm #: view:crm.lead:0 @@ -96,7 +101,7 @@ msgstr "" #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Salesperson" -msgstr "" +msgstr "영업사원" #. module: crm #: model:ir.model,name:crm.model_crm_lead_report @@ -108,38 +113,38 @@ msgstr "CRM 리드 분석" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,day:0 msgid "Day" -msgstr "" +msgstr "일" #. module: crm #: view:crm.lead:0 msgid "Company Name" -msgstr "" +msgstr "업체명" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor6 msgid "Training" -msgstr "" +msgstr "훈련" #. module: crm #: model:ir.actions.act_window,name:crm.crm_lead_categ_action #: model:ir.ui.menu,name:crm.menu_crm_lead_categ msgid "Sales Tags" -msgstr "" +msgstr "영업 태그" #. module: crm #: view:crm.lead.report:0 msgid "Exp. Closing" -msgstr "" +msgstr "예상 마감" #. module: crm #: view:crm.phonecall:0 msgid "Cancel Call" -msgstr "" +msgstr "통화 취소" #. module: crm #: help:crm.lead.report,creation_day:0 msgid "Creation day" -msgstr "" +msgstr "생성일" #. module: crm #: field:crm.segmentation.line,name:0 @@ -150,7 +155,7 @@ msgstr "규칙 이름" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "통화는 하나씩만 전환할 수 있습니다." #. module: crm #: view:crm.case.resource.type:0 @@ -160,17 +165,17 @@ msgstr "" #: field:crm.lead.report,type_id:0 #: model:ir.model,name:crm.model_crm_case_resource_type msgid "Campaign" -msgstr "" +msgstr "캠페인" #. module: crm #: view:crm.lead:0 msgid "Search Opportunities" -msgstr "" +msgstr "기회 검색" #. module: crm #: help:crm.lead.report,deadline_month:0 msgid "Expected closing month" -msgstr "" +msgstr "예상 마감월" #. module: crm #: help:crm.case.section,message_summary:0 @@ -179,7 +184,7 @@ msgstr "" msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." -msgstr "" +msgstr "대화 요약 (메시지 개수, ...)을 내포함. 이 요약은 간판 화면에 삽입할 수 있도록 html 형식으로 직접 작성됩니다." #. module: crm #: code:addons/crm/crm_lead.py:624 @@ -187,7 +192,7 @@ msgstr "" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" -msgstr "" +msgstr "경고!" #. module: crm #: view:crm.lead:0 @@ -202,40 +207,40 @@ msgstr "" #: model:ir.model,name:crm.model_res_partner #: model:process.node,name:crm.process_node_partner0 msgid "Partner" -msgstr "" +msgstr "협력업체" #. module: crm #: view:crm.phonecall:0 #: model:ir.actions.act_window,name:crm.phonecall_to_phonecall_act msgid "Schedule Other Call" -msgstr "" +msgstr "기타 통화의 일정을 생성" #. module: crm #: code:addons/crm/crm_phonecall.py:209 #: view:crm.phonecall:0 #, python-format msgid "Phone Call" -msgstr "" +msgstr "통화" #. module: crm #: field:crm.lead,opt_out:0 msgid "Opt-Out" -msgstr "" +msgstr "탈퇴" #. module: crm #: view:crm.lead:0 msgid "Opportunities that are assigned to me" -msgstr "" +msgstr "내게 할당된 기회" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "미팅 #" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead msgid "Reminder to User" -msgstr "" +msgstr "사용자에 대한 알림" #. module: crm #: field:crm.segmentation,segmentation_line:0 @@ -245,7 +250,7 @@ msgstr "범주" #. module: crm #: view:crm.lead:0 msgid "Assigned to My Team(s)" -msgstr "" +msgstr "내 팀에게 할당됨" #. module: crm #: view:crm.segmentation:0 @@ -255,7 +260,7 @@ msgstr "재외된 답변들:" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "기회를 병합" #. module: crm #: view:crm.lead.report:0 @@ -268,13 +273,13 @@ msgstr "리드 분석" #: model:ir.actions.act_window,name:crm.crm_case_resource_type_act #: model:ir.ui.menu,name:crm.menu_crm_case_resource_type_act msgid "Campaigns" -msgstr "" +msgstr "캠페인" #. module: crm #: view:crm.lead:0 #: field:crm.lead,state_id:0 msgid "State" -msgstr "" +msgstr "상태" #. module: crm #: view:crm.lead:0 @@ -288,23 +293,23 @@ msgstr "카테고리" msgid "" "If opt-out is checked, this contact has refused to receive emails or " "unsubscribed to a campaign." -msgstr "" +msgstr "탈퇴가 체크되었을 경우, 이 연락처는 이메일 수신을 거부하였거나 캠페인 구독을 취소하였습니다." #. module: crm #: model:process.transition,name:crm.process_transition_leadpartner0 msgid "Prospect Partner" -msgstr "" +msgstr "잠재 협력업체" #. module: crm #: code:addons/crm/crm_lead.py:982 #, python-format msgid "No Subject" -msgstr "" +msgstr "제목 없음" #. module: crm #: field:crm.lead,contact_name:0 msgid "Contact Name" -msgstr "" +msgstr "연락처 이름" #. module: crm #: help:crm.segmentation,categ_id:0 @@ -326,40 +331,49 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 고객 분할을 정의하기 위해 클릭하십시오.\n" +"

\n" +" 연락처에 할당할 수 있는 특정 분류를 생성하여\n" +" 연락처와의 대화를 더욱 효율적으로 관리하십시오.\n" +" 분할 도구는 설정한 기준에 따라 연락처에 분류를\n" +" 할당할 수 있습니다.\n" +"

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 #: field:crm.phonecall,partner_id:0 #: field:crm.phonecall2phonecall,contact_name:0 msgid "Contact" -msgstr "" +msgstr "연락처" #. module: crm #: help:crm.case.section,change_responsible:0 msgid "" "When escalating to this team override the salesman with the team leader." -msgstr "" +msgstr "이 팀으로 상승할 때 팀 리더를 영업사원으로 우선합니다." #. module: crm #: model:process.transition,name:crm.process_transition_opportunitymeeting0 msgid "Opportunity Meeting" -msgstr "" +msgstr "기회 미팅" #. module: crm #: help:crm.lead.report,delay_close:0 #: help:crm.phonecall.report,delay_close:0 msgid "Number of Days to close the case" -msgstr "" +msgstr "사례를 마감하기까지 잔여일" #. module: crm #: model:process.node,note:crm.process_node_opportunities0 msgid "When a real project/opportunity is detected" -msgstr "" +msgstr "실제 프로젝트/기회가 탐지될 때" #. module: crm #: field:res.partner,opportunity_ids:0 msgid "Leads and Opportunities" -msgstr "" +msgstr "리드 및 기회" #. module: crm #: model:ir.actions.act_window,help:crm.relate_partner_opportunities @@ -378,12 +392,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 이 고객과 관련된 기회를 생성하기 위해 클릭하십시오.\n" +"

\n" +" 기회를 사용하여 영업 진행상황을 추적하고 잠재적인 판매에 대한\n" +" 후속 조치를 실시하며, 향후 수익을 더욱 정확히 예측하십시오.\n" +"

\n" +" You will be able to plan meetings and phone calls from\n" +" opportunities, convert them into quotations, attach related\n" +" documents, track all discussions, and much more.\n" +"

\n" +" " #. module: crm #: model:crm.case.stage,name:crm.stage_lead7 #: view:crm.lead:0 msgid "Dead" -msgstr "" +msgstr "사용 불가" #. module: crm #: field:crm.case.section,message_unread:0 @@ -391,7 +416,7 @@ msgstr "" #: field:crm.lead,message_unread:0 #: field:crm.phonecall,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "읽지 않은 메시지" #. module: crm #: view:crm.segmentation:0 @@ -405,12 +430,12 @@ msgstr "세그먼테이션" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Link to an existing customer" -msgstr "" +msgstr "기존 고객에게 연결" #. module: crm #: field:crm.lead,write_date:0 msgid "Update Date" -msgstr "" +msgstr "날짜 업데이트" #. module: crm #: field:crm.case.section,user_id:0 @@ -428,7 +453,7 @@ msgstr "" msgid "" "This percentage depicts the default/average probability of the Case for this " "stage to be a success" -msgstr "" +msgstr "이 백분율은 이 단계의 사례가 성공하는 기본/평균 확률을 묘사합니다" #. module: crm #: view:crm.lead:0 @@ -450,12 +475,12 @@ msgstr "기회#" #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." -msgstr "" +msgstr "목록 화면에서 하나 이상의 요소(리드 또는 기회)를 선택하십시오." #. module: crm #: field:crm.lead,partner_address_email:0 msgid "Partner Contact Email" -msgstr "" +msgstr "협력업체 연락처 이메일" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_section_act @@ -469,11 +494,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 새로운 영업팀을 정의하기 위해 클릭하십시오.\n" +"

\n" +" 영업팀을 사용하여 다른 영업사원 또는 부서를 다른 팀으로\n" +" 정리하십시오. 각 팀은 자체 기회 목록에 따라\n" +" 업무를 진행합니다.\n" +"

\n" +" " #. module: crm #: model:process.transition,note:crm.process_transition_opportunitymeeting0 msgid "Normal or phone meeting for opportunity" -msgstr "" +msgstr "기회에 대한 일반 및 전화 미팅" #. module: crm #: field:crm.lead,state:0 @@ -487,7 +520,7 @@ msgstr "상태" #. module: crm #: view:crm.lead2opportunity.partner:0 msgid "Create Opportunity" -msgstr "" +msgstr "기회 생성" #. module: crm #: view:sale.config.settings:0 @@ -497,7 +530,7 @@ msgstr "구성" #. module: crm #: view:crm.lead:0 msgid "Escalate" -msgstr "" +msgstr "승급" #. module: crm #: view:crm.lead:0 @@ -524,7 +557,7 @@ msgstr "실행 중이 아님" #. module: crm #: field:crm.lead.report,planned_revenue:0 msgid "Planned Revenue" -msgstr "예상 수익" +msgstr "계획된 수익" #. module: crm #: code:addons/crm/crm_lead.py:970 @@ -558,6 +591,8 @@ msgid "" " If the call needs to be done then the status is set " "to 'Not Held'." msgstr "" +"사례가 생성될 때 상태는 '조치 예정'으로 설정됩니다. 사례가 진행 중일 경우 상태는 '개시됨'으로 설정됩니다. 통화가 완료된 후에 " +"상태가 '연기됨'으로 설정됩니다. 통화를 해야할 경우 상태는 '연기되지 않음'으로 설정됩니다." #. module: crm #: field:crm.case.section,message_summary:0 @@ -587,6 +622,8 @@ msgid "" "Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' " "+object.partner_id.name or '']]" msgstr "" +"리드에 대한 알림: [[object.id ]] [[object.partner_id and 'of ' " +"+object.partner_id.name or '']]" #. module: crm #: code:addons/crm/crm_lead.py:745 @@ -595,6 +632,7 @@ msgid "" "No customer name defined. Please fill one of the following fields: Company " "Name, Contact Name or Email (\"Name \")" msgstr "" +"고객명이 정의되지 않았습니다. 다음 필드 중 하나를 채우시기 바랍니다: 회사명, 연락처명 또는 이메일 (\"이름 <이메일@주소>\")" #. module: crm #: view:crm.segmentation:0 @@ -635,13 +673,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 새로운 분류를 추가하기 위해 클릭하십시오.\n" +"

\n" +" 특정 통화 분류를 생성하여 시스템에서 추적하는 통화를\n" +" 더욱 잘 정의하십시오.\n" +"

\n" +" " #. module: crm #: help:crm.case.section,reply_to:0 msgid "" "The email address put in the 'Reply-To' of all emails sent by OpenERP about " "cases in this sales team" -msgstr "" +msgstr "이 영업팀의 사례에 대해 OpenERP이 보낸 모든 이메일의 '회신 주소'에 입력된 주소" #. module: crm #: field:crm.lead.report,creation_month:0 @@ -684,7 +729,7 @@ msgstr "통화" #. module: crm #: field:crm.lead.report,probable_revenue:0 msgid "Probable Revenue" -msgstr "" +msgstr "예상수익" #. module: crm #: help:crm.lead.report,creation_month:0 @@ -704,7 +749,7 @@ msgstr "미국의 리드" #. module: crm #: sql_constraint:crm.lead:0 msgid "The probability of closing the deal should be between 0% and 100%!" -msgstr "" +msgstr "수주 성공에 대한 확률은 0%에서 100% 사이여야 합니다!" #. module: crm #: view:crm.lead:0 @@ -764,7 +809,7 @@ msgstr "통화 검색" #: view:crm.lead.report:0 msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" -msgstr "" +msgstr "내가 관리하는 영업팀에게 할당된 리드/기회" #. module: crm #: field:crm.segmentation.line,expr_value:0 @@ -785,7 +830,7 @@ msgstr "배타적" #: code:addons/crm/crm_lead.py:584 #, python-format msgid "From %s : %s" -msgstr "" +msgstr "%s이(가) 보냄 : %s" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 @@ -817,7 +862,7 @@ msgstr "참조 2" msgid "" "Link between stages and sales teams. When set, this limitate the current " "stage to the selected sales teams." -msgstr "" +msgstr "단계와 영업팀 간의 연결. 설정 시 현재 단계를 선택된 영업팀으로 한계를 정합니다." #. module: crm #: view:crm.case.stage:0 @@ -921,7 +966,7 @@ msgstr "체크할 경우, 새로운 메시지를 주목할 필요가 있습니 #. module: crm #: field:crm.lead,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "개시까지 소요일" #. module: crm #: view:crm.lead:0 @@ -942,7 +987,7 @@ msgstr "참조" #. module: crm #: help:crm.case.section,resource_calendar_id:0 msgid "Used to compute open days" -msgstr "" +msgstr "개시일수를 계산하기 위해 사용됨." #. module: crm #: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_meeting_new @@ -957,13 +1002,13 @@ msgstr "미팅" #: field:crm.lead,title_action:0 #: field:crm.phonecall,date_action_next:0 msgid "Next Action" -msgstr "다음 액션" +msgstr "다음 조치" #. module: crm #: code:addons/crm/crm_lead.py:763 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "%s(으)로 설정된 협력업체 ." #. module: crm #: selection:crm.lead.report,state:0 @@ -998,6 +1043,8 @@ msgid "" "Allows you to track your customers/suppliers claims and grievances.\n" " This installs the module crm_claim." msgstr "" +"고객/공급업체의 클레임과 고충을 추적할 수 있도록 함.\n" +" 이것은 crm_claim 모듈을 설치합니다." #. module: crm #: model:crm.case.stage,name:crm.stage_lead6 @@ -1110,6 +1157,8 @@ msgid "" "Allows you to communicate with Customer, process Customer query, and " "provide better help and support. This installs the module crm_helpdesk." msgstr "" +"고객과 의사소통을 하고, 고객 질의를 처리하고, 더 나은 도움 및 지원 제공할 수 있도록 함. 이것은 crm_helpdesk 모듈을 " +"설치합니다." #. module: crm #: view:crm.lead:0 @@ -1153,6 +1202,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 새로운 기회를 생성하기 위해 클릭하십시오.\n" +"

\n" +" OpenERP는 영업과정을 추적하여 잠재적인 판매로 이어나가고\n" +" 향후 수익을 더욱 정확히 예측할 수 있도록 도와줍니다.\n" +"

\n" +" 사용자는 기회로부터 미팅과 통화을 계획하고,\n" +" 이를 견적으로 전환하고, 관련 문서를 첨부하고,\n" +" 그 외 많은 작업들을 할 수 있습니다..\n" +"

\n" +" " #. module: crm #: field:crm.segmentation,partner_id:0 @@ -1164,12 +1224,12 @@ msgstr "처리된 최대 협력업체 ID" msgid "" "Setting this stage will change the probability automatically on the " "opportunity." -msgstr "" +msgstr "이 단계를 설정하면 기회에 대한 확률을 자동으로 변경합니다." #. module: crm #: view:crm.lead:0 msgid "oe_kanban_text_red" -msgstr "" +msgstr "oe_kanban_text_red" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act @@ -1202,21 +1262,21 @@ msgstr "예상 마감일" msgid "" "If the active field is set to true, it will allow you to hide the sales team " "without removing it." -msgstr "" +msgstr "활성 필드를 true로 설정할 경우, 영업팀을 제거하지 않고도 숨길 수 있도록 합니다." #. module: crm #: help:crm.case.stage,case_default:0 msgid "" "If you check this field, this stage will be proposed by default on each " "sales team. It will not assign this stage to existing teams." -msgstr "" +msgstr "이 필드를 체크하면, 이 단계는 각 영업팀에 기본으로 제안됩니다. 기존 팀에게는 이 단계를 할당하지 않습니다." #. module: crm #: help:crm.case.stage,type:0 msgid "" "This field is used to distinguish stages related to Leads from stages " "related to Opportunities, or to specify stages available for both types." -msgstr "" +msgstr "이 필드는 리드와 관련된 단계와 기회와 관련된 단계를 구분하거나 두 유형에 사용 가능한 단계를 지정하기 위해 사용됩니다." #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_create @@ -1297,6 +1357,8 @@ msgid "" "set to 'Done'. If the case needs to be reviewed then the Status is set to " "'Pending'." msgstr "" +"사례가 생성되었을 때 상태는 '초안'으로 설정됩니다. 사례가 진행 중일 경우, 상태는 '개시됨'으로 설정됩니다. 사례가 종료되었을 때 " +"상태는 '종료됨'으로 설정됩니다. 사례를 검토할 필요가 있을 경우, 상태는 '보류 중'으로 설정됩니다." #. module: crm #: model:crm.case.section,name:crm.crm_case_section_1 @@ -1313,14 +1375,14 @@ msgstr "병합된 리드" #: help:crm.lead,section_id:0 msgid "" "When sending mails, the default email address is taken from the sales team." -msgstr "" +msgstr "메일을 보낼 때, 기본 이메일 주소는 영업팀에서 가져옵니다." #. module: crm #: view:crm.phonecall:0 msgid "" "Phone Calls Assigned to the current user or with a team having the current " "user as team leader" -msgstr "" +msgstr "현재 사용자가 팀 리더일 때 현재 사용자 또는 팀에게 할당된 통화" #. module: crm #: view:crm.segmentation:0 @@ -1381,34 +1443,34 @@ msgstr "취소" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor4 msgid "Information" -msgstr "" +msgstr "정보" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in pending state" -msgstr "보류 상태인 리드/기회" +msgstr "보류 상태의 리드/기회" #. module: crm #: view:crm.phonecall:0 msgid "To Do" -msgstr "" +msgstr "과제" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_lost msgid "Opportunity lost" -msgstr "" +msgstr "기회를 상실함" #. module: crm #: field:crm.lead2opportunity.partner,action:0 #: field:crm.lead2opportunity.partner.mass,action:0 #: field:crm.partner.binding,action:0 msgid "Related Customer" -msgstr "" +msgstr "관련 고객" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor8 msgid "Other" -msgstr "" +msgstr "기타" #. module: crm #: field:crm.phonecall,opportunity_id:0 @@ -1420,59 +1482,59 @@ msgstr "리드/기회" #: model:ir.actions.act_window,name:crm.action_merge_opportunities #: model:ir.actions.act_window,name:crm.merge_opportunity_act msgid "Merge leads/opportunities" -msgstr "" +msgstr "리드/기회 병합" #. module: crm #: help:crm.case.stage,sequence:0 msgid "Used to order stages. Lower is better." -msgstr "" +msgstr "단계를 나열하기 위해 사용됨. 낮을 수록 좋음." #. module: crm #: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action msgid "Phonecall Categories" -msgstr "" +msgstr "통화 분류" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in open state" -msgstr "" +msgstr "개시 상태의 리드/기회" #. module: crm #: view:crm.lead:0 msgid "Opportunities that are assigned to any sales teams I am member of" -msgstr "" +msgstr "내가 속한 영업팀에게 할당된 기회" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage msgid "Stage Changed" -msgstr "" +msgstr "단계가 변경됨" #. module: crm #: field:crm.case.stage,section_ids:0 msgid "Sections" -msgstr "섹션" +msgstr "부서" #. module: crm #: constraint:crm.case.section:0 msgid "Error ! You cannot create recursive Sales team." -msgstr "" +msgstr "오류 ! 재귀적인 영업팀을 생성할 수 없습니다." #. module: crm #: selection:crm.opportunity2phonecall,action:0 #: selection:crm.phonecall2phonecall,action:0 msgid "Log a call" -msgstr "" +msgstr "통화를 기록" #. module: crm #: selection:crm.segmentation.line,expr_name:0 msgid "Sale Amount" -msgstr "판매 금액" +msgstr "판매금액" #. module: crm #: view:crm.phonecall.report:0 #: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_phonecall_new msgid "Phone calls" -msgstr "" +msgstr "통화" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_opportunity @@ -1482,7 +1544,7 @@ msgid "" "deadlines or the number of interactions per opportunity. This report is " "mainly used by the sales manager in order to do the periodic review with the " "teams of the sales pipeline." -msgstr "" +msgstr "기회 분석은 기대수익, 계획비용, 맞추지 못한 기한 또는 기회 당 대화 횟수 등의 기회에 즉시 접근할 수 있도록 합니다." #. module: crm #: field:crm.case.categ,name:0 @@ -1494,35 +1556,35 @@ msgstr "이름" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities that are assigned to me" -msgstr "나에게 할당된 리드/기회" +msgstr "내게 할당된 리드/기회" #. module: crm #: view:crm.lead.report:0 msgid "My Case(s)" -msgstr "" +msgstr "내 사례" #. module: crm #: help:crm.case.section,message_ids:0 #: help:crm.lead,message_ids:0 #: help:crm.phonecall,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "메시지 및 의사소통 기록" #. module: crm #: view:crm.lead:0 msgid "Show Countries" -msgstr "" +msgstr "국가 보기" #. module: crm #: view:crm.phonecall.report:0 msgid "Date of call" -msgstr "" +msgstr "통화일" #. module: crm #: view:crm.lead:0 #: view:crm.phonecall:0 msgid "Creation" -msgstr "" +msgstr "생성일" #. module: crm #: selection:crm.lead,priority:0 @@ -1535,12 +1597,12 @@ msgstr "높음" #. module: crm #: model:process.node,note:crm.process_node_partner0 msgid "Convert to prospect to business partner" -msgstr "" +msgstr "잠재고객을 사업 협력업체로 전환" #. module: crm #: model:ir.model,name:crm.model_crm_payment_mode msgid "CRM Payment Mode" -msgstr "" +msgstr "CRM 지불 모드" #. module: crm #: view:crm.lead.report:0 @@ -1550,7 +1612,7 @@ msgstr "종료 상태의 리드/기회" #. module: crm #: field:crm.lead.report,delay_close:0 msgid "Delay to Close" -msgstr "" +msgstr "마감까지의 지연" #. module: crm #: view:crm.lead:0 @@ -1558,34 +1620,34 @@ msgstr "" #: view:crm.phonecall:0 #: view:crm.phonecall.report:0 msgid "Group By..." -msgstr "" +msgstr "분류 기준..." #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail msgid "${object.name}" -msgstr "" +msgstr "${object.name}" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge Leads/Opportunities" -msgstr "리드/기회 병합" +msgstr "리드/기회를 병합" #. module: crm #: field:crm.case.section,parent_id:0 msgid "Parent Team" -msgstr "" +msgstr "상위 팀" #. module: crm #: selection:crm.lead2opportunity.partner,action:0 #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Do not link to a customer" -msgstr "" +msgstr "고객을 연결하지 않음" #. module: crm #: field:crm.lead,date_action:0 msgid "Next Action Date" -msgstr "" +msgstr "다음 조치일" #. module: crm #: help:crm.case.stage,state:0 @@ -1594,21 +1656,23 @@ msgid "" "stage. For example, if a stage is related to the status 'Close', when your " "document reaches this stage, it is automatically closed." msgstr "" +"문서의 상태는 선택된 단계에 따라 자동으로 변경됩니다. 예를 들어, 단계가 '마감' 상태와 관련이 있을 경우 문서가 이 단계에 도달할 때 " +"문서는 자동으로 마감됩니다." #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Assign opportunities to" -msgstr "" +msgstr "기회를 할당할 대상" #. module: crm #: model:crm.case.categ,name:crm.categ_phone1 msgid "Inbound" -msgstr "" +msgstr "수신" #. module: crm #: view:crm.phonecall.report:0 msgid "Month of call" -msgstr "" +msgstr "통화월" #. module: crm #: view:crm.lead:0 @@ -1619,12 +1683,12 @@ msgstr "리드를 설명하십시오..." #: code:addons/crm/crm_phonecall.py:290 #, python-format msgid "Partner has been created." -msgstr "" +msgstr "협력업체가 생성되었습니다." #. module: crm #: field:sale.config.settings,module_crm_claim:0 msgid "Manage Customer Claims" -msgstr "" +msgstr "고객 클레임 관리" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_lead @@ -1633,11 +1697,13 @@ msgid "" "the treatment delays or number of leads per state. You can sort out your " "leads analysis by different groups to get accurate grained analysis." msgstr "" +"리드 분석은 처리 지연 또는 시도별 리드와 같은 다른 CRM 관련 정보를 확인할 수 있도록 합니다. 정확한 상세 분석을 얻기 위해 리드 " +"분석을 다른 그룹으로 정렬할 수 있습니다." #. module: crm #: model:crm.case.categ,name:crm.categ_oppor3 msgid "Services" -msgstr "" +msgstr "서비스" #. module: crm #: selection:crm.lead,priority:0 @@ -1645,48 +1711,48 @@ msgstr "" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Highest" -msgstr "최고" +msgstr "가장 높음" #. module: crm #: help:crm.lead.report,creation_year:0 msgid "Creation year" -msgstr "" +msgstr "생성년도" #. module: crm #: view:crm.case.section:0 #: field:crm.lead,description:0 msgid "Notes" -msgstr "" +msgstr "메모" #. module: crm #: view:crm.opportunity2phonecall:0 msgid "Call Description" -msgstr "" +msgstr "통화 설명" #. module: crm #: field:crm.lead,partner_name:0 msgid "Customer Name" -msgstr "" +msgstr "고객명" #. module: crm #: field:crm.case.section,reply_to:0 msgid "Reply-To" -msgstr "회신" +msgstr "회신 주소" #. module: crm #: view:crm.lead:0 msgid "Display" -msgstr "" +msgstr "표시" #. module: crm #: view:board.board:0 msgid "Opportunities by Stage" -msgstr "" +msgstr "단계별 기회" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 msgid "Prospect is converting to business partner" -msgstr "" +msgstr "잠재 고객이 사업 협력업체로 전환 중입니다" #. module: crm #: view:crm.case.channel:0 @@ -1694,7 +1760,7 @@ msgstr "" #: model:ir.model,name:crm.model_crm_case_channel #: model:ir.ui.menu,name:crm.menu_crm_case_channel msgid "Channels" -msgstr "" +msgstr "채널" #. module: crm #: view:crm.phonecall:0 @@ -1702,32 +1768,32 @@ msgstr "" #: view:crm.phonecall.report:0 #: selection:crm.phonecall.report,state:0 msgid "Held" -msgstr "" +msgstr "보류됨" #. module: crm #: view:crm.lead:0 msgid "Extra Info" -msgstr "기타 정보" +msgstr "추가 정보" #. module: crm #: view:crm.lead:0 msgid "Fund Raising" -msgstr "" +msgstr "자금 모금" #. module: crm #: view:crm.lead:0 msgid "Edit..." -msgstr "" +msgstr "편집..." #. module: crm #: model:crm.case.resource.type,name:crm.type_lead5 msgid "Google Adwords" -msgstr "" +msgstr "구글 애드워드" #. module: crm #: view:crm.case.section:0 msgid "Select Stages for this Sales Team" -msgstr "" +msgstr "이 영업팀의 단계를 선택" #. module: crm #: view:crm.lead:0 @@ -1748,14 +1814,14 @@ msgstr "리드에서 기회로 전환된 협력업체" #. module: crm #: help:crm.lead,partner_id:0 msgid "Linked partner (optional). Usually created when converting the lead." -msgstr "" +msgstr "연결된 협력업체 (선택적). 보통 리드를 전환할 때 생성됨." #. module: crm #: field:crm.lead,payment_mode:0 #: view:crm.payment.mode:0 #: model:ir.actions.act_window,name:crm.action_crm_payment_mode msgid "Payment Mode" -msgstr "" +msgstr "결제 모드" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner_mass @@ -1765,63 +1831,63 @@ msgstr "리드에서 기회로 전환된 협력업체 - 대량" #. module: crm #: view:sale.config.settings:0 msgid "On Mail Server" -msgstr "" +msgstr "메일 서버에 존재함" #. module: crm #: model:ir.actions.act_window,name:crm.open_board_statistical_dash #: model:ir.ui.menu,name:crm.menu_board_statistics_dash msgid "CRM" -msgstr "" +msgstr "CRM" #. module: crm #: model:ir.actions.act_window,name:crm.crm_segmentation_tree-act #: model:ir.ui.menu,name:crm.menu_crm_segmentation-act msgid "Contacts Segmentation" -msgstr "" +msgstr "연락처 분할" #. module: crm #: model:process.node,note:crm.process_node_meeting0 msgid "Schedule a normal or phone meeting" -msgstr "" +msgstr "일반 또는 전화 미팅 일정 생성" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead1 msgid "Telesales" -msgstr "" +msgstr "통신 판매" #. module: crm #: model:ir.model,name:crm.model_crm_segmentation_line msgid "Segmentation line" -msgstr "세그먼테이션 라인" +msgstr "분할 입력줄" #. module: crm #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Planned Date" -msgstr "" +msgstr "계획일" #. module: crm #: view:crm.lead:0 msgid "Expected Revenues" -msgstr "" +msgstr "예상수익" #. module: crm #: view:crm.lead:0 msgid "Referrer" -msgstr "" +msgstr "조회자" #. module: crm #: help:crm.lead,type:0 #: help:crm.lead.report,type:0 msgid "Type is used to separate Leads and Opportunities" -msgstr "" +msgstr "유형은 리드와 기회를 구분하기 위해 사용됩니다" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "July" -msgstr "" +msgstr "7월" #. module: crm #: view:crm.lead:0 @@ -1831,52 +1897,52 @@ msgstr "리드 / 고객" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_2 msgid "Support Department" -msgstr "" +msgstr "지원부" #. module: crm #: view:crm.lead.report:0 msgid "Show only lead" -msgstr "리드만 보이기" +msgstr "리드만 보기" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act #: model:ir.model,name:crm.model_crm_case_section #: model:ir.ui.menu,name:crm.menu_crm_case_section_act msgid "Sales Teams" -msgstr "" +msgstr "영업팀" #. module: crm #: field:crm.case.stage,case_default:0 msgid "Default to New Sales Team" -msgstr "" +msgstr "새로운 영업팀으로 기본 설정" #. module: crm #: view:crm.lead:0 msgid "Team" -msgstr "" +msgstr "팀" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in New state" -msgstr "" +msgstr "신규 단계의 리드/기회" #. module: crm #: selection:crm.phonecall,state:0 #: view:crm.phonecall.report:0 msgid "Not Held" -msgstr "" +msgstr "보류되지 않았음" #. module: crm #: field:crm.lead.report,probability:0 msgid "Probability" -msgstr "" +msgstr "확률" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,month:0 msgid "Month" -msgstr "" +msgstr "월" #. module: crm #: view:crm.lead:0 @@ -1895,43 +1961,43 @@ msgstr "병합된 리드" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 msgid "Design" -msgstr "" +msgstr "디자인" #. module: crm #: selection:crm.lead2opportunity.partner,name:0 #: selection:crm.lead2opportunity.partner.mass,name:0 msgid "Merge with existing opportunities" -msgstr "" +msgstr "기존의 기회와 병합" #. module: crm #: view:crm.phonecall.report:0 #: selection:crm.phonecall.report,state:0 msgid "Todo" -msgstr "" +msgstr "과제" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_convert_to_opportunity #: model:mail.message.subtype,name:crm.mt_salesteam_lead_opportunity msgid "Lead to Opportunity" -msgstr "" +msgstr "리드에서 기회로 전환" #. module: crm #: field:crm.lead,user_email:0 msgid "User Email" -msgstr "" +msgstr "사용자 이메일" #. module: crm #: help:crm.lead,partner_name:0 msgid "" "The name of the future partner company that will be created while converting " "the lead into opportunity" -msgstr "" +msgstr "리드를 기회로 전환할 때 생성될 향후 협력업체의 이름" #. module: crm #: field:crm.opportunity2phonecall,note:0 #: field:crm.phonecall2phonecall,note:0 msgid "Note" -msgstr "노트" +msgstr "메모" #. module: crm #: selection:crm.lead,priority:0 @@ -1954,12 +2020,12 @@ msgstr "마감됨" #. module: crm #: view:crm.lead:0 msgid "Open Opportunities" -msgstr "" +msgstr "기회 열기" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead2 msgid "Email Campaign - Services" -msgstr "" +msgstr "이메일 캠페인 - 서비스" #. module: crm #: selection:crm.case.stage,state:0 @@ -1968,22 +2034,22 @@ msgstr "" #: selection:crm.lead.report,state:0 #: selection:crm.phonecall.report,state:0 msgid "Pending" -msgstr "보류" +msgstr "보류 중" #. module: crm #: view:crm.lead:0 msgid "Assigned to Me" -msgstr "" +msgstr "내게 할당됨" #. module: crm #: model:process.transition,name:crm.process_transition_leadopportunity0 msgid "Prospect Opportunity" -msgstr "" +msgstr "잠재기회" #. module: crm #: field:crm.lead,email_cc:0 msgid "Global CC" -msgstr "" +msgstr "전체 참조" #. module: crm #: view:crm.lead:0 @@ -1992,18 +2058,18 @@ msgstr "" #: model:ir.ui.menu,name:crm.menu_crm_case_phone #: model:ir.ui.menu,name:crm.menu_crm_config_phonecall msgid "Phone Calls" -msgstr "" +msgstr "통화" #. module: crm #: view:crm.case.stage:0 msgid "Stage Search" -msgstr "" +msgstr "단계 검색" #. module: crm #: help:crm.lead.report,delay_open:0 #: help:crm.phonecall.report,delay_open:0 msgid "Number of Days to open the case" -msgstr "" +msgstr "사례 개시까지의 소요일수" #. module: crm #: field:crm.lead,phone:0 @@ -2012,7 +2078,7 @@ msgstr "" #: field:crm.phonecall,partner_phone:0 #: field:crm.phonecall2phonecall,phone:0 msgid "Phone" -msgstr "" +msgstr "전화" #. module: crm #: field:crm.case.channel,active:0 @@ -2020,46 +2086,46 @@ msgstr "" #: field:crm.lead,active:0 #: field:crm.phonecall,active:0 msgid "Active" -msgstr "활성" +msgstr "실행 중" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Mandatory Expression" -msgstr "필수 표현" +msgstr "필수 표현식" #. module: crm #: selection:crm.lead2opportunity.partner,action:0 #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Create a new customer" -msgstr "" +msgstr "새로운 고객을 생성" #. module: crm #: field:crm.lead.report,deadline_day:0 msgid "Exp. Closing Day" -msgstr "" +msgstr "예상 마감일" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor2 msgid "Software" -msgstr "" +msgstr "소프트웨어" #. module: crm #: field:crm.case.section,change_responsible:0 msgid "Reassign Escalated" -msgstr "" +msgstr "승급을 재할당" #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.action_report_crm_opportunity #: model:ir.ui.menu,name:crm.menu_report_crm_opportunities_tree msgid "Opportunities Analysis" -msgstr "" +msgstr "기회 분석" #. module: crm #: view:crm.lead:0 msgid "Misc" -msgstr "" +msgstr "기타" #. module: crm #: view:crm.lead:0 @@ -2072,67 +2138,67 @@ msgstr "열기" #: view:crm.lead:0 #: field:crm.lead,city:0 msgid "City" -msgstr "" +msgstr "시구군" #. module: crm #: selection:crm.case.stage,type:0 msgid "Both" -msgstr "" +msgstr "모두" #. module: crm #: view:crm.phonecall:0 msgid "Call Done" -msgstr "" +msgstr "통화 완료" #. module: crm #: view:crm.phonecall:0 #: field:crm.phonecall,user_id:0 msgid "Responsible" -msgstr "책임" +msgstr "담당" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_3 msgid "Direct Marketing" -msgstr "" +msgstr "직거래" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor1 msgid "Product" -msgstr "" +msgstr "상품" #. module: crm #: field:crm.lead.report,creation_year:0 msgid "Creation Year" -msgstr "" +msgstr "생성년도" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Conversion Options" -msgstr "" +msgstr "전환 옵션" #. module: crm #: view:crm.case.section:0 msgid "" "Follow this salesteam to automatically track the events associated to users " "of this team." -msgstr "" +msgstr "이 팀의 사용자와 관련된 행사를 자동으로 추적하기 위해 이 영업사원을 팔로우함." #. module: crm #: view:crm.lead:0 msgid "Address" -msgstr "" +msgstr "주소" #. module: crm #: view:crm.lead:0 msgid "Leads that are assigned to any sales teams I am member of" -msgstr "" +msgstr "내가 속한 영업팀에 할당된 리드" #. module: crm #: help:crm.case.section,alias_id:0 msgid "" "The email address associated with this team. New emails received will " "automatically create new leads assigned to the team." -msgstr "" +msgstr "이 팀과 관련된 이메일 주소. 새로 받은 이메일은 팀에 할당된 새로운 리드를 자동으로 생성합니다." #. module: crm #: view:crm.lead:0 @@ -2144,13 +2210,13 @@ msgstr "리드 검색" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,delay_open:0 msgid "Delay to open" -msgstr "" +msgstr "개시까지의 지연" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0 #: model:ir.ui.menu,name:crm.menu_crm_case_phone_outbound msgid "Scheduled Calls" -msgstr "" +msgstr "예정된 통화" #. module: crm #: field:crm.lead,id:0 @@ -2162,12 +2228,12 @@ msgstr "ID" msgid "" "From which campaign (seminar, marketing campaign, mass mailing, ...) did " "this contact come from?" -msgstr "" +msgstr "이 연락처는 어떤 캠페인(세미나, 홍보, 캠페인, 단체 이메일, ...)으로 인해 생성되었습니까?" #. module: crm #: model:ir.model,name:crm.model_calendar_attendee msgid "Attendee information" -msgstr "" +msgstr "참석자 정보" #. module: crm #: view:crm.segmentation:0 @@ -2177,32 +2243,32 @@ msgstr "세그먼테이션 테스트" #. module: crm #: view:crm.segmentation:0 msgid "Continue Process" -msgstr "프로세스 계속" +msgstr "과정 계속하기" #. module: crm #: selection:crm.lead2opportunity.partner,name:0 #: selection:crm.lead2opportunity.partner.mass,name:0 #: model:ir.actions.act_window,name:crm.action_crm_lead2opportunity_partner msgid "Convert to opportunity" -msgstr "" +msgstr "기회로 전환" #. module: crm #: field:crm.opportunity2phonecall,user_id:0 #: field:crm.phonecall2phonecall,user_id:0 msgid "Assign To" -msgstr "" +msgstr "할당 대상" #. module: crm #: field:crm.lead,date_action_last:0 #: field:crm.phonecall,date_action_last:0 msgid "Last Action" -msgstr "최종 액션" +msgstr "최종 조치" #. module: crm #: field:crm.phonecall,duration:0 #: field:crm.phonecall.report,duration:0 msgid "Duration" -msgstr "" +msgstr "시간" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0 @@ -2219,29 +2285,39 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 통화 일정을 생성하기 위해 클릭하십시오 \n" +"

\n" +" OpenERP는 영업팀이 통화할 대상을 손쉽게 정의하고\n" +" 통화 요약을 기준으로 사후관리를 할 수 있도록 합니다.\n" +"

\n" +" 가져오기 기능을 사용하여 자격을 부여할 잠재고객의 새로운 목록을\n" +" 대량으로 가져올 수 있습니다.\n" +"

\n" +" " #. module: crm #: help:crm.case.stage,fold:0 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 "이 단계는 이 단계에 표시될 기록이 없을 때 상태 표시줄 또는 간판 화면에 나타나지 않습니다." #. module: crm #: field:crm.lead.report,nbr:0 #: field:crm.phonecall.report,nbr:0 msgid "# of Cases" -msgstr "" +msgstr "사례 #" #. module: crm #: help:crm.phonecall,section_id:0 msgid "Sales team to which Case belongs to." -msgstr "" +msgstr "이 사례가 속한 영업팀" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead6 msgid "Banner Ads" -msgstr "" +msgstr "배너 광고" #. module: crm #: field:crm.merge.opportunity,opportunity_ids:0 @@ -2251,7 +2327,7 @@ msgstr "리드/기회" #. module: crm #: field:crm.lead,fax:0 msgid "Fax" -msgstr "" +msgstr "팩스" #. module: crm #: field:crm.lead,company_id:0 @@ -2261,12 +2337,12 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,company_id:0 msgid "Company" -msgstr "" +msgstr "업체" #. module: crm #: selection:crm.segmentation,state:0 msgid "Running" -msgstr "진행 중" +msgstr "실행 중" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity @@ -2276,45 +2352,45 @@ msgstr "기회로 전환된 리드" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won msgid "Opportunity won" -msgstr "" +msgstr "수주에 성공한 기회" #. module: crm #: field:crm.case.categ,object_id:0 msgid "Object Name" -msgstr "" +msgstr "객체명" #. module: crm #: view:crm.phonecall:0 msgid "Phone Calls Assigned to Me or My Team(s)" -msgstr "" +msgstr "나 또는 내 팀에 할당된 통화" #. module: crm #: view:crm.lead:0 msgid "Reset" -msgstr "" +msgstr "재설정" #. module: crm #: view:sale.config.settings:0 msgid "After-Sale Services" -msgstr "" +msgstr "사후 서비스" #. module: crm #: field:crm.case.section,message_ids:0 #: field:crm.lead,message_ids:0 #: field:crm.phonecall,message_ids:0 msgid "Messages" -msgstr "" +msgstr "메시지" #. module: crm #: help:crm.lead,channel_id:0 msgid "Communication channel (mail, direct, phone, ...)" -msgstr "" +msgstr "의사소통 수단 (메일, 대면, 전화, ...)" #. module: crm #: field:crm.opportunity2phonecall,name:0 #: field:crm.phonecall2phonecall,name:0 msgid "Call summary" -msgstr "" +msgstr "통화 요약" #. module: crm #: selection:crm.case.stage,state:0 @@ -2323,18 +2399,18 @@ msgstr "" #: selection:crm.phonecall,state:0 #: selection:crm.phonecall.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "취소됨" #. module: crm #: view:crm.lead:0 msgid "Street..." -msgstr "" +msgstr "도로명..." #. module: crm #: field:crm.lead.report,date_closed:0 #: field:crm.phonecall.report,date_closed:0 msgid "Close Date" -msgstr "" +msgstr "마감일" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_phonecall @@ -2344,84 +2420,86 @@ msgid "" "several criteria and drill down the information, by adding more groups in " "the report." msgstr "" +"이 보고서에서는 통화에 근거한 영업팀의 성과를 분석할 수 있습니다. 여러 범주에 따라 정보를 그룹화하거나 필터를 적용하고, 보고서 내에 " +"더 많은 그룹을 추가하여 정보를 상세하게 검색할 수 있습니다." #. module: crm #: field:crm.case.stage,fold:0 msgid "Fold by Default" -msgstr "" +msgstr "기본으로 접기" #. module: crm #: field:crm.case.stage,state:0 msgid "Related Status" -msgstr "" +msgstr "관련된 상태" #. module: crm #: field:crm.phonecall,name:0 msgid "Call Summary" -msgstr "" +msgstr "통화 요약" #. module: crm #: field:crm.lead,color:0 msgid "Color Index" -msgstr "" +msgstr "컬러 색인" #. module: crm #: field:crm.segmentation.line,expr_operator:0 msgid "Operator" -msgstr "오퍼레이터" +msgstr "운영자" #. module: crm #: view:crm.lead:0 #: model:ir.actions.act_window,name:crm.opportunity2phonecall_act msgid "Schedule/Log Call" -msgstr "" +msgstr "통화 일정 생성/기록" #. module: crm #: view:crm.merge.opportunity:0 msgid "Select Leads/Opportunities" -msgstr "리드/기회 선택" +msgstr "리드/기회를 선택" #. module: crm #: selection:crm.phonecall,state:0 msgid "Confirmed" -msgstr "" +msgstr "확인됨" #. module: crm #: model:ir.model,name:crm.model_crm_partner_binding msgid "Handle partner binding or generation in CRM wizards." -msgstr "" +msgstr "CRM 마법사에서 협력업체 결합 또는 생성을 처리함." #. module: crm #: model:ir.actions.act_window,name:crm.act_oppor_stage_user msgid "Planned Revenue By User and Stage" -msgstr "" +msgstr "사용자 및 단계별 예상수익" #. module: crm #: view:crm.phonecall:0 msgid "Confirm" -msgstr "" +msgstr "확인" #. module: crm #: view:crm.lead:0 msgid "Unread messages" -msgstr "" +msgstr "읽지 않은 메시지" #. module: crm #: field:crm.phonecall.report,section_id:0 msgid "Section" -msgstr "섹션" +msgstr "부서" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Optional Expression" -msgstr "선택적 표현" +msgstr "선택적 표현식" #. module: crm #: field:crm.case.section,message_follower_ids:0 #: field:crm.lead,message_follower_ids:0 #: field:crm.phonecall,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "팔로워" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all @@ -2440,11 +2518,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 부적합한 리드를 생성하기 위해 클릭하십시오.\n" +"

\n" +" 기회 또는 고객을 생성하기 전에 자격심사 단계가\n" +" 필요할 경우 리드를 사용하십시오. 이것은 획득한 명함, 웹 사이트에서\n" +" 작성된 연락처 양식, 또는 가져오는 부적합한 잠재고객의 파일 등이\n" +" 될 수 있습니다.\n" +"

\n" +" 일단 적합성이 확인되면, 리드는 주소록에 사업 기회\n" +" 또는 신규 고객으로 전환될 수 있습니다.\n" +"

\n" +" " #. module: crm #: field:sale.config.settings,fetchmail_lead:0 msgid "Create leads from incoming mails" -msgstr "수신 메일로부터 리드 생성" +msgstr "수신 메일로부터 리드를 생성" #. module: crm #: view:crm.lead:0 @@ -2460,19 +2550,19 @@ msgstr "이메일" #: view:crm.lead.report:0 #: field:crm.lead.report,channel_id:0 msgid "Channel" -msgstr "채널" +msgstr "수단" #. module: crm #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Schedule Call" -msgstr "" +msgstr "통화 일정 생성" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "My Sales Team(s)" -msgstr "" +msgstr "내 영업팀" #. module: crm #: help:crm.segmentation,exclusif:0 @@ -2482,6 +2572,8 @@ msgid "" "If checked, remove the category from partners that doesn't match " "segmentation criterions" msgstr "" +"분류가 분할 기준과 일치하는 협력업체로 제한될 경우 체크하십시오. \n" +"체크했을 경우, 기준과 일치하지 않는 협력업체로부터 분류를 제거하십시오." #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 @@ -2491,7 +2583,7 @@ msgstr "리드로부터 사업 기회를 생성하는 중" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead3 msgid "Email Campaign - Products" -msgstr "" +msgstr "캠페인 이메일 전송 - 상품" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 @@ -2510,42 +2602,53 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 통화의 요약을 기록하기 위해 클릭하십시오. \n" +"

\n" +" OpenERP는 수신전화를 그 때마다 기록하여 고객과의\n" +" 의사소통 기록을 추적하고 다른 팀 구성원에게\n" +" 알릴 수 있도록 합니다. \n" +"

\n" +" 통화에 대한 사후관리를 위해 다른 통화 요청, 미팅 또는\n" +" 기회를 촉발할 수 있습니다.\n" +"

\n" +" " #. module: crm #: model:process.node,note:crm.process_node_leads0 msgid "Very first contact with new prospect" -msgstr "" +msgstr "새로운 잠재고객과의 최초 연락" #. module: crm #: view:res.partner:0 msgid "Calls" -msgstr "" +msgstr "통화" #. module: crm #: view:crm.lead:0 msgid "Cancel Case" -msgstr "" +msgstr "사례 취소" #. module: crm #: field:crm.case.stage,on_change:0 msgid "Change Probability Automatically" -msgstr "" +msgstr "확률을 자동으로 변경" #. module: crm #: view:crm.phonecall.report:0 msgid "My Phone Calls" -msgstr "" +msgstr "내 통화" #. module: crm #: model:crm.case.stage,name:crm.stage_lead3 msgid "Qualification" -msgstr "" +msgstr "자격" #. module: crm #: field:crm.lead2opportunity.partner,name:0 #: field:crm.lead2opportunity.partner.mass,name:0 msgid "Conversion Action" -msgstr "" +msgstr "전환 조치" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_categ_action @@ -2561,47 +2664,56 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 새로운 판매 태그를 정의하기 위해 클릭하십시오.\n" +"

\n" +" 리드와 기회를 더욱 효율적으로 분류하고 분석하기 위해\n" +" 자사의 활동에 걸맞는 특정한 태그를 생성하여십시오.\n" +" 이러한 분류는 예를 들어 상품 구조 또는 실행 중인\n" +" 다른 유형의 판매를 반영할 수도 있습니다.\n" +"

\n" +" " #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "August" -msgstr "" +msgstr "8월" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_lost #: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost msgid "Opportunity Lost" -msgstr "" +msgstr "기회를 상실함" #. module: crm #: field:crm.lead.report,deadline_month:0 msgid "Exp. Closing Month" -msgstr "" +msgstr "예상 마감월" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "December" -msgstr "" +msgstr "12월" #. module: crm #: view:crm.phonecall:0 msgid "Date of Call" -msgstr "" +msgstr "통화월" #. module: crm #: view:crm.lead:0 #: field:crm.lead,date_deadline:0 msgid "Expected Closing" -msgstr "" +msgstr "예상 마감일" #. module: crm #: model:ir.model,name:crm.model_crm_opportunity2phonecall msgid "Opportunity to Phonecall" -msgstr "" +msgstr "통화 예정인 기회" #. module: crm #: view:crm.segmentation:0 @@ -2611,35 +2723,35 @@ msgstr "판매 구매" #. module: crm #: view:crm.lead:0 msgid "Schedule Meeting" -msgstr "" +msgstr "미팅 일정 생성" #. module: crm #: field:crm.lead.report,deadline_year:0 msgid "Ex. Closing Year" -msgstr "" +msgstr "예상 마감년도" #. module: crm #: model:ir.actions.client,name:crm.action_client_crm_menu msgid "Open Sale Menu" -msgstr "" +msgstr "판매 메뉴 열기" #. module: crm #: field:crm.lead,date_open:0 #: field:crm.phonecall,date_open:0 msgid "Opened" -msgstr "" +msgstr "열림" #. module: crm #: view:crm.case.section:0 #: field:crm.case.section,member_ids:0 msgid "Team Members" -msgstr "" +msgstr "팀 구성원" #. module: crm #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Schedule/Log a Call" -msgstr "" +msgstr "통화 일정 생성/기록" #. module: crm #: field:crm.lead,planned_cost:0 @@ -2649,7 +2761,7 @@ msgstr "계획된 비용" #. module: crm #: help:crm.lead,date_deadline:0 msgid "Estimate of the date on which the opportunity will be won." -msgstr "" +msgstr "기회를 얻기까지의 예상일" #. module: crm #: help:crm.lead,email_cc:0 @@ -2658,23 +2770,25 @@ msgid "" "outbound emails for this record before being sent. Separate multiple email " "addresses with a comma" msgstr "" +"이 이메일 주소들은 이 기록에 대한 모든 수신 및 발신 이메일이 발송되기 전에 참조 필드에 추가됩니다. 다수의 이메일 주소를 쉼표로 " +"분리하십시오" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_incoming0 #: model:ir.ui.menu,name:crm.menu_crm_case_phone_inbound msgid "Logged Calls" -msgstr "" +msgstr "기록된 통화" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_won #: model:mail.message.subtype,name:crm.mt_salesteam_lead_won msgid "Opportunity Won" -msgstr "" +msgstr "기회를 얻음" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree msgid "Cases by Sales Team" -msgstr "" +msgstr "영업팀의 사례" #. module: crm #: view:crm.lead:0 @@ -2682,17 +2796,17 @@ msgstr "" #: model:ir.model,name:crm.model_crm_meeting #: model:process.node,name:crm.process_node_meeting0 msgid "Meeting" -msgstr "" +msgstr "미팅" #. module: crm #: model:ir.model,name:crm.model_crm_case_categ msgid "Category of Case" -msgstr "" +msgstr "사례의 분류" #. module: crm #: view:board.board:0 msgid "Planned Revenue by Stage and User" -msgstr "" +msgstr "단계 및 사용자별 예상수익" #. module: crm #: selection:crm.lead,priority:0 @@ -2705,121 +2819,121 @@ msgstr "보통" #. module: crm #: field:crm.lead,street2:0 msgid "Street2" -msgstr "" +msgstr "건물번호" #. module: crm #: field:sale.config.settings,module_crm_helpdesk:0 msgid "Manage Helpdesk and Support" -msgstr "" +msgstr "헬프데스크 및 지원 관리" #. module: crm #: field:crm.lead.report,delay_open:0 msgid "Delay to Open" -msgstr "" +msgstr "개시까지의 지연일" #. module: crm #: field:crm.lead.report,user_id:0 #: field:crm.phonecall.report,user_id:0 msgid "User" -msgstr "" +msgstr "사용자" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "November" -msgstr "" +msgstr "11월" #. module: crm #: view:crm.lead.report:0 #: model:ir.actions.act_window,name:crm.act_opportunity_stage msgid "Opportunities By Stage" -msgstr "" +msgstr "단계별 기회" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "January" -msgstr "" +msgstr "1월" #. module: crm #: model:process.process,name:crm.process_process_contractprocess0 msgid "Contract" -msgstr "" +msgstr "계약" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead4 msgid "Twitter Ads" -msgstr "" +msgstr "트위터 광고" #. module: crm #: field:crm.lead.report,creation_day:0 msgid "Creation Day" -msgstr "" +msgstr "생성일" #. module: crm #: view:crm.lead.report:0 msgid "Planned Revenues" -msgstr "" +msgstr "예상수익" #. module: crm #: help:crm.lead.report,deadline_year:0 msgid "Expected closing year" -msgstr "" +msgstr "예상 마감년도" #. module: crm #: view:crm.lead:0 msgid "e.g. Call for proposal" -msgstr "" +msgstr "예시: 제안을 위한 통화" #. module: crm #: model:ir.model,name:crm.model_crm_case_stage msgid "Stage of case" -msgstr "" +msgstr "사례의 단계" #. module: crm #: code:addons/crm/crm_lead.py:569 #, python-format msgid "Merged opportunity" -msgstr "" +msgstr "병합된 기회" #. module: crm #: view:crm.lead:0 msgid "Unassigned" -msgstr "" +msgstr "할당되지 않음" #. module: crm #: selection:crm.opportunity2phonecall,action:0 #: selection:crm.phonecall2phonecall,action:0 msgid "Schedule a call" -msgstr "" +msgstr "통화 일정을 생성" #. module: crm #: view:crm.lead:0 msgid "Categorization" -msgstr "" +msgstr "분류화" #. module: crm #: view:crm.phonecall2phonecall:0 msgid "Log Call" -msgstr "" +msgstr "통화 기록" #. module: crm #: help:sale.config.settings,group_fund_raising:0 msgid "Allows you to trace and manage your activities for fund raising." -msgstr "" +msgstr "자금 모금을 위한 활동을 추적 및 관리할 수 있도록 함." #. module: crm #: field:crm.meeting,phonecall_id:0 #: model:ir.model,name:crm.model_crm_phonecall msgid "Phonecall" -msgstr "" +msgstr "통화" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls that are assigned to one of the sale teams I manage" -msgstr "" +msgstr "내가 관리하는 영업팀에게 할당된 통화" #. module: crm #: view:crm.lead:0 @@ -2833,12 +2947,12 @@ msgstr "" #: selection:crm.lead,state:0 #: view:crm.lead.report:0 msgid "New" -msgstr "" +msgstr "새로 만들기" #. module: crm #: field:crm.lead,function:0 msgid "Function" -msgstr "" +msgstr "함수" #. module: crm #: field:crm.case.section,note:0 @@ -2864,14 +2978,14 @@ msgstr "설명" #: field:crm.phonecall2phonecall,section_id:0 #: field:res.partner,section_id:0 msgid "Sales Team" -msgstr "" +msgstr "영업팀" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "May" -msgstr "" +msgstr "5월" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_channel_action @@ -2889,16 +3003,27 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 새로운 수단을 정의하기 위해 클릭하십시오.\n" +"

\n" +" 수단을 사용하여 리드와 기회의 근원을 추적하십시오. 수단은\n" +" 보고서 작성 시 홍보의 노력에 대한 영업성과를\n" +" 분석하기 위해 대부분 사용됩니다.\n" +"

\n" +" 수단의 몇 가지 예: 웹 사이트, 통화\n" +" 캠페인, 소매업체 등.\n" +"

\n" +" " #. module: crm #: view:crm.lead:0 msgid "Internal Notes" -msgstr "" +msgstr "내부 메모" #. module: crm #: view:crm.lead:0 msgid "New Opportunities" -msgstr "" +msgstr "새로운 기회" #. module: crm #: field:crm.segmentation.line,operator:0 @@ -2908,22 +3033,22 @@ msgstr "필수 / 선택" #. module: crm #: field:crm.lead,street:0 msgid "Street" -msgstr "" +msgstr "도로명" #. module: crm #: field:crm.lead,referred:0 msgid "Referred By" -msgstr "" +msgstr "소개자" #. module: crm #: view:crm.phonecall:0 msgid "Reset to Todo" -msgstr "" +msgstr "과제를 재설정" #. module: crm #: field:crm.case.section,working_hours:0 msgid "Working Hours" -msgstr "" +msgstr "근무시간" #. module: crm #: code:addons/crm/crm_lead.py:968 @@ -2933,31 +3058,31 @@ msgstr "" #: field:crm.partner.binding,partner_id:0 #, python-format msgid "Customer" -msgstr "" +msgstr "고객" #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "February" -msgstr "" +msgstr "2월" #. module: crm #: view:crm.phonecall:0 msgid "Schedule a Meeting" -msgstr "" +msgstr "미팅 일정 생성" #. module: crm #: model:crm.case.stage,name:crm.stage_lead8 #: view:crm.lead:0 msgid "Lost" -msgstr "" +msgstr "상실함" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 #, python-format msgid "Closed/Cancelled leads cannot be converted into opportunities." -msgstr "종료/취소된 리드는 기회로 전환될 수 없습니다." +msgstr "마감/취소된 리드는 기회로 전환될 수 없습니다." #. module: crm #: view:crm.lead:0 @@ -2965,7 +3090,7 @@ msgstr "종료/취소된 리드는 기회로 전환될 수 없습니다." #: view:crm.lead.report:0 #: field:crm.lead.report,country_id:0 msgid "Country" -msgstr "" +msgstr "국가" #. module: crm #: view:crm.lead:0 @@ -2973,49 +3098,49 @@ msgstr "" #: view:crm.lead2opportunity.partner.mass:0 #: view:crm.phonecall:0 msgid "Convert to Opportunity" -msgstr "" +msgstr "기회로 전환" #. module: crm #: help:crm.phonecall,email_from:0 msgid "These people will receive email." -msgstr "" +msgstr "이 사람들은 이메일을 받을 것입니다." #. module: crm #: selection:crm.lead.report,creation_month:0 #: selection:crm.lead.report,deadline_month:0 #: selection:crm.phonecall.report,month:0 msgid "April" -msgstr "" +msgstr "4월" #. module: crm #: field:crm.case.resource.type,name:0 msgid "Campaign Name" -msgstr "" +msgstr "캠페인명" #. module: crm #: view:crm.segmentation:0 msgid "Profiling" -msgstr "프로파일링" +msgstr "정보 수집" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall_report msgid "Phone calls by user and section" -msgstr "" +msgstr "사용자 및 부서별 통화" #. module: crm #: model:crm.case.stage,name:crm.stage_lead5 msgid "Negotiation" -msgstr "" +msgstr "협상" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2phonecall msgid "Phonecall To Phonecall" -msgstr "" +msgstr "통화해야 할 통화" #. module: crm #: field:crm.case.stage,sequence:0 msgid "Sequence" -msgstr "시퀀스" +msgstr "순서" #. module: crm #: field:crm.segmentation.line,expr_name:0 @@ -3025,30 +3150,30 @@ msgstr "변수 컨트롤" #. module: crm #: model:crm.case.stage,name:crm.stage_lead4 msgid "Proposition" -msgstr "" +msgstr "제안" #. module: crm #: view:crm.phonecall:0 #: field:res.partner,phonecall_ids:0 msgid "Phonecalls" -msgstr "" +msgstr "통화" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,name:0 msgid "Year" -msgstr "" +msgstr "년도" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead8 msgid "Newsletter" -msgstr "" +msgstr "뉴스레터" #. module: crm #: model:mail.message.subtype,name:crm.mt_salesteam_lead_stage msgid "Opportunity Stage Changed" -msgstr "" +msgstr "기회 단계가 변경됨" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_stage_act @@ -3062,3 +3187,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 리드/기회 진행과정에서 새로운 단계를 설정하기 위해 클릭하십시오.\n" +"

\n" +" 단계는 영업사원이 특정 리드/기회에 대한 판매 주기 상의\n" +" 위치를 손쉽게 추적할 수 있도록 합니다.\n" +"

\n" +" " diff --git a/addons/crm/i18n/mk.po b/addons/crm/i18n/mk.po index 6d3c2b7569e..9485a9a0e9c 100644 --- a/addons/crm/i18n/mk.po +++ b/addons/crm/i18n/mk.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2013. # Ivica Dimitrijev , 2013. +# Sofce Dimitrijeva , 2013. msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: Ivica Dimitrijev \n" "POT-Creation-Date: 2013-03-07 08:36+0000\n" -"PO-Revision-Date: 2013-03-02 10:10+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Eskon inzenering\n" +"PO-Revision-Date: 2013-03-28 22:23+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:35+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -125,7 +126,7 @@ msgstr "Обука" #: model:ir.actions.act_window,name:crm.crm_lead_categ_action #: model:ir.ui.menu,name:crm.menu_crm_lead_categ msgid "Sales Tags" -msgstr "" +msgstr "Тагови за продажба" #. module: crm #: view:crm.lead.report:0 @@ -135,7 +136,7 @@ msgstr "" #. module: crm #: view:crm.phonecall:0 msgid "Cancel Call" -msgstr "" +msgstr "Откажи повик" #. module: crm #: help:crm.lead.report,creation_day:0 @@ -181,6 +182,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 "" +"Дава резиме на комуникација (број на пораки, ...). Ова резиме е директно во " +"html формат со цел да биде вметнато во kanban приказ." #. module: crm #: code:addons/crm/crm_lead.py:624 @@ -226,7 +229,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Opportunities that are assigned to me" -msgstr "" +msgstr "Можности кои ми се доделени мене" #. module: crm #: field:res.partner,meeting_count:0 @@ -246,7 +249,7 @@ msgstr "Критериум" #. module: crm #: view:crm.lead:0 msgid "Assigned to My Team(s)" -msgstr "" +msgstr "Доделено на мојот Тим(ови)" #. module: crm #: view:crm.segmentation:0 @@ -327,6 +330,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да дефинирате нова сегментација на купувач.\n" +"

\n" +" Креирајте категории кои може да ги доделите на вашите " +"контакти за\n" +" подобро да ги менаџирате вашите врски со нив\n" +" Алатката за сегментација може да додели категории на " +"контактите во\n" +" во согласност со критериумите кои сте ги подесиле.\n" +"

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 @@ -382,10 +396,10 @@ msgstr "" "

\n" " Кликнете за да креирате можност поврзана со овој клиент.\n" "

\n" -" Use opportunities to keep track of your sales pipeline, " -"follow\n" -" up potential sales and better forecast your future " -"revenues.\n" +" Употребете ги можностите за да ги следите вашите продажни " +"канали,\n" +" потенцијалните продажби и за подобро предвидување на идните " +"приходи.\n" "

\n" " Ќе може да ги планирате состаноците и телефонските разговори " "од\n" @@ -437,7 +451,7 @@ msgstr "Водач на тим" #: code:addons/crm/crm_lead.py:1032 #, python-format msgid "%s a call for %s.%s" -msgstr "" +msgstr "%s повик за %s.%s" #. module: crm #: help:crm.case.stage,probability:0 @@ -558,7 +572,7 @@ msgstr "Планиран приход" #: code:addons/crm/crm_lead.py:970 #, python-format msgid "Customer Email" -msgstr "" +msgstr "Е-пошта накупувач" #. module: crm #: field:crm.lead,planned_revenue:0 @@ -620,6 +634,8 @@ msgid "" "Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' " "+object.partner_id.name or '']]" msgstr "" +"Потсетник за Lead: [[object.id ]] [[object.partner_id and 'of ' " +"+object.partner_id.name or '']]" #. module: crm #: code:addons/crm/crm_lead.py:745 @@ -628,6 +644,8 @@ msgid "" "No customer name defined. Please fill one of the following fields: Company " "Name, Contact Name or Email (\"Name \")" msgstr "" +"Нема дефинирано име на купувач. Пополнете едно од следниве полиња: Име на " +"компанија, Име или Е-пошта на контакт (\"Name \")" #. module: crm #: view:crm.segmentation:0 @@ -787,7 +805,7 @@ msgstr "Претвори во можности" #. module: crm #: model:ir.model,name:crm.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: crm #: view:crm.segmentation:0 @@ -809,8 +827,8 @@ msgstr "Барај телефонски повици" msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" msgstr "" -"Leads/Можности кои се доделени на еден од тимовите за продажба кој го " -"менаџирам" +"Траги/Можности кои се доделени на еден од тимовите за продажба кој го " +"управувам" #. module: crm #: field:crm.segmentation.line,expr_value:0 @@ -876,7 +894,7 @@ msgstr "Барања" #. module: crm #: field:crm.lead,zip:0 msgid "Zip" -msgstr "" +msgstr "Поштенски број" #. module: crm #: view:crm.phonecall:0 @@ -969,12 +987,12 @@ msgstr "Доколку се означени новите пораки, потр #. module: crm #: field:crm.lead,day_open:0 msgid "Days to Open" -msgstr "Денови до отвори" +msgstr "Денови до отварање" #. module: crm #: view:crm.lead:0 msgid "ZIP" -msgstr "" +msgstr "Поштенски број" #. module: crm #: field:crm.lead,mobile:0 @@ -1137,7 +1155,7 @@ msgstr "Најава на корисник" #. module: crm #: view:crm.lead:0 msgid "No salesperson" -msgstr "" +msgstr "Нема продавач" #. module: crm #: view:crm.phonecall.report:0 @@ -1234,7 +1252,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "oe_kanban_text_red" -msgstr "" +msgstr "oe_kanban_text_red" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act @@ -1313,7 +1331,7 @@ msgstr "Статус на извршување" #. module: crm #: view:crm.opportunity2phonecall:0 msgid "Log call" -msgstr "" +msgstr "Најави повик" #. module: crm #: field:crm.lead,day_close:0 @@ -1330,7 +1348,7 @@ msgstr "непознато" #: field:crm.lead,message_is_follower:0 #: field:crm.phonecall,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Пратител" #. module: crm #: field:crm.opportunity2phonecall,date:0 @@ -1404,7 +1422,7 @@ msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Description" -msgstr "" +msgstr "Опис на сегментација" #. module: crm #: code:addons/crm/crm_lead.py:565 @@ -1430,7 +1448,7 @@ msgstr "Карактеристики" #. module: crm #: field:crm.case.section,child_ids:0 msgid "Child Teams" -msgstr "Child тимови" +msgstr "Тимови дете" #. module: crm #: view:crm.phonecall.report:0 @@ -1504,7 +1522,7 @@ msgstr "Спој leads/можности" #. module: crm #: help:crm.case.stage,sequence:0 msgid "Used to order stages. Lower is better." -msgstr "" +msgstr "Се користи за подредување на етапите. Помалото е подобро." #. module: crm #: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action @@ -1519,7 +1537,7 @@ msgstr "Leads/Можности кои се во состојба отворен #. module: crm #: view:crm.lead:0 msgid "Opportunities that are assigned to any sales teams I am member of" -msgstr "" +msgstr "Можности кои се доделени на продачен тим на кој сум член" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage @@ -1647,7 +1665,7 @@ msgstr "Групирај по..." #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail msgid "${object.name}" -msgstr "" +msgstr "${object.name}" #. module: crm #: view:crm.merge.opportunity:0 @@ -1712,7 +1730,7 @@ msgstr "Партнерот е криран." #. module: crm #: field:sale.config.settings,module_crm_claim:0 msgid "Manage Customer Claims" -msgstr "Менаџирај ги барањата на клиентите" +msgstr "Управувај ги барањата на клиентите" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_lead @@ -1749,7 +1767,7 @@ msgstr "Белешки" #. module: crm #: view:crm.opportunity2phonecall:0 msgid "Call Description" -msgstr "" +msgstr "Опис на повик" #. module: crm #: field:crm.lead,partner_name:0 @@ -1853,7 +1871,7 @@ msgstr "" #. module: crm #: view:sale.config.settings:0 msgid "On Mail Server" -msgstr "" +msgstr "На серверот за пошта" #. module: crm #: model:ir.actions.act_window,name:crm.open_board_statistical_dash @@ -1880,7 +1898,7 @@ msgstr "Продажби по телефон" #. module: crm #: model:ir.model,name:crm.model_crm_segmentation_line msgid "Segmentation line" -msgstr "" +msgstr "Ставка на сегментација" #. module: crm #: view:crm.opportunity2phonecall:0 @@ -1936,7 +1954,7 @@ msgstr "Тимови за продажба" #. module: crm #: field:crm.case.stage,case_default:0 msgid "Default to New Sales Team" -msgstr "" +msgstr "Стандардно за Нов продажен тим" #. module: crm #: view:crm.lead:0 @@ -2063,7 +2081,7 @@ msgstr "Чекам" #. module: crm #: view:crm.lead:0 msgid "Assigned to Me" -msgstr "" +msgstr "Доделено ми е мене" #. module: crm #: model:process.transition,name:crm.process_transition_leadopportunity0 @@ -2127,7 +2145,7 @@ msgstr "Креирај нов клиент" #. module: crm #: field:crm.lead.report,deadline_day:0 msgid "Exp. Closing Day" -msgstr "" +msgstr "Очекуван датум на затварање" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor2 @@ -2335,6 +2353,8 @@ 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 "" +"Оваа етапа не е видлива, на пример во статусната лента или kanban приказ, " +"кога нема записи за прикажување во таа етапа." #. module: crm #: field:crm.lead.report,nbr:0 @@ -2437,7 +2457,7 @@ msgstr "Откажано" #. module: crm #: view:crm.lead:0 msgid "Street..." -msgstr "" +msgstr "Улица..." #. module: crm #: field:crm.lead.report,date_closed:0 @@ -2534,7 +2554,7 @@ msgstr "Опционо изразување" #: field:crm.lead,message_follower_ids:0 #: field:crm.phonecall,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Пратители" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all @@ -2641,7 +2661,7 @@ msgstr "Повици" #. module: crm #: view:crm.lead:0 msgid "Cancel Case" -msgstr "" +msgstr "Откажи предмет" #. module: crm #: field:crm.case.stage,on_change:0 @@ -2842,7 +2862,7 @@ msgstr "Улица2" #. module: crm #: field:sale.config.settings,module_crm_helpdesk:0 msgid "Manage Helpdesk and Support" -msgstr "" +msgstr "Управувај со Помош и Поддршка" #. module: crm #: field:crm.lead.report,delay_open:0 @@ -2903,7 +2923,7 @@ msgstr "Очекувана година на затварање" #. module: crm #: view:crm.lead:0 msgid "e.g. Call for proposal" -msgstr "" +msgstr "на пр. Повик за предлог" #. module: crm #: model:ir.model,name:crm.model_crm_case_stage @@ -2914,12 +2934,12 @@ msgstr "Етапа од случај" #: code:addons/crm/crm_lead.py:569 #, python-format msgid "Merged opportunity" -msgstr "" +msgstr "Споена можност" #. module: crm #: view:crm.lead:0 msgid "Unassigned" -msgstr "" +msgstr "Недоделено" #. module: crm #: selection:crm.opportunity2phonecall,action:0 @@ -2955,12 +2975,12 @@ msgstr "Телефонски повик" msgid "Phone calls that are assigned to one of the sale teams I manage" msgstr "" "Телефонски повици кои се доделени на еден од тимовите за продажба кој го " -"менаџирам" +"управувам" #. module: crm #: view:crm.lead:0 msgid "at" -msgstr "" +msgstr "на" #. module: crm #: model:crm.case.stage,name:crm.stage_lead1 @@ -3225,13 +3245,13 @@ msgstr "" #~ msgid "%s a call for the %s." #~ msgstr "%s повик за %s." -#~ msgid "Leads that are assigned to one of the sale teams I manage, or to me" -#~ msgstr "" -#~ "Leads кои се доделени на некои од продажните тимови кои ги менаџирам, или на " -#~ "мене" - #~ msgid "Opportunity ${object.name | h})" #~ msgstr "Можност ${object.name | h})" #~ msgid "Send Mail" #~ msgstr "Испрати маил" + +#~ msgid "Leads that are assigned to one of the sale teams I manage, or to me" +#~ msgstr "" +#~ "Траги кои се доделени на мене или на некои од продажните тимови кои ги " +#~ "управувам, или на мене" diff --git a/addons/crm_claim/i18n/ko.po b/addons/crm_claim/i18n/ko.po new file mode 100644 index 00000000000..762930044ee --- /dev/null +++ b/addons/crm_claim/i18n/ko.po @@ -0,0 +1,906 @@ +# Korean 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-03-29 04:01+0000\n" +"Last-Translator: Josh Kim \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: crm_claim +#: help:crm.claim.stage,fold:0 +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 "이 단계는 이 단계에 표시될 기록이 없을 때 상태 표시줄 또는 간판 화면에 나타나지 않습니다." + +#. module: crm_claim +#: field:crm.claim.report,nbr:0 +msgid "# of Cases" +msgstr "사례 #" + +#. module: crm_claim +#: view:crm.claim:0 +#: view:crm.claim.report:0 +msgid "Group By..." +msgstr "분류 기준..." + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Responsibilities" +msgstr "책무" + +#. module: crm_claim +#: help:sale.config.settings,fetchmail_claim:0 +msgid "" +"Allows you to configure your incoming mail server, and create claims from " +"incoming emails." +msgstr "수신메일서버를 설정하고 수신메일로부터 클레임을 생성할 수 있도록 함." + +#. module: crm_claim +#: model:ir.model,name:crm_claim.model_crm_claim_stage +msgid "Claim stages" +msgstr "클레임 단계" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "March" +msgstr "3월" + +#. module: crm_claim +#: field:crm.claim.report,delay_close:0 +msgid "Delay to close" +msgstr "마감까지의 지연" + +#. module: crm_claim +#: field:crm.claim,message_unread:0 +msgid "Unread Messages" +msgstr "읽지 않은 메시지" + +#. module: crm_claim +#: field:crm.claim,resolution:0 +msgid "Resolution" +msgstr "해결" + +#. module: crm_claim +#: field:crm.claim,company_id:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,company_id:0 +msgid "Company" +msgstr "업체" + +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.crm_claim_categ_action +msgid "" +"

\n" +" Click to create a claim category.\n" +"

\n" +" Create claim categories to better manage and classify your\n" +" claims. Some example of claims can be: preventive action,\n" +" corrective action.\n" +"

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

\n" +" 클레임 목록을 생성하려면 클릭하십시오.\n" +"

\n" +" 클레임 목록을 생성하여 클레임을 더욱 잘 관리하고 분류하십시오.\n" +" 클레임의 몇몇 예시는 다음과 같습니다: 예방조치,\n" +" 시정조치.\n" +"

\n" +" " + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "#Claim" +msgstr "클레임 #" + +#. module: crm_claim +#: field:crm.claim.stage,name:0 +msgid "Stage Name" +msgstr "단계명" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Salesperson" +msgstr "영업사원" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "Highest" +msgstr "가장 높음" + +#. module: crm_claim +#: view:crm.claim.report:0 +#: field:crm.claim.report,day:0 +msgid "Day" +msgstr "일" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Claim Description" +msgstr "클레임 설명" + +#. module: crm_claim +#: field:crm.claim,message_ids:0 +msgid "Messages" +msgstr "메시지" + +#. module: crm_claim +#: model:crm.case.categ,name:crm_claim.categ_claim1 +msgid "Factual Claims" +msgstr "사실에 근거한 클레임" + +#. module: crm_claim +#: selection:crm.claim,state:0 +#: selection:crm.claim.report,state:0 +#: selection:crm.claim.stage,state:0 +msgid "Cancelled" +msgstr "취소됨" + +#. module: crm_claim +#: model:crm.case.resource.type,name:crm_claim.type_claim2 +msgid "Preventive" +msgstr "예방" + +#. module: crm_claim +#: help:crm.claim,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "체크할 경우, 새로운 메시지를 주목할 필요가 있습니다." + +#. module: crm_claim +#: field:crm.claim.report,date_closed:0 +msgid "Close Date" +msgstr "마감일" + +#. module: crm_claim +#: view:res.partner:0 +msgid "False" +msgstr "거짓" + +#. module: crm_claim +#: field:crm.claim,ref:0 +msgid "Reference" +msgstr "참조" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Date of claim" +msgstr "클레임 날짜" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "# Mails" +msgstr "메일 #" + +#. module: crm_claim +#: help:crm.claim,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "대화 요약 (메시지 개수, ...)을 내포함. 이 요약은 간판 화면에 삽입할 수 있도록 html 형식으로 직접 작성됩니다." + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,date_deadline:0 +#: field:crm.claim.report,date_deadline:0 +msgid "Deadline" +msgstr "기한" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,partner_id:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,partner_id:0 +#: model:ir.model,name:crm_claim.model_res_partner +msgid "Partner" +msgstr "협력업체" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Follow Up" +msgstr "후속조치" + +#. module: crm_claim +#: selection:crm.claim,type_action:0 +#: selection:crm.claim.report,type_action:0 +msgid "Preventive Action" +msgstr "예방조치" + +#. module: crm_claim +#: field:crm.claim.report,section_id:0 +msgid "Section" +msgstr "부서" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Root Causes" +msgstr "근본 원인" + +#. module: crm_claim +#: field:crm.claim,user_fault:0 +msgid "Trouble Responsible" +msgstr "문제 담당" + +#. module: crm_claim +#: field:crm.claim,priority:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,priority:0 +msgid "Priority" +msgstr "우선 순위" + +#. module: crm_claim +#: field:crm.claim.stage,fold:0 +msgid "Hide in Views when Empty" +msgstr "비어있으면 화면에서 숨김" + +#. module: crm_claim +#: field:crm.claim,message_follower_ids:0 +msgid "Followers" +msgstr "팔로워" + +#. module: crm_claim +#: view:crm.claim:0 +#: selection:crm.claim,state:0 +#: view:crm.claim.report:0 +#: model:crm.claim.stage,name:crm_claim.stage_claim1 +#: selection:crm.claim.stage,state:0 +msgid "New" +msgstr "새로 만들기" + +#. module: crm_claim +#: field:crm.claim.stage,section_ids:0 +msgid "Sections" +msgstr "부서" + +#. module: crm_claim +#: field:crm.claim,email_from:0 +msgid "Email" +msgstr "이메일" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "Lowest" +msgstr "가장 낮음" + +#. module: crm_claim +#: field:crm.claim,action_next:0 +msgid "Next Action" +msgstr "다음 액션" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "My Sales Team(s)" +msgstr "내 영업팀" + +#. module: crm_claim +#: field:crm.claim,create_date:0 +msgid "Creation Date" +msgstr "생성일" + +#. module: crm_claim +#: field:crm.claim,name:0 +msgid "Claim Subject" +msgstr "클레임 주제" + +#. module: crm_claim +#: model:crm.claim.stage,name:crm_claim.stage_claim3 +msgid "Rejected" +msgstr "거부됨" + +#. module: crm_claim +#: field:crm.claim,date_action_next:0 +msgid "Next Action Date" +msgstr "다음 액션일" + +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.action_report_crm_claim +msgid "" +"Have a general overview of all claims processed in the system by sorting " +"them with specific criteria." +msgstr "클레임을 특정 기준으로 분류하여 시스템에서 처리된 모든 클레임의 일반 개요를 소유하십시오." + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "July" +msgstr "7월" + +#. module: crm_claim +#: view:crm.claim.stage:0 +#: model:ir.actions.act_window,name:crm_claim.crm_claim_stage_act +msgid "Claim Stages" +msgstr "클레임 단계" + +#. module: crm_claim +#: model:ir.ui.menu,name:crm_claim.menu_crm_case_claim-act +msgid "Categories" +msgstr "분류" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,stage_id:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,stage_id:0 +msgid "Stage" +msgstr "단계" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Dates" +msgstr "날짜" + +#. module: crm_claim +#: help:crm.claim,email_from:0 +msgid "Destination email for email gateway." +msgstr "이메일 게이트웨이를 위한 목적지 이메일" + +#. module: crm_claim +#: code:addons/crm_claim/crm_claim.py:194 +#, python-format +msgid "No Subject" +msgstr "제목 없음" + +#. module: crm_claim +#: help:crm.claim.stage,state:0 +msgid "" +"The related status for the stage. The status of your document will " +"automatically change regarding the selected stage. For example, if a stage " +"is related to the status 'Close', when your document reaches this stage, it " +"will be automatically have the 'closed' status." +msgstr "" +"단계의 관련된 상태. 문서의 상태는 선택한 단계에 관해 자동으로 변경됩니다. 예를 들어, 단계가 '마감' 상태와 관련되었을 경우, 문서가 " +"이 단계에 도달하면 자동으로 '마감' 상태가 됩니다." + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Settle" +msgstr "해결" + +#. module: crm_claim +#: model:ir.ui.menu,name:crm_claim.menu_claim_stage_view +msgid "Stages" +msgstr "단계" + +#. module: crm_claim +#: model:ir.actions.act_window,name:crm_claim.action_report_crm_claim +#: model:ir.ui.menu,name:crm_claim.menu_report_crm_claim_tree +msgid "Claims Analysis" +msgstr "클레임 분석" + +#. module: crm_claim +#: help:crm.claim.report,delay_close:0 +msgid "Number of Days to close the case" +msgstr "사례를 마감하기까지의 잔여일수" + +#. module: crm_claim +#: model:ir.model,name:crm_claim.model_crm_claim_report +msgid "CRM Claim Report" +msgstr "CRM 클레임 보고서" + +#. module: crm_claim +#: view:sale.config.settings:0 +msgid "Configure" +msgstr "설정" + +#. module: crm_claim +#: model:crm.case.resource.type,name:crm_claim.type_claim1 +msgid "Corrective" +msgstr "수정 조치" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "September" +msgstr "9월" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "December" +msgstr "12월" + +#. module: crm_claim +#: view:crm.claim.report:0 +#: field:crm.claim.report,month:0 +msgid "Month" +msgstr "월" + +#. module: crm_claim +#: field:crm.claim,type_action:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,type_action:0 +msgid "Action Type" +msgstr "액션 유형" + +#. module: crm_claim +#: field:crm.claim,write_date:0 +msgid "Update Date" +msgstr "날짜 갱신" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Year of claim" +msgstr "클레임 발생년도" + +#. module: crm_claim +#: help:crm.claim.stage,case_default:0 +msgid "" +"If you check this field, this stage will be proposed by default on each " +"sales team. It will not assign this stage to existing teams." +msgstr "이 필드를 체크하면, 이 단계는 각 영업팀에 기본으로 제안됩니다. 기존 팀에게는 이 단계를 할당하지 않습니다." + +#. module: crm_claim +#: field:crm.claim,categ_id:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,categ_id:0 +msgid "Category" +msgstr "분류" + +#. module: crm_claim +#: model:crm.case.categ,name:crm_claim.categ_claim2 +msgid "Value Claims" +msgstr "가치 클레임" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Responsible User" +msgstr "담당 사용자" + +#. module: crm_claim +#: field:crm.claim,email_cc:0 +msgid "Watchers Emails" +msgstr "전문가 이메일" + +#. module: crm_claim +#: help:crm.claim,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" +"이 이메일 주소들은 이 기록에 대한 모든 수신 및 발신 이메일이 발송되기 전에 참조 필드에 추가됩니다. 다수의 이메일 주소를 쉼표로 " +"분리하십시오" + +#. module: crm_claim +#: selection:crm.claim.report,state:0 +msgid "Draft" +msgstr "초안" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "Low" +msgstr "낮음" + +#. module: crm_claim +#: field:crm.claim,date_closed:0 +#: selection:crm.claim,state:0 +#: selection:crm.claim.report,state:0 +#: selection:crm.claim.stage,state:0 +msgid "Closed" +msgstr "마감됨" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Reject" +msgstr "거부" + +#. module: crm_claim +#: view:res.partner:0 +msgid "Partners Claim" +msgstr "협력업체 클레임" + +#. module: crm_claim +#: view:crm.claim.stage:0 +msgid "Claim Stage" +msgstr "클레임 단계" + +#. module: crm_claim +#: view:crm.claim:0 +#: selection:crm.claim,state:0 +#: view:crm.claim.report:0 +#: selection:crm.claim.report,state:0 +#: selection:crm.claim.stage,state:0 +msgid "Pending" +msgstr "보류 중" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,state:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,state:0 +#: field:crm.claim.stage,state:0 +msgid "Status" +msgstr "상태" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "August" +msgstr "8월" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "Normal" +msgstr "보통" + +#. module: crm_claim +#: help:crm.claim.stage,sequence:0 +msgid "Used to order stages. Lower is better." +msgstr "단계를 정렬하기 위해 사용됨. 낮을 수록 좋음." + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "June" +msgstr "6월" + +#. module: crm_claim +#: field:crm.claim,id:0 +msgid "ID" +msgstr "ID" + +#. module: crm_claim +#: field:crm.claim,partner_phone:0 +msgid "Phone" +msgstr "전화" + +#. module: crm_claim +#: field:crm.claim,message_is_follower:0 +msgid "Is a Follower" +msgstr "은(는) 팔로워임" + +#. module: crm_claim +#: field:crm.claim.report,user_id:0 +msgid "User" +msgstr "사용자" + +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.crm_claim_stage_act +msgid "" +"

\n" +" Click to setup a new stage in the processing of the claims. " +"\n" +"

\n" +" You can create claim stages to categorize the status of " +"every\n" +" claim entered in the system. The stages define all the " +"steps\n" +" required for the resolution of a claim.\n" +"

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

\n" +" 클레임을 처리하는 중에 새로운 단계를 설정하기 위해 클릭하십시오. \n" +"

\n" +" 시스템에 입력된 클레임의 단계마다 분류할 수 있도록\n" +" 클레임 단계를 생성할 수 있습니다. 단계는 클레임을 해결하기 위해\n" +" 필요한 모든 단계를 정의합니다..\n" +"

\n" +" " + +#. module: crm_claim +#: help:crm.claim,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +"If the case is in progress the status is set to 'Open'. " +"When the case is over, the status is set to 'Done'. If " +"the case needs to be reviewed then the status is set " +"to 'Pending'." +msgstr "" +"사례가 생성되었을 때 상태가 '초안'으로 설정됩니다. 사례가 진행 중일 경우 상태는 '개시'로 설정됩니다. 사례가 끝났을 경우 '완료'로 " +"설정됩니다. 사례를 검토할 필요가 있을 경우 상태는 '보류 중'으로 설정됩니다." + +#. module: crm_claim +#: field:crm.claim,active:0 +msgid "Active" +msgstr "활성" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "November" +msgstr "11월" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Extended Filters..." +msgstr "확장 필터..." + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Closure" +msgstr "폐쇄" + +#. module: crm_claim +#: help:crm.claim,section_id:0 +msgid "" +"Responsible sales team. Define Responsible user and Email account for mail " +"gateway." +msgstr "담당 영업팀. 메일 게이트웨이의 담당 사용자 및 이메일 계정을 정의하십시오." + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "October" +msgstr "10월" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "January" +msgstr "1월" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,date:0 +msgid "Claim Date" +msgstr "클레임 발생일" + +#. module: crm_claim +#: field:crm.claim,message_summary:0 +msgid "Summary" +msgstr "요약" + +#. module: crm_claim +#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action +msgid "Claim Categories" +msgstr "클레임 분류" + +#. module: crm_claim +#: field:crm.claim.stage,case_default:0 +msgid "Common to All Teams" +msgstr "모든 팀에 공통적임" + +#. module: crm_claim +#: view:crm.claim:0 +#: view:crm.claim.report:0 +#: model:ir.actions.act_window,name:crm_claim.act_claim_partner +#: model:ir.actions.act_window,name:crm_claim.crm_case_categ_claim0 +#: model:ir.ui.menu,name:crm_claim.menu_crm_case_claims +#: view:res.partner:0 +#: field:res.partner,claims_ids:0 +msgid "Claims" +msgstr "클레임" + +#. module: crm_claim +#: selection:crm.claim,type_action:0 +#: selection:crm.claim.report,type_action:0 +msgid "Corrective Action" +msgstr "시정조치" + +#. module: crm_claim +#: model:crm.case.categ,name:crm_claim.categ_claim3 +msgid "Policy Claims" +msgstr "정책 클레임" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Date Closed" +msgstr "마감일" + +#. module: crm_claim +#: view:crm.claim:0 +#: model:ir.model,name:crm_claim.model_crm_claim +#: model:ir.ui.menu,name:crm_claim.menu_config_claim +msgid "Claim" +msgstr "클레임" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "My Company" +msgstr "내 업체" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Done" +msgstr "완료" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Claim Reporter" +msgstr "클레임 보고자" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Cancel" +msgstr "취소" + +#. module: crm_claim +#: view:crm.claim.report:0 +#: selection:crm.claim.report,state:0 +msgid "Open" +msgstr "열기" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "New Claims" +msgstr "새로운 클레임" + +#. module: crm_claim +#: view:crm.claim:0 +#: selection:crm.claim,state:0 +#: model:crm.claim.stage,name:crm_claim.stage_claim5 +#: selection:crm.claim.stage,state:0 +msgid "In Progress" +msgstr "진행 중" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,user_id:0 +msgid "Responsible" +msgstr "담당" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Search" +msgstr "검색" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Unassigned Claims" +msgstr "할당되지 않은 클레임" + +#. module: crm_claim +#: field:crm.claim.report,delay_expected:0 +msgid "Overpassed Deadline" +msgstr "과거 만기일" + +#. module: crm_claim +#: field:crm.claim,cause:0 +msgid "Root Cause" +msgstr "근본 원인" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Claim/Action Description" +msgstr "클레임/조치 설명" + +#. module: crm_claim +#: field:crm.claim,description:0 +msgid "Description" +msgstr "설명" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Search Claims" +msgstr "클레임 검색" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "May" +msgstr "5월" + +#. module: crm_claim +#: view:crm.claim:0 +#: view:crm.claim.report:0 +msgid "Type" +msgstr "유형" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Resolution Actions" +msgstr "결의 조치" + +#. module: crm_claim +#: field:crm.claim.stage,case_refused:0 +msgid "Refused stage" +msgstr "거부함 단계" + +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0 +msgid "" +"Record and track your customers' claims. Claims may be linked to a sales " +"order or a lot. You can send emails with attachments and keep the full " +"history for a claim (emails sent, intervention type and so on). Claims may " +"automatically be linked to an email address using the mail gateway module." +msgstr "" +"고객의 클레임을 기록 및 추적하십시오. 클레임은 판매 주문 또는 로트와 연결될 수 있습니다. 첨부 파일이 포함된 이메일을 발송하고 " +"클레임에 대한 전체 기록을 보관할 수 있습니다 (보낸 이메일, 개입 유형 등). 클레임은 메일 게이트웨이 모듈을 사용하는 이메일 주소와 " +"자동으로 연결될 수 있습니다." + +#. module: crm_claim +#: field:crm.claim.report,email:0 +msgid "# Emails" +msgstr "이메일 #" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Month of claim" +msgstr "클레임 발생월" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "February" +msgstr "2월" + +#. module: crm_claim +#: model:ir.model,name:crm_claim.model_sale_config_settings +msgid "sale.config.settings" +msgstr "sale.config.settings" + +#. module: crm_claim +#: view:crm.claim.report:0 +#: field:crm.claim.report,name:0 +msgid "Year" +msgstr "년도" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "My company" +msgstr "내 업체" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "April" +msgstr "4월" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "My Case(s)" +msgstr "내 사례" + +#. module: crm_claim +#: model:crm.claim.stage,name:crm_claim.stage_claim2 +msgid "Settled" +msgstr "해결됨" + +#. module: crm_claim +#: help:crm.claim,message_ids:0 +msgid "Messages and communication history" +msgstr "메시지 및 의사소통 기록" + +#. module: crm_claim +#: field:sale.config.settings,fetchmail_claim:0 +msgid "Create claims from incoming mails" +msgstr "수신 이메일로부터 클레임을 생성" + +#. module: crm_claim +#: field:crm.claim.stage,sequence:0 +msgid "Sequence" +msgstr "순서" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Actions" +msgstr "조치" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "High" +msgstr "높음" + +#. module: crm_claim +#: field:crm.claim,section_id:0 +#: view:crm.claim.report:0 +msgid "Sales Team" +msgstr "영업팀" + +#. module: crm_claim +#: field:crm.claim.report,create_date:0 +msgid "Create Date" +msgstr "생성일" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "In Progress Claims" +msgstr "진행 중 클레임" + +#. module: crm_claim +#: help:crm.claim.stage,section_ids:0 +msgid "" +"Link between stages and sales teams. When set, this limitate the current " +"stage to the selected sales teams." +msgstr "단계와 영업팀 간의 연결. 설정 시 현재 단계를 선택된 영업팀으로 한계를 정합니다." + +#. module: crm_claim +#: help:crm.claim.stage,case_refused:0 +msgid "Refused stages are specific stages for done." +msgstr "거절됨 단계는 완료됨의 특정 단계입니다." diff --git a/addons/crm_claim/i18n/mk.po b/addons/crm_claim/i18n/mk.po index dbc42ac3e77..0975ae5df09 100644 --- a/addons/crm_claim/i18n/mk.po +++ b/addons/crm_claim/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-11 13:06+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:26+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -234,7 +235,7 @@ msgstr "Секција" #. module: crm_claim #: view:crm.claim:0 msgid "Root Causes" -msgstr "" +msgstr "Коренски причина" #. module: crm_claim #: field:crm.claim,user_fault:0 @@ -354,7 +355,7 @@ msgstr "Датуми" #. module: crm_claim #: help:crm.claim,email_from:0 msgid "Destination email for email gateway." -msgstr "" +msgstr "Одредишен email за email порта." #. module: crm_claim #: code:addons/crm_claim/crm_claim.py:194 @@ -370,6 +371,10 @@ msgid "" "is related to the status 'Close', when your document reaches this stage, it " "will be automatically have the 'closed' status." msgstr "" +"Поврзан стстус за етапата. Статусот на вашиот документ автоматски ќе се " +"промени според избраната етапа. На пример, доколку етапата е поврзана со " +"статусот 'Затвори', Кога вашиот документ ќе ја достигне оваа етапа, " +"автоматски ќе добие статус 'затворено'." #. module: crm_claim #: view:crm.claim:0 @@ -395,7 +400,7 @@ msgstr "Број на денови за затварање на случај" #. module: crm_claim #: model:ir.model,name:crm_claim.model_crm_claim_report msgid "CRM Claim Report" -msgstr "" +msgstr "CRM рекламациски извештај" #. module: crm_claim #: view:sale.config.settings:0 @@ -548,7 +553,7 @@ msgstr "Нормално" #. module: crm_claim #: help:crm.claim.stage,sequence:0 msgid "Used to order stages. Lower is better." -msgstr "" +msgstr "Се користи за да се подредат етапите. Помалото е подобро." #. module: crm_claim #: selection:crm.claim.report,month:0 @@ -642,6 +647,8 @@ msgid "" "Responsible sales team. Define Responsible user and Email account for mail " "gateway." msgstr "" +"Одговорен продажен тим. Дефинирајте Одговорен корисник и Email акаунт за " +"портата за пошта." #. module: crm_claim #: selection:crm.claim.report,month:0 @@ -721,7 +728,7 @@ msgstr "Завршено" #. module: crm_claim #: view:crm.claim:0 msgid "Claim Reporter" -msgstr "" +msgstr "Известувач за рекламација" #. module: crm_claim #: view:crm.claim.report:0 @@ -771,7 +778,7 @@ msgstr "Пречекорен краен рок" #. module: crm_claim #: field:crm.claim,cause:0 msgid "Root Cause" -msgstr "" +msgstr "Коренска причина" #. module: crm_claim #: view:crm.claim:0 @@ -802,7 +809,7 @@ msgstr "Tип" #. module: crm_claim #: view:crm.claim:0 msgid "Resolution Actions" -msgstr "" +msgstr "Акции за решавање" #. module: crm_claim #: field:crm.claim.stage,case_refused:0 @@ -817,6 +824,11 @@ msgid "" "history for a claim (emails sent, intervention type and so on). Claims may " "automatically be linked to an email address using the mail gateway module." msgstr "" +"Ги зачувува и следи рекламациите на вашиот купувач. Рекламациите може да " +"бидат поврзани со налог за продажба или лот. Може да испратите е-пошти со " +"прилози и да ја чувате целатаисторија за рекламацијата (испратени е-пошти, " +"тип на интервенција и др.) Рекламациите може автоматски да бидат поврзани на " +"e-mail адреса со користење на модулот mail gateway." #. module: crm_claim #: field:crm.claim.report,email:0 diff --git a/addons/crm_helpdesk/i18n/ko.po b/addons/crm_helpdesk/i18n/ko.po new file mode 100644 index 00000000000..97889e7a7b5 --- /dev/null +++ b/addons/crm_helpdesk/i18n/ko.po @@ -0,0 +1,726 @@ +# Korean 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-03-29 04:02+0000\n" +"Last-Translator: Josh Kim \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,delay_close:0 +msgid "Delay to Close" +msgstr "마감까지의 지연" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,nbr:0 +msgid "# of Cases" +msgstr "사례 #" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: view:crm.helpdesk.report:0 +msgid "Group By..." +msgstr "분류 기준..." + +#. module: crm_helpdesk +#: help:crm.helpdesk,email_from:0 +msgid "Destination email for email gateway" +msgstr "이메일 게이트웨이를 위한 목적지 이메일" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "March" +msgstr "3월" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_unread:0 +msgid "Unread Messages" +msgstr "읽지 않은 메시지" + +#. module: crm_helpdesk +#: field:crm.helpdesk,company_id:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,company_id:0 +msgid "Company" +msgstr "업체" + +#. module: crm_helpdesk +#: field:crm.helpdesk,email_cc:0 +msgid "Watchers Emails" +msgstr "전문가 이메일" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Salesperson" +msgstr "영업사원" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "Highest" +msgstr "가장 높음" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,day:0 +msgid "Day" +msgstr "일" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Date of helpdesk requests" +msgstr "헬프데스크 요청 발생 날짜" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Notes" +msgstr "메모" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_ids:0 +msgid "Messages" +msgstr "메시지" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "My company" +msgstr "내 업체" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,state:0 +#: selection:crm.helpdesk.report,state:0 +msgid "Cancelled" +msgstr "취소됨" + +#. module: crm_helpdesk +#: help:crm.helpdesk,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "체크할 경우, 새로운 메시지를 주목할 필요가 있습니다." + +#. module: crm_helpdesk +#: model:ir.actions.act_window,name:crm_helpdesk.action_report_crm_helpdesk +#: model:ir.ui.menu,name:crm_helpdesk.menu_report_crm_helpdesks_tree +msgid "Helpdesk Analysis" +msgstr "헬프데스크 분석" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,date_closed:0 +msgid "Close Date" +msgstr "마감일" + +#. module: crm_helpdesk +#: field:crm.helpdesk,ref:0 +msgid "Reference" +msgstr "참조" + +#. module: crm_helpdesk +#: field:crm.helpdesk,date_action_next:0 +msgid "Next Action" +msgstr "다음 조치" + +#. module: crm_helpdesk +#: help:crm.helpdesk,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "대화 요약 (메시지 개수, ...)을 내포함. 이 요약은 간판 화면에 삽입할 수 있도록 html 형식으로 직접 작성됩니다." + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Helpdesk Supports" +msgstr "헬프데스크 지원" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Extra Info" +msgstr "추가 정보" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,partner_id:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,partner_id:0 +msgid "Partner" +msgstr "협력업체" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Estimates" +msgstr "예상" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,section_id:0 +msgid "Section" +msgstr "부서" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,priority:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,priority:0 +msgid "Priority" +msgstr "우선 순위" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_follower_ids:0 +msgid "Followers" +msgstr "팔로워" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: selection:crm.helpdesk,state:0 +#: view:crm.helpdesk.report:0 +msgid "New" +msgstr "새로 만들기" + +#. module: crm_helpdesk +#: model:ir.model,name:crm_helpdesk.model_crm_helpdesk_report +msgid "Helpdesk report after Sales Services" +msgstr "판매 서비스 이후 헬프데스크 보고서" + +#. module: crm_helpdesk +#: field:crm.helpdesk,email_from:0 +msgid "Email" +msgstr "이메일" + +#. module: crm_helpdesk +#: field:crm.helpdesk,channel_id:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,channel_id:0 +msgid "Channel" +msgstr "수단" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "Lowest" +msgstr "가장 낮음" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "# Mails" +msgstr "메일 #" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "My Sales Team(s)" +msgstr "내 영업팀" + +#. module: crm_helpdesk +#: field:crm.helpdesk,create_date:0 +#: field:crm.helpdesk.report,create_date:0 +msgid "Creation Date" +msgstr "생성일" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Reset to Draft" +msgstr "초안으로 재설정" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,date_deadline:0 +#: field:crm.helpdesk.report,date_deadline:0 +msgid "Deadline" +msgstr "기한" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "July" +msgstr "7월" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,name:crm_helpdesk.crm_helpdesk_categ_action +msgid "Helpdesk Categories" +msgstr "헬프데스크 분류" + +#. module: crm_helpdesk +#: model:ir.ui.menu,name:crm_helpdesk.menu_crm_case_helpdesk-act +msgid "Categories" +msgstr "분류" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "New Helpdesk Request" +msgstr "새로운 헬프데스크 요청" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Dates" +msgstr "날짜" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Month of helpdesk requests" +msgstr "헬프데스크 요청 발생월" + +#. module: crm_helpdesk +#: code:addons/crm_helpdesk/crm_helpdesk.py:104 +#, python-format +msgid "No Subject" +msgstr "제목 없음" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Cancel Case" +msgstr "사례 취소" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "" +"Helpdesk requests that are assigned to me or to one of the sale teams I " +"manage" +msgstr "나 또는 내가 관리하는 영업팀에 할당된 헬프데스크 요청" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "#Helpdesk" +msgstr "#Helpdesk" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "All pending Helpdesk Request" +msgstr "모든 보류 중인 헬프데스크 요청" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Close Case" +msgstr "사례 마감" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Year of helpdesk requests" +msgstr "헬프데스크 요청의 생성년도" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "September" +msgstr "9월" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "December" +msgstr "12월" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,month:0 +msgid "Month" +msgstr "월" + +#. module: crm_helpdesk +#: field:crm.helpdesk,write_date:0 +msgid "Update Date" +msgstr "날짜 갱신" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Query" +msgstr "질의" + +#. module: crm_helpdesk +#: field:crm.helpdesk,ref2:0 +msgid "Reference 2" +msgstr "참조 2" + +#. module: crm_helpdesk +#: field:crm.helpdesk,categ_id:0 +#: field:crm.helpdesk.report,categ_id:0 +msgid "Category" +msgstr "분류" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Responsible User" +msgstr "담당 사용자" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Helpdesk Support" +msgstr "헬프데스크 지원" + +#. module: crm_helpdesk +#: field:crm.helpdesk,planned_cost:0 +#: field:crm.helpdesk.report,planned_cost:0 +msgid "Planned Costs" +msgstr "계획된 비용" + +#. module: crm_helpdesk +#: help:crm.helpdesk,channel_id:0 +msgid "Communication channel." +msgstr "의사소통 수단" + +#. module: crm_helpdesk +#: help:crm.helpdesk,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" +"이 이메일 주소들은 이 기록에 대한 모든 수신 및 발신 이메일이 발송되기 전에 참조 필드에 추가됩니다. 다수의 이메일 주소를 쉼표로 " +"분리하십시오" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Search Helpdesk" +msgstr "헬프데스크 검색" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,state:0 +msgid "Draft" +msgstr "초안" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "Low" +msgstr "낮음" + +#. module: crm_helpdesk +#: field:crm.helpdesk,date_closed:0 +#: selection:crm.helpdesk,state:0 +#: view:crm.helpdesk.report:0 +#: selection:crm.helpdesk.report,state:0 +msgid "Closed" +msgstr "마감됨" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: selection:crm.helpdesk,state:0 +#: selection:crm.helpdesk.report,state:0 +msgid "Pending" +msgstr "보류 중" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,state:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,state:0 +msgid "Status" +msgstr "상태" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "August" +msgstr "8월" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "Normal" +msgstr "보통" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Escalate" +msgstr "승급" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "June" +msgstr "6월" + +#. module: crm_helpdesk +#: field:crm.helpdesk,id:0 +msgid "ID" +msgstr "아이디" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.crm_case_helpdesk_act111 +msgid "" +"

\n" +" Click to create a new request. \n" +"

\n" +" Helpdesk and Support allow you to track your interventions.\n" +"

\n" +" Use the OpenERP Issues system to manage your support\n" +" activities. Issues can be connected to the email gateway: " +"new\n" +" emails may create issues, each of them automatically gets " +"the\n" +" history of the conversation with the customer.\n" +"

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

\n" +" 새로운 요청을 생성하기 위해 클릭하십시오. \n" +"

\n" +" 헬프데스크와 지원은 중재를 추적할 수 있도록 합니다.\n" +"

\n" +" OpenERP 문제 시스템을 사용하여 지원 활동을 관리하십시오.\n" +" 문제는 이메일 게이트웨이로 연결될 수 있습니다: 새로운 이메일은\n" +" 문제를 생성할 수 있으며, 각각의 문제마다 고객과의 대화 기록을\n" +" 자동으로 획득합니다.\n" +"

\n" +" " + +#. module: crm_helpdesk +#: field:crm.helpdesk,planned_revenue:0 +msgid "Planned Revenue" +msgstr "계획된 수익" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_is_follower:0 +msgid "Is a Follower" +msgstr "은(는) 팔로워임" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,user_id:0 +msgid "User" +msgstr "사용자" + +#. module: crm_helpdesk +#: field:crm.helpdesk,active:0 +msgid "Active" +msgstr "활성" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "November" +msgstr "11월" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Extended Filters..." +msgstr "확장 필터..." + +#. module: crm_helpdesk +#: model:ir.actions.act_window,name:crm_helpdesk.crm_case_helpdesk_act111 +msgid "Helpdesk Requests" +msgstr "헬프데스크 요청" + +#. module: crm_helpdesk +#: help:crm.helpdesk,section_id:0 +msgid "" +"Responsible sales team. Define Responsible user and Email account for mail " +"gateway." +msgstr "담당 영업팀. 메일 게이트웨이의 담당 사용자 및 이메일 계정을 정의하십시오." + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "October" +msgstr "10월" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "January" +msgstr "1월" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_summary:0 +msgid "Summary" +msgstr "요약" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,date:0 +msgid "Date" +msgstr "날짜" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Misc" +msgstr "기타" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "My Company" +msgstr "내 업체" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "General" +msgstr "일반" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "References" +msgstr "참조" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Communication" +msgstr "의사소통" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: view:crm.helpdesk.report:0 +#: selection:crm.helpdesk.report,state:0 +msgid "Open" +msgstr "열기" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Helpdesk Support Tree" +msgstr "헬프데스크 지원 트리" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,state:0 +msgid "In Progress" +msgstr "진행 중" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Categorization" +msgstr "분류화" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: model:ir.model,name:crm_helpdesk.model_crm_helpdesk +#: model:ir.ui.menu,name:crm_helpdesk.menu_config_helpdesk +msgid "Helpdesk" +msgstr "헬프데스크" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,user_id:0 +msgid "Responsible" +msgstr "담당" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Search" +msgstr "검색" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,delay_expected:0 +msgid "Overpassed Deadline" +msgstr "과거 기한" + +#. module: crm_helpdesk +#: field:crm.helpdesk,description:0 +msgid "Description" +msgstr "설명" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "May" +msgstr "5월" + +#. module: crm_helpdesk +#: field:crm.helpdesk,probability:0 +msgid "Probability (%)" +msgstr "확률 (%)" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,email:0 +msgid "# Emails" +msgstr "이메일 #" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.action_report_crm_helpdesk +msgid "" +"Have a general overview of all support requests by sorting them with " +"specific criteria such as the processing time, number of requests answered, " +"emails sent and costs." +msgstr "" +"처리 시간, 응답 완료된 요청 개수, 전송된 이메일, 비용 등의 특정 기준으로 정렬하여 모든 지원 요청에 대한 전반적인 개요를 획득함." + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "February" +msgstr "2월" + +#. module: crm_helpdesk +#: field:crm.helpdesk,name:0 +msgid "Name" +msgstr "이름" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,name:0 +msgid "Year" +msgstr "년도" + +#. module: crm_helpdesk +#: model:ir.ui.menu,name:crm_helpdesk.menu_help_support_main +msgid "Helpdesk and Support" +msgstr "헬프데스크 및 지원" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "April" +msgstr "4월" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "My Case(s)" +msgstr "내 사례" + +#. module: crm_helpdesk +#: help:crm.helpdesk,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +" \n" +"If the case is in progress the status is set to 'Open'. " +" \n" +"When the case is over, the status is set to 'Done'. " +" \n" +"If the case needs to be reviewed then the status is set to 'Pending'." +msgstr "" +"사례가 생성되었을 때 '초안'으로 설정됩니다. \n" +"사례가 진행 중일 경우, 상태는 '개시됨'으로 설정됩니다. \n" +"사례를 마쳤을 때 상태는 '완료됨'으로 설정됩니다. \n" +"사례가 검토를 필요로 할 경우, 상태는 '보류 중'으로 설정됩니다." + +#. module: crm_helpdesk +#: help:crm.helpdesk,message_ids:0 +msgid "Messages and communication history" +msgstr "메시지 및 의사소통 기록" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.crm_helpdesk_categ_action +msgid "" +"Create and manage helpdesk categories to better manage and classify your " +"support requests." +msgstr "헬프데스크 분류를 생성 및 관리하여 지원요청을 더욱 잘 관리하고 분류하세요." + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Request Date" +msgstr "요청일" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Open Helpdesk Request" +msgstr "헬프데스크 요청 열기" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "High" +msgstr "높음" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,section_id:0 +#: view:crm.helpdesk.report:0 +msgid "Sales Team" +msgstr "영업팀" + +#. module: crm_helpdesk +#: field:crm.helpdesk,date_action_last:0 +msgid "Last Action" +msgstr "최근 조치" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Assigned to Me or My Sales Team(s)" +msgstr "나 또는 내 영업팀에 할당됨" + +#. module: crm_helpdesk +#: field:crm.helpdesk,duration:0 +msgid "Duration" +msgstr "시간" diff --git a/addons/crm_helpdesk/i18n/mk.po b/addons/crm_helpdesk/i18n/mk.po index b5d5d70cb25..4d85d12348e 100644 --- a/addons/crm_helpdesk/i18n/mk.po +++ b/addons/crm_helpdesk/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-02 10:06+0000\n" +"PO-Revision-Date: 2013-03-28 22:27+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -80,7 +81,7 @@ msgstr "Ден" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 msgid "Date of helpdesk requests" -msgstr "" +msgstr "Датум на барање за помош" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -112,7 +113,7 @@ msgstr "Доколку се означени новите пораки, потр #: model:ir.actions.act_window,name:crm_helpdesk.action_report_crm_helpdesk #: model:ir.ui.menu,name:crm_helpdesk.menu_report_crm_helpdesks_tree msgid "Helpdesk Analysis" -msgstr "" +msgstr "Анализи на помош" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 @@ -190,7 +191,7 @@ msgstr "Ново" #. module: crm_helpdesk #: model:ir.model,name:crm_helpdesk.model_crm_helpdesk_report msgid "Helpdesk report after Sales Services" -msgstr "" +msgstr "Извештај за помош после услугите за продажба" #. module: crm_helpdesk #: field:crm.helpdesk,email_from:0 @@ -246,7 +247,7 @@ msgstr "Јули" #. module: crm_helpdesk #: model:ir.actions.act_window,name:crm_helpdesk.crm_helpdesk_categ_action msgid "Helpdesk Categories" -msgstr "" +msgstr "Категории на помош" #. module: crm_helpdesk #: model:ir.ui.menu,name:crm_helpdesk.menu_crm_case_helpdesk-act @@ -256,7 +257,7 @@ msgstr "Категории" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "New Helpdesk Request" -msgstr "" +msgstr "Ново барање за помош" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -266,7 +267,7 @@ msgstr "Датуми" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 msgid "Month of helpdesk requests" -msgstr "" +msgstr "Месец на барањата за помош" #. module: crm_helpdesk #: code:addons/crm_helpdesk/crm_helpdesk.py:104 @@ -277,7 +278,7 @@ msgstr "Нема наслов" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "Cancel Case" -msgstr "" +msgstr "Откажи предмет" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -285,26 +286,28 @@ msgid "" "Helpdesk requests that are assigned to me or to one of the sale teams I " "manage" msgstr "" +"Барања за помош кои ми се доделени мене или на некој од продажните тимови " +"кои јас ги управувам" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 msgid "#Helpdesk" -msgstr "" +msgstr "#Помош" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "All pending Helpdesk Request" -msgstr "" +msgstr "Сите барања за помош на чекање" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "Close Case" -msgstr "" +msgstr "Затвори предмет" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 msgid "Year of helpdesk requests" -msgstr "" +msgstr "Година на барањата за помош" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 @@ -371,11 +374,14 @@ msgid "" "outbound emails for this record before being sent. Separate multiple email " "addresses with a comma" msgstr "" +"Овие email адреси ќе бидат додадени во полето CC на сите влезни и излезни e-" +"пошти за овој запис пред да биде испратен. Одделете ги email адресите со " +"запирка" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "Search Helpdesk" -msgstr "" +msgstr "Барај помош" #. module: crm_helpdesk #: selection:crm.helpdesk.report,state:0 @@ -430,7 +436,7 @@ msgstr "" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 msgid "June" -msgstr "" +msgstr "Јуни" #. module: crm_helpdesk #: field:crm.helpdesk,id:0 @@ -454,6 +460,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате ново барање. \n" +"

\n" +" Помош и поддршка во овозможува да ги следите вашите " +"интервенции.\n" +"

\n" +" Користете го OpenERP Issues системот за да управувате со " +"активностите за поддршка.\n" +" Issues can be connected to the email gateway: new\n" +" emails may create issues, each of them automatically gets " +"the\n" +" history of the conversation with the customer.\n" +"

\n" +" " #. module: crm_helpdesk #: field:crm.helpdesk,planned_revenue:0 @@ -488,7 +508,7 @@ msgstr "Проширени филтри..." #. module: crm_helpdesk #: model:ir.actions.act_window,name:crm_helpdesk.crm_case_helpdesk_act111 msgid "Helpdesk Requests" -msgstr "" +msgstr "Барања за помош" #. module: crm_helpdesk #: help:crm.helpdesk,section_id:0 @@ -496,11 +516,13 @@ msgid "" "Responsible sales team. Define Responsible user and Email account for mail " "gateway." msgstr "" +"Одговорен продажен тим. Го дефинира одговорниот корисник и email акаунтот за " +"портата за пошта." #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 msgid "October" -msgstr "" +msgstr "Октомври" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 @@ -570,7 +592,7 @@ msgstr "Категоризација" #: model:ir.model,name:crm_helpdesk.model_crm_helpdesk #: model:ir.ui.menu,name:crm_helpdesk.menu_config_helpdesk msgid "Helpdesk" -msgstr "" +msgstr "Помош" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -638,7 +660,7 @@ msgstr "Година" #. module: crm_helpdesk #: model:ir.ui.menu,name:crm_helpdesk.menu_help_support_main msgid "Helpdesk and Support" -msgstr "" +msgstr "Помош и поддршка" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 @@ -678,6 +700,8 @@ msgid "" "Create and manage helpdesk categories to better manage and classify your " "support requests." msgstr "" +"Креирај и управувај категории за помош за подобро да ги менаџирате и " +"класифицирате вашите барања за помош." #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -687,7 +711,7 @@ msgstr "Датум на барање" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "Open Helpdesk Request" -msgstr "" +msgstr "Отвори барање за помош" #. module: crm_helpdesk #: selection:crm.helpdesk,priority:0 @@ -710,7 +734,7 @@ msgstr "Последна операција" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "Assigned to Me or My Sales Team(s)" -msgstr "Додели ми го мене илина мојот продажен тим(ови)" +msgstr "Додели ми го мене или на мојот продажен тим(ови)" #. module: crm_helpdesk #: field:crm.helpdesk,duration:0 diff --git a/addons/crm_partner_assign/i18n/ko.po b/addons/crm_partner_assign/i18n/ko.po new file mode 100644 index 00000000000..966311289da --- /dev/null +++ b/addons/crm_partner_assign/i18n/ko.po @@ -0,0 +1,932 @@ +# Korean 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-03-29 02:30+0000\n" +"Last-Translator: Josh Kim \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_close:0 +msgid "Delay to Close" +msgstr "마감까지의 지연" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,author_id:0 +msgid "Author" +msgstr "작성자" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,planned_revenue:0 +msgid "Planned Revenue" +msgstr "계획된 수익" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,type:0 +msgid "" +"Message type: email for email message, notification for system message, " +"comment for other messages such as user replies" +msgstr "메시지 유형: 이메일 메시지를 위한 이메일, 시스템 메시지를 위한 알림, 사용자 댓글과 같은 기타 메시지에 대한 의견" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,nbr:0 +msgid "# of Cases" +msgstr "사례 #" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Group By..." +msgstr "분류 기준..." + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,body:0 +msgid "Automatically sanitized HTML contents" +msgstr "HTML 내용 중 불건전한 내용을 자동으로 제거함" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Forward" +msgstr "전달" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Geo Localize" +msgstr "지리적 지역화" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,starred:0 +msgid "Starred" +msgstr "별표 추가됨" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Body" +msgstr "본문" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,email_from:0 +msgid "" +"Email address of the sender. This field is set when no matching partner is " +"found for incoming emails." +msgstr "보내는 사람의 이메일 주소. 이 필드는 수신 메일에서 일치하는 협력업체를 찾을 수 없을 때 설정됩니다." + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Date Partnership" +msgstr "협력관계 합의일" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,type:0 +msgid "Lead" +msgstr "리드" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Delay to close" +msgstr "마감까지의 지연" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history_mode:0 +msgid "Whole Story" +msgstr "전체 이야기" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,company_id:0 +msgid "Company" +msgstr "업체" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,notification_ids:0 +msgid "Notifications" +msgstr "알림" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,date_assign:0 +msgid "Partner Date" +msgstr "협력업체 날짜" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +#: view:res.partner:0 +msgid "Salesperson" +msgstr "영업사원" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Highest" +msgstr "가장 높음" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,day:0 +msgid "Day" +msgstr "일" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,message_id:0 +msgid "Message unique identifier" +msgstr "메시지 유일 식별자" + +#. module: crm_partner_assign +#: field:res.partner,date_review_next:0 +msgid "Next Partner Review" +msgstr "다음 협력업체 검토" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history_mode:0 +msgid "Latest email" +msgstr "최근 이메일" + +#. module: crm_partner_assign +#: field:crm.lead,partner_latitude:0 +#: field:res.partner,partner_latitude:0 +msgid "Geo Latitude" +msgstr "지리적 위도" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Cancelled" +msgstr "취소됨" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Geo Assignation" +msgstr "지리적 할당" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead_forward_to_partner +msgid "Email composition wizard" +msgstr "이메일 작성 마법사" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,turnover:0 +msgid "Turnover" +msgstr "회전율" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,date_closed:0 +msgid "Close Date" +msgstr "마감일" + +#. module: crm_partner_assign +#: help:res.partner,partner_weight:0 +msgid "" +"Gives the probability to assign a lead to this partner. (0 means no " +"assignation.)" +msgstr "이 협력업체에 리드를 할당할 확률을 제공함. (0은 할당 없음을 의미,)" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Partner Activation" +msgstr "협력업체 활성화" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,type:0 +msgid "System notification" +msgstr "시스템 알림" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:74 +#, python-format +msgid "Lead forward" +msgstr "리드 전달" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probability:0 +msgid "Avg Probability" +msgstr "평균 확률" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Previous" +msgstr "이전" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/partner_geo_assign.py:36 +#, python-format +msgid "Network error" +msgstr "네트워크 오류" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,email_from:0 +msgid "From" +msgstr "보낸 사람" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.res_partner_grade_action +#: model:ir.ui.menu,name:crm_partner_assign.menu_res_partner_grade_action +#: view:res.partner.grade:0 +msgid "Partner Grade" +msgstr "협력업체 등급" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Section" +msgstr "부서" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Send" +msgstr "보내기" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Next" +msgstr "다음" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,priority:0 +msgid "Priority" +msgstr "우선 순위" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_expected:0 +msgid "Overpassed Deadline" +msgstr "과거 기한" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,type:0 +#: field:crm.lead.report.assign,type:0 +msgid "Type" +msgstr "유형" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,type:0 +msgid "Email" +msgstr "이메일" + +#. module: crm_partner_assign +#: help:crm.lead,partner_assigned_id:0 +msgid "Partner this case has been forwarded/assigned to." +msgstr "이 사례가 전달/할당된 협력업체" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Lowest" +msgstr "가장 낮음" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Date Invoice" +msgstr "송장 발행일" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,template_id:0 +msgid "Template" +msgstr "서식" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Assign Date" +msgstr "날짜 할당" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Leads Analysis" +msgstr "리드 분석" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,creation_date:0 +msgid "Creation Date" +msgstr "생성일" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_res_partner_activation +msgid "res.partner.activation" +msgstr "res.partner.activation" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,parent_id:0 +msgid "Parent Message" +msgstr "상위 메시지" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,res_id:0 +msgid "Related Document ID" +msgstr "관련 문서 ID" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Pending" +msgstr "보류 중" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Partner Assignation" +msgstr "협력업체 할당" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,type:0 +msgid "Type is used to separate Leads and Opportunities" +msgstr "유형은 리드와 기회를 구분하기 위해 사용됩니다" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "July" +msgstr "7월" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Date Review" +msgstr "검토 날짜" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,stage_id:0 +msgid "Stage" +msgstr "단계" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,state:0 +msgid "Status" +msgstr "상태" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,to_read:0 +msgid "To read" +msgstr "읽기 대상" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:74 +#, python-format +msgid "Fwd" +msgstr "전달" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Geo Localization" +msgstr "지리적 지역화" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Opportunities Assignment Analysis" +msgstr "기회 할당 분석" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: view:res.partner:0 +msgid "Cancel" +msgstr "취소" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,history_mode:0 +msgid "Send history" +msgstr "전송 기록" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Close" +msgstr "닫기" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "March" +msgstr "3월" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_opportunity_assign +#: model:ir.ui.menu,name:crm_partner_assign.menu_report_crm_opportunities_assign_tree +msgid "Opp. Assignment Analysis" +msgstr "Opp. Assignment Analysis" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,delay_close:0 +msgid "Number of Days to close the case" +msgstr "사례를 마감하기까지의 잔여일수" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,notified_partner_ids:0 +msgid "" +"Partners that have a notification pushing this message in their mailboxes" +msgstr "편지함에 이 메시지를 푸시하는 알림이 있는 협력업체" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,type:0 +msgid "Comment" +msgstr "의견" + +#. module: crm_partner_assign +#: field:res.partner,partner_weight:0 +msgid "Weight" +msgstr "가중" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "April" +msgstr "4월" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,grade_id:0 +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,grade_id:0 +msgid "Grade" +msgstr "등급" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "December" +msgstr "12월" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,vote_user_ids:0 +msgid "Users that voted for this message" +msgstr "이 메시지에 투표한 사용자" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,month:0 +msgid "Month" +msgstr "월" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,opening_date:0 +msgid "Opening Date" +msgstr "개시일" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,child_ids:0 +msgid "Child Messages" +msgstr "하위 메시지" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,date_review:0 +#: field:res.partner,date_review:0 +msgid "Latest Partner Review" +msgstr "최근 협력업체 검토" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,subject:0 +msgid "Subject" +msgstr "제목" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "or" +msgstr "또는" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,body:0 +msgid "Contents" +msgstr "내용" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,vote_user_ids:0 +msgid "Votes" +msgstr "투표수" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "#Opportunities" +msgstr "기회#" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,starred:0 +msgid "Current user has a starred notification linked to this message" +msgstr "현재 사용자에게 이 메시지와 연결된 별표 표시된 알림이 있습니다." + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,date_partnership:0 +#: field:res.partner,date_partnership:0 +msgid "Partnership Date" +msgstr "협력관계 협약일" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Team" +msgstr "팀" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Draft" +msgstr "초안" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Low" +msgstr "낮음" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: selection:crm.lead.report.assign,state:0 +msgid "Closed" +msgstr "마감됨" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_crm_send_mass_forward +msgid "Mass forward to partner" +msgstr "협력업체에게 대량 전달" + +#. module: crm_partner_assign +#: view:res.partner:0 +#: field:res.partner,opportunity_assigned_ids:0 +msgid "Assigned Opportunities" +msgstr "할당된 기회" + +#. module: crm_partner_assign +#: field:crm.lead,date_assign:0 +msgid "Assignation Date" +msgstr "할당일" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probability_max:0 +msgid "Max Probability" +msgstr "최대 확률" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "August" +msgstr "8월" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,record_name:0 +msgid "Name get of the related document." +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Normal" +msgstr "보통" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Escalate" +msgstr "승급" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "June" +msgstr "6월" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,delay_open:0 +msgid "Number of Days to open the case" +msgstr "사례 개시까지의 소요일수" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_open:0 +msgid "Delay to Open" +msgstr "개시까지의 지연" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,user_id:0 +#: field:crm.partner.report.assign,user_id:0 +msgid "User" +msgstr "사용자" + +#. module: crm_partner_assign +#: field:res.partner.grade,active:0 +msgid "Active" +msgstr "활성" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "November" +msgstr "11월" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Extended Filters..." +msgstr "확장 필터..." + +#. module: crm_partner_assign +#: field:crm.lead,partner_longitude:0 +#: field:res.partner,partner_longitude:0 +msgid "Geo Longitude" +msgstr "지리적 경도" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,opp:0 +msgid "# of Opportunity" +msgstr "기회 #" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Lead Assign" +msgstr "리드 할당" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "October" +msgstr "10월" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Assignation" +msgstr "할당" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "January" +msgstr "1월" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Send Mail" +msgstr "메일 보내기" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,date:0 +msgid "Date" +msgstr "날짜" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Planned Revenues" +msgstr "계획된 수익" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Partner Review" +msgstr "협력업체 검토" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,period_id:0 +msgid "Invoice Period" +msgstr "송장 발행 주기" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_res_partner_grade +msgid "res.partner.grade" +msgstr "res.partner.grade" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,message_id:0 +msgid "Message-Id" +msgstr "Message-Id" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: field:crm.lead.forward.to.partner,attachment_ids:0 +msgid "Attachments" +msgstr "첨부 파일" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,record_name:0 +msgid "Message Record Name" +msgstr "메시지 기록명" + +#. module: crm_partner_assign +#: field:res.partner.activation,sequence:0 +#: field:res.partner.grade,sequence:0 +msgid "Sequence" +msgstr "순서" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/partner_geo_assign.py:37 +#, python-format +msgid "" +"Cannot contact geolocation servers. Please make sure that your internet " +"connection is up and running (%s)." +msgstr "지리위치서버를 연결할 수 없음. 인터넷 연결이 존재하고 실행 중인지 확인하십시오 (%s)." + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "September" +msgstr "9월" + +#. module: crm_partner_assign +#: field:res.partner.grade,name:0 +msgid "Grade Name" +msgstr "등급명" + +#. module: crm_partner_assign +#: help:crm.lead,date_assign:0 +msgid "Last date this case was forwarded/assigned to a partner" +msgstr "이 사례가 협력업체로 전달/할당된 최근 날짜" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +#: view:res.partner:0 +msgid "Open" +msgstr "열기" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,subtype_id:0 +msgid "Subtype" +msgstr "하위형식" + +#. module: crm_partner_assign +#: field:res.partner,date_localization:0 +msgid "Geo Localization Date" +msgstr "지리위치일" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Current" +msgstr "현재" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead +msgid "Lead/Opportunity" +msgstr "리드/기회" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,notified_partner_ids:0 +msgid "Notified partners" +msgstr "통보한 협력업체" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: model:ir.actions.act_window,name:crm_partner_assign.crm_lead_forward_to_partner_act +msgid "Forward to Partner" +msgstr "협력업체에 전달" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,section_id:0 +#: field:crm.partner.report.assign,section_id:0 +msgid "Sales Team" +msgstr "영업팀" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "May" +msgstr "5월" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probable_revenue:0 +msgid "Probable Revenue" +msgstr "예상 수익" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,activation:0 +#: view:res.partner:0 +#: field:res.partner,activation:0 +#: view:res.partner.activation:0 +msgid "Activation" +msgstr "활성화" + +#. module: crm_partner_assign +#: view:crm.lead:0 +#: field:crm.lead,partner_assigned_id:0 +msgid "Assigned Partner" +msgstr "할당된 협력업체" + +#. module: crm_partner_assign +#: field:res.partner,grade_id:0 +msgid "Partner Level" +msgstr "협력업체 수준" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,to_read:0 +msgid "Current user has an unread notification linked to this message" +msgstr "현재 사용자에게 이 메시지와 연결된 읽지 않은 알림이 있습니다." + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,type:0 +msgid "Opportunity" +msgstr "기회" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,partner_id:0 +msgid "Customer" +msgstr "고객" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "February" +msgstr "2월" + +#. module: crm_partner_assign +#: field:res.partner.activation,name:0 +msgid "Name" +msgstr "이름" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.res_partner_activation_act +#: model:ir.ui.menu,name:crm_partner_assign.res_partner_activation_config_mi +msgid "Partner Activations" +msgstr "협력업체 활성화" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,country_id:0 +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,country_id:0 +msgid "Country" +msgstr "국가" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,year:0 +msgid "Year" +msgstr "연도" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Convert to Opportunity" +msgstr "기회로 전환" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Geo Assign" +msgstr "지역적 할당" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Delay to open" +msgstr "개시까지의 지연" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_partner_assign +#: model:ir.ui.menu,name:crm_partner_assign.menu_report_crm_partner_assign_tree +msgid "Partnership Analysis" +msgstr "협력관계 분석" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,notification_ids:0 +msgid "" +"Technical field holding the message notifications. Use notified_partner_ids " +"to access notified partners." +msgstr "메시지 알림을 포함한 기술적 필드. notified_partner_id를 이용하여 통보된 협력업체에 접근하십시오." + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Partner assigned Analysis" +msgstr "할당된 협력업체 분석" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead_report_assign +msgid "CRM Lead Report" +msgstr "CRM 리드 보고서" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,composition_mode:0 +msgid "Composition mode" +msgstr "작성 모드" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,model:0 +msgid "Related Document Model" +msgstr "관련된 문서 모델" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history_mode:0 +msgid "Case Information" +msgstr "사례 정보" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,author_id:0 +msgid "" +"Author of the message. If not set, email_from may hold an email address that " +"did not match any partner." +msgstr "" +"메시지의 작성자. 설정되지 않았을 경우, email_from에 모든 협력업체와 일치하지 않은 이메일 주소를 포함할 수 있습니다." + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_partner_report_assign +msgid "CRM Partner Report" +msgstr "CRM 협력업체 보고서" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "High" +msgstr "높음" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,partner_ids:0 +msgid "Additional contacts" +msgstr "추가적인 연락처" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,parent_id:0 +msgid "Initial thread message." +msgstr "초기 스레드 메시지" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,create_date:0 +msgid "Create Date" +msgstr "생성일" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,filter_id:0 +msgid "Filters" +msgstr "필터" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,partner_assigned_id:0 +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,partner_id:0 +#: model:ir.model,name:crm_partner_assign.model_res_partner +msgid "Partner" +msgstr "협력업체" diff --git a/addons/crm_partner_assign/i18n/mk.po b/addons/crm_partner_assign/i18n/mk.po index c05a1a3c11a..ddee906155a 100644 --- a/addons/crm_partner_assign/i18n/mk.po +++ b/addons/crm_partner_assign/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-02 10:19+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:32+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:36+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -89,7 +90,7 @@ msgstr "" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Date Partnership" -msgstr "" +msgstr "Датум на партнерство" #. module: crm_partner_assign #: selection:crm.lead.report.assign,type:0 @@ -120,7 +121,7 @@ msgstr "Известувања" #. module: crm_partner_assign #: field:crm.lead.report.assign,date_assign:0 msgid "Partner Date" -msgstr "" +msgstr "Датум на партнер" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -148,12 +149,12 @@ msgstr "Единствен идентификатор на порака" #. module: crm_partner_assign #: field:res.partner,date_review_next:0 msgid "Next Partner Review" -msgstr "" +msgstr "Преглед на следен партнер" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,history_mode:0 msgid "Latest email" -msgstr "" +msgstr "Последна е-пошта" #. module: crm_partner_assign #: field:crm.lead,partner_latitude:0 @@ -184,7 +185,7 @@ msgstr "Промет" #. module: crm_partner_assign #: field:crm.lead.report.assign,date_closed:0 msgid "Close Date" -msgstr "" +msgstr "Затвори датум" #. module: crm_partner_assign #: help:res.partner,partner_weight:0 @@ -196,7 +197,7 @@ msgstr "" #. module: crm_partner_assign #: view:res.partner:0 msgid "Partner Activation" -msgstr "" +msgstr "Активација на партнер" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,type:0 @@ -212,7 +213,7 @@ msgstr "" #. module: crm_partner_assign #: field:crm.lead.report.assign,probability:0 msgid "Avg Probability" -msgstr "" +msgstr "Просечна веројатност" #. module: crm_partner_assign #: view:res.partner:0 @@ -235,7 +236,7 @@ msgstr "Од" #: model:ir.ui.menu,name:crm_partner_assign.menu_res_partner_grade_action #: view:res.partner.grade:0 msgid "Partner Grade" -msgstr "" +msgstr "Оценка на партнер" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -288,7 +289,7 @@ msgstr "Најниско" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Date Invoice" -msgstr "" +msgstr "Датум на фактура" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,template_id:0 @@ -298,7 +299,7 @@ msgstr "Урнек" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 msgid "Assign Date" -msgstr "" +msgstr "Додели датум" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -313,7 +314,7 @@ msgstr "Датум на креирање" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_res_partner_activation msgid "res.partner.activation" -msgstr "" +msgstr "res.partner.activation" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,parent_id:0 @@ -333,7 +334,7 @@ msgstr "Чекам" #. module: crm_partner_assign #: view:crm.lead:0 msgid "Partner Assignation" -msgstr "" +msgstr "Доделување на партнер" #. module: crm_partner_assign #: help:crm.lead.report.assign,type:0 @@ -348,7 +349,7 @@ msgstr "Јули" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Date Review" -msgstr "" +msgstr "Преглед на датум" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -371,18 +372,18 @@ msgstr "За читање" #: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:74 #, python-format msgid "Fwd" -msgstr "" +msgstr "Fwd" #. module: crm_partner_assign #: view:res.partner:0 msgid "Geo Localization" -msgstr "" +msgstr "Geo Локализација" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 #: view:crm.partner.report.assign:0 msgid "Opportunities Assignment Analysis" -msgstr "" +msgstr "Анализи на доделување на можности" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 @@ -393,7 +394,7 @@ msgstr "Откажи" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,history_mode:0 msgid "Send history" -msgstr "" +msgstr "Испрати историја" #. module: crm_partner_assign #: view:res.partner:0 @@ -409,7 +410,7 @@ msgstr "Март" #: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_opportunity_assign #: model:ir.ui.menu,name:crm_partner_assign.menu_report_crm_opportunities_assign_tree msgid "Opp. Assignment Analysis" -msgstr "" +msgstr "Анализи на доделување на можности" #. module: crm_partner_assign #: help:crm.lead.report.assign,delay_close:0 @@ -471,13 +472,13 @@ msgstr "Датум на отварање" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,child_ids:0 msgid "Child Messages" -msgstr "Порака (дете)" +msgstr "Пораки (дете)" #. module: crm_partner_assign #: field:crm.partner.report.assign,date_review:0 #: field:res.partner,date_review:0 msgid "Latest Partner Review" -msgstr "" +msgstr "Преглед на последен партнер" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,subject:0 @@ -513,7 +514,7 @@ msgstr "Моменталниот корисник има известување #: field:crm.partner.report.assign,date_partnership:0 #: field:res.partner,date_partnership:0 msgid "Partnership Date" -msgstr "" +msgstr "Датум на партнерство" #. module: crm_partner_assign #: view:crm.lead:0 @@ -539,7 +540,7 @@ msgstr "Затворено" #. module: crm_partner_assign #: model:ir.actions.act_window,name:crm_partner_assign.action_crm_send_mass_forward msgid "Mass forward to partner" -msgstr "" +msgstr "Масовно препраќање до партнер" #. module: crm_partner_assign #: view:res.partner:0 @@ -565,7 +566,7 @@ msgstr "Август" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,record_name:0 msgid "Name get of the related document." -msgstr "" +msgstr "Добиено име за поврзан документ." #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 @@ -585,7 +586,7 @@ msgstr "Јуни" #. module: crm_partner_assign #: help:crm.lead.report.assign,delay_open:0 msgid "Number of Days to open the case" -msgstr "" +msgstr "Број на денови до отварање на предмет" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_open:0 @@ -622,7 +623,7 @@ msgstr "" #. module: crm_partner_assign #: field:crm.partner.report.assign,opp:0 msgid "# of Opportunity" -msgstr "" +msgstr "# од можности" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -637,7 +638,7 @@ msgstr "Октомври" #. module: crm_partner_assign #: view:crm.lead:0 msgid "Assignation" -msgstr "" +msgstr "Доделување" #. module: crm_partner_assign #: selection:crm.lead.report.assign,month:0 @@ -662,12 +663,12 @@ msgstr "Планирани приходи" #. module: crm_partner_assign #: view:res.partner:0 msgid "Partner Review" -msgstr "" +msgstr "Преглед на партнер" #. module: crm_partner_assign #: field:crm.partner.report.assign,period_id:0 msgid "Invoice Period" -msgstr "" +msgstr "Период на фактура" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_res_partner_grade @@ -703,6 +704,8 @@ msgid "" "Cannot contact geolocation servers. Please make sure that your internet " "connection is up and running (%s)." msgstr "" +"Не може да ги контактира гео локациските сервери. Проверете дали интернет " +"врските работат (%s)." #. module: crm_partner_assign #: selection:crm.lead.report.assign,month:0 @@ -717,7 +720,7 @@ msgstr "" #. module: crm_partner_assign #: help:crm.lead,date_assign:0 msgid "Last date this case was forwarded/assigned to a partner" -msgstr "Последниот датум овој предмет беше препратен/доделен на партнер" +msgstr "Последниот датум кога овој предмет беше препратен/доделен на партнер" #. module: crm_partner_assign #: selection:crm.lead.report.assign,state:0 @@ -733,7 +736,7 @@ msgstr "Подтип" #. module: crm_partner_assign #: field:res.partner,date_localization:0 msgid "Geo Localization Date" -msgstr "" +msgstr "Датум на Гео Локализација" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -790,7 +793,7 @@ msgstr "Назначен партнер" #. module: crm_partner_assign #: field:res.partner,grade_id:0 msgid "Partner Level" -msgstr "" +msgstr "Ниво на партнер" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,to_read:0 @@ -821,7 +824,7 @@ msgstr "Име" #: model:ir.actions.act_window,name:crm_partner_assign.res_partner_activation_act #: model:ir.ui.menu,name:crm_partner_assign.res_partner_activation_config_mi msgid "Partner Activations" -msgstr "" +msgstr "Активации на партнер" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -870,7 +873,7 @@ msgstr "" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Partner assigned Analysis" -msgstr "" +msgstr "Анализи на доделен партнер" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_lead_report_assign @@ -904,7 +907,7 @@ msgstr "" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_partner_report_assign msgid "CRM Partner Report" -msgstr "" +msgstr "Извештај за CRM партнер" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 @@ -914,7 +917,7 @@ msgstr "Висок" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,partner_ids:0 msgid "Additional contacts" -msgstr "Додатни контакти" +msgstr "Дополнителни контакти" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,parent_id:0 diff --git a/addons/crm_profiling/i18n/ko.po b/addons/crm_profiling/i18n/ko.po index 6b355688777..e50ca2abb5c 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/i18n/ko.po @@ -8,25 +8,25 @@ 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-03-29 01:53+0000\n" +"Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 msgid "Questions List" -msgstr "" +msgstr "질의 목록" #. module: crm_profiling #: view:crm_profiling.question:0 #: field:crm_profiling.question,answers_ids:0 msgid "Avalaible Answers" -msgstr "가용한 답변들" +msgstr "가용 답변" #. module: crm_profiling #: model:ir.actions.act_window,help:crm_profiling.open_questionnaires @@ -36,6 +36,8 @@ msgid "" "segmentation tool allows you to automatically assign a partner to a category " "according to his answers to the different questionnaires." msgstr "" +"판매과정에서 영업팀이 정확한 질문할 수 있도록 안내하기 위해 특정 주제와 관련된 질의서를 생성할 수 있습니다. 분할 도구는 다른 질의서의 " +"응답에 따라 협력업체를 분류로 자동으로 할당할 수 있도록 합니다." #. module: crm_profiling #: field:crm_profiling.answer,question_id:0 @@ -43,7 +45,7 @@ msgstr "" #: model:ir.model,name:crm_profiling.model_crm_profiling_question #: field:open.questionnaire.line,question_id:0 msgid "Question" -msgstr "질문" +msgstr "질의" #. module: crm_profiling #: model:ir.actions.act_window,name:crm_profiling.action_open_questionnaire @@ -54,34 +56,34 @@ msgstr "질의서 열기" #. module: crm_profiling #: field:crm.segmentation,child_ids:0 msgid "Child Profiles" -msgstr "자식 프로파일" +msgstr "하위 프로파일" #. module: crm_profiling #: view:crm.segmentation:0 msgid "Partner Segmentations" -msgstr "파트너 세그먼테이션" +msgstr "협력업체 분할" #. module: crm_profiling #: field:crm_profiling.answer,name:0 #: model:ir.model,name:crm_profiling.model_crm_profiling_answer #: field:open.questionnaire.line,answer_id:0 msgid "Answer" -msgstr "답변" +msgstr "응답" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire_line msgid "open.questionnaire.line" -msgstr "" +msgstr "open.questionnaire.line" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_crm_segmentation msgid "Partner Segmentation" -msgstr "" +msgstr "협력업체 분할" #. module: crm_profiling #: view:res.partner:0 msgid "Profiling" -msgstr "프로파일링" +msgstr "정보 수집" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -92,34 +94,34 @@ msgstr "설명" #. module: crm_profiling #: field:crm.segmentation,answer_no:0 msgid "Excluded Answers" -msgstr "배제된 답변들" +msgstr "배제된 응답" #. module: crm_profiling #: view:crm_profiling.answer:0 #: view:crm_profiling.question:0 #: field:res.partner,answers_ids:0 msgid "Answers" -msgstr "답변" +msgstr "응답" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_open_questionnaire msgid "open.questionnaire" -msgstr "" +msgstr "open.questionnaire" #. module: crm_profiling #: field:open.questionnaire,questionnaire_id:0 msgid "Questionnaire name" -msgstr "질의서 이름" +msgstr "질의서명" #. module: crm_profiling #: view:res.partner:0 msgid "Use a questionnaire" -msgstr "질의서 이용" +msgstr "질의서를 이용" #. module: crm_profiling #: field:open.questionnaire,question_ans_ids:0 msgid "Question / Answers" -msgstr "" +msgstr "질의 / 응답" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -135,22 +137,22 @@ msgid "" "Check this box if you want to use this tab as " "part of the segmentation rule. If not checked, " "the criteria beneath will be ignored" -msgstr "" +msgstr "이 탭을 분할 규칙의 일부로 사용하기 원할 경우 이 상자를 체크하십시오. 체크하지 않을 경우 하단의 기준은 무시됩니다." #. module: crm_profiling #: field:crm.segmentation,profiling_active:0 msgid "Use The Profiling Rules" -msgstr "프로파일링 규칙 이용" +msgstr "정보 수집 규칙을 사용" #. module: crm_profiling #: constraint:crm.segmentation:0 msgid "Error ! You cannot create recursive profiles." -msgstr "" +msgstr "오류 ! 프로파일을 재귀적으로 생성할 수 없습니다." #. module: crm_profiling #: field:crm.segmentation,answer_yes:0 msgid "Included Answers" -msgstr "포함된 답변들" +msgstr "포함된 응답" #. module: crm_profiling #: view:crm_profiling.question:0 @@ -163,7 +165,7 @@ msgstr "질문" #. module: crm_profiling #: field:crm.segmentation,parent_id:0 msgid "Parent Profile" -msgstr "부모 프로파일" +msgstr "상위 프로파일" #. module: crm_profiling #: view:open.questionnaire:0 @@ -173,7 +175,7 @@ msgstr "취소" #. module: crm_profiling #: model:ir.model,name:crm_profiling.model_res_partner msgid "Partner" -msgstr "" +msgstr "협력업체" #. module: crm_profiling #: code:addons/crm_profiling/wizard/open_questionnaire.py:77 @@ -194,4 +196,4 @@ msgstr "데이터 저장" #. module: crm_profiling #: view:open.questionnaire:0 msgid "or" -msgstr "" +msgstr "또는" diff --git a/addons/crm_profiling/i18n/mk.po b/addons/crm_profiling/i18n/mk.po index 51ef5c996cf..3b58b002ee7 100644 --- a/addons/crm_profiling/i18n/mk.po +++ b/addons/crm_profiling/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-07 14:40+0000\n" +"PO-Revision-Date: 2013-03-28 22:33+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -36,6 +37,11 @@ msgid "" "segmentation tool allows you to automatically assign a partner to a category " "according to his answers to the different questionnaires." msgstr "" +"Можете да креирате прашалници поврзани со одедена тема за да го водите " +"вашиот тим(ови) во продажниот циклус со тоа што ќе им помогнете да ги " +"постават вистинските прашања. Алатката за сегментација ви овозможува " +"автоматски да доделите партнера на категорија според неговите одговори во " +"различни прашалници." #. module: crm_profiling #: field:crm_profiling.answer,question_id:0 @@ -54,7 +60,7 @@ msgstr "Отвори прашалник" #. module: crm_profiling #: field:crm.segmentation,child_ids:0 msgid "Child Profiles" -msgstr "" +msgstr "Профили Дете" #. module: crm_profiling #: view:crm.segmentation:0 diff --git a/addons/crm_todo/i18n/ko.po b/addons/crm_todo/i18n/ko.po new file mode 100644 index 00000000000..7d18d9a74ae --- /dev/null +++ b/addons/crm_todo/i18n/ko.po @@ -0,0 +1,85 @@ +# Korean 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-03-29 00:27+0000\n" +"Last-Translator: Josh Kim \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_project_task +msgid "Task" +msgstr "과제" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Timebox" +msgstr "기한" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Lead" +msgstr "리드" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For cancelling the task" +msgstr "과제를 취소하기 위해 사용됨" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Next" +msgstr "다음" + +#. module: crm_todo +#: model:ir.actions.act_window,name:crm_todo.crm_todo_action +#: model:ir.ui.menu,name:crm_todo.menu_crm_todo +msgid "My Tasks" +msgstr "내 과제" + +#. module: crm_todo +#: view:crm.lead:0 +#: field:crm.lead,task_ids:0 +msgid "Tasks" +msgstr "과제" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Done" +msgstr "완료" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Cancel" +msgstr "취소" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_crm_lead +msgid "Lead/Opportunity" +msgstr "리드/기회" + +#. module: crm_todo +#: field:project.task,lead_id:0 +msgid "Lead / Opportunity" +msgstr "리드 / 기회" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For changing to done state" +msgstr "완료 상태로 변경하기 위해 사용됨" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Previous" +msgstr "이전으로" diff --git a/addons/crm_todo/i18n/mk.po b/addons/crm_todo/i18n/mk.po index 39dc8669712..7088c685538 100644 --- a/addons/crm_todo/i18n/mk.po +++ b/addons/crm_todo/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-13 08:06+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:34+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -25,7 +26,7 @@ msgstr "Задача" #. module: crm_todo #: view:crm.lead:0 msgid "Timebox" -msgstr "" +msgstr "Timebox" #. module: crm_todo #: view:crm.lead:0 @@ -67,7 +68,7 @@ msgstr "Откажи" #. module: crm_todo #: model:ir.model,name:crm_todo.model_crm_lead msgid "Lead/Opportunity" -msgstr "Lead/Можност" +msgstr "Трага/Можност" #. module: crm_todo #: field:project.task,lead_id:0 diff --git a/addons/delivery/i18n/mk.po b/addons/delivery/i18n/mk.po index e2379ef4242..940c2fc7217 100644 --- a/addons/delivery/i18n/mk.po +++ b/addons/delivery/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-08 15:34+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:38+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: delivery #: report:sale.shipping:0 @@ -46,7 +47,7 @@ msgstr "Нето тежина" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid_line msgid "Delivery Grid Line" -msgstr "" +msgstr "Линија на мрежа за испорака" #. module: delivery #: field:stock.move,weight_uom_id:0 @@ -76,7 +77,7 @@ msgstr "Поштенски број" #. module: delivery #: field:delivery.grid,line_ids:0 msgid "Grid Line" -msgstr "" +msgstr "Линија на мрежа" #. module: delivery #: help:delivery.carrier,partner_id:0 @@ -86,13 +87,15 @@ msgstr "Партнер кој врши услуги на испорака." #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping msgid "Delivery order" -msgstr "Налог за испорака" +msgstr "Испратница" #. module: delivery #: code:addons/delivery/delivery.py:221 #, python-format msgid "No line matched this product or order in the chosen delivery grid." msgstr "" +"Ниедна линија не се совпаѓа со овој производ или налог во избраната мрежа за " +"испорака." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 @@ -108,6 +111,7 @@ msgstr "Напредно одредување на цени" #: help:delivery.grid,sequence:0 msgid "Gives the sequence order when displaying a list of delivery grid." msgstr "" +"Дава секвенциски редослед кога ја прикажува листата на мрежата за испорака." #. module: delivery #: view:delivery.grid:0 @@ -132,11 +136,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате излезен ценовник за одреден регион.\n" +"

\n" +" Излезниот ценовним ви овозможува да ги пресметате трошоците " +"и\n" +" продажните цени на испораката според тежината на производите " +"и\n" +" други критериуми. Можете да дефинирате неколку ценовници\n" +" за секој метод на испорака: по семја или зона во одредена " +"земја\n" +" дефинирано преку поштенскиот код.\n" +"

\n" +" " #. module: delivery #: report:sale.shipping:0 msgid "Delivery Order :" -msgstr "Налог за испорака:" +msgstr "Испратница:" #. module: delivery #: field:delivery.grid.line,variable_factor:0 @@ -192,13 +209,13 @@ msgstr "Нето тежина" #. module: delivery #: view:delivery.grid.line:0 msgid "Grid Lines" -msgstr "" +msgstr "Линии на мрежа" #. module: delivery #: view:delivery.carrier:0 #: view:delivery.grid:0 msgid "Grid definition" -msgstr "" +msgstr "Дефиниција на мрежа" #. module: delivery #: code:addons/delivery/stock.py:90 @@ -224,7 +241,7 @@ msgstr "Налог за продажба" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_out msgid "Delivery Orders" -msgstr "Налози за испорака" +msgstr "Испратници" #. module: delivery #: view:sale.order:0 @@ -233,7 +250,7 @@ msgid "" "based on delivery order(s)." msgstr "" "Доколку не направите 'Додади во понуда' точната цена ќе биде пресметана кога " -"ќе фактурирате врз основа на налогот(ите) за испорака." +"ќе фактурирате врз основа на испратницата." #. module: delivery #: field:delivery.carrier,partner_id:0 @@ -243,7 +260,7 @@ msgstr "Транспортна компанија" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid msgid "Delivery Grid" -msgstr "" +msgstr "Мрежа за испорака" #. module: delivery #: report:sale.shipping:0 @@ -266,6 +283,8 @@ msgid "" "If the order is more expensive than a certain amount, the customer can " "benefit from a free shipping" msgstr "" +"Доколку налогот е поскап од одреден износ, купувачот може да има добие " +"бесплатна испорака" #. module: delivery #: help:delivery.carrier,amount:0 @@ -273,11 +292,13 @@ msgid "" "Amount of the order to benefit from a free shipping, expressed in the " "company currency" msgstr "" +"Износ кој ќе се добие од бесплатната испорака, изразено во валута на " +"компанијата" #. module: delivery #: field:delivery.carrier,free_if_more_than:0 msgid "Free If Order Total Amount Is More Than" -msgstr "" +msgstr "Бесплатно доколку вкупниот износ на налогот е повеќе од" #. module: delivery #: field:delivery.grid.line,grid_id:0 @@ -290,6 +311,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "grid without removing it." msgstr "" +"Доколку активното поле е подесено на Грешка, ќе можете да ја сокриете " +"мрежата за испорака без да ја отстраните." #. module: delivery #: field:delivery.grid,zip_to:0 @@ -315,7 +338,7 @@ msgstr "Датум на налогот" #. module: delivery #: field:delivery.grid,name:0 msgid "Grid Name" -msgstr "" +msgstr "Име на мрежа" #. module: delivery #: field:stock.picking,number_of_packages:0 @@ -342,8 +365,8 @@ msgid "" "Check this box if you want to manage delivery prices that depends on the " "destination, the weight, the total of the order, etc." msgstr "" -"Означете го ова поле доколку сакате да ги менаџирате цените за испорака кои " -"зависат од дестинацијата, тежината, вкупен износ на налогот и.т.н." +"Означете го ова поле доколку сакате да управувате со цените за испорака кои " +"зависат од одредиштето, тежината, вкупниот износ на налогот и.т.н." #. module: delivery #: help:delivery.carrier,normal_price:0 @@ -357,7 +380,7 @@ msgstr "" #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid available !" -msgstr "" +msgstr "Нема достапна мрежа !" #. module: delivery #: selection:delivery.grid.line,operator:0 @@ -432,6 +455,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да дефинирате нов метод за испорака. \n" +"

\n" +" Секој носач (на пр. UPS) може да има неколку методи на " +"испорака (пр.\n" +" UPS Express, UPS Standard) со сет од правила за одредување " +"на цена\n" +" прикачени на секој метод.\n" +"

\n" +" Овие методи овозможуваат автоматска прсметка на цената на " +"испораката\n" +" во согласност со вашите подесувања; на налог за продажба " +"(засновано\n" +" ма понуда) или на фактура (засновано на испратници).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -453,12 +492,14 @@ msgstr "" msgid "" "Complete this field if you plan to invoice the shipping based on picking." msgstr "" +"Пополнете го ова поле доколку планирате да ја фактурирате испораката врз " +"основа на требувањето." #. module: delivery #: code:addons/delivery/delivery.py:136 #, python-format msgid "Free if more than %.2f" -msgstr "" +msgstr "Бесплатно доколку има повеќе од %.2f" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_in @@ -486,12 +527,14 @@ msgid "" "If the active field is set to False, it will allow you to hide the delivery " "carrier without removing it." msgstr "" +"Доколку активното поле е подесено на Грешка, ќе можете да го сокриете " +"носителот за испорака без да го отстраните." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_delivery_grid_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_grid_form msgid "Delivery Pricelist" -msgstr "Ценовник за испорака" +msgstr "Излезен ценовник" #. module: delivery #: field:delivery.carrier,price:0 @@ -504,7 +547,7 @@ msgstr "Цена" #: code:addons/delivery/sale.py:54 #, python-format msgid "No grid matching for this carrier !" -msgstr "" +msgstr "Ниедна мрежа не се совпаѓа со овој носач !" #. module: delivery #: model:ir.ui.menu,name:delivery.menu_delivery @@ -521,7 +564,7 @@ msgstr "Тежина * Волумен" #: code:addons/delivery/stock.py:91 #, python-format msgid "The carrier %s (id: %d) has no delivery grid!" -msgstr "" +msgstr "Носачот %s (id> %d) нема мрежа за испорака!" #. module: delivery #: view:delivery.carrier:0 @@ -560,7 +603,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,grids_id:0 msgid "Delivery Grids" -msgstr "" +msgstr "Мрежи за испорака" #. module: delivery #: field:delivery.grid,sequence:0 @@ -575,7 +618,7 @@ msgstr "Продажна цена" #. module: delivery #: view:stock.picking.out:0 msgid "Print Delivery Order" -msgstr "Печати налог за испорака" +msgstr "Печати испратница" #. module: delivery #: view:delivery.grid:0 diff --git a/addons/document/i18n/mk.po b/addons/document/i18n/mk.po index dfef6527399..795943892d4 100644 --- a/addons/document/i18n/mk.po +++ b/addons/document/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-06 15:08+0000\n" +"PO-Revision-Date: 2013-03-28 22:39+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: document #: field:document.directory,parent_id:0 @@ -95,7 +96,7 @@ msgstr "Мој документ(и)" #. module: document #: model:ir.ui.menu,name:document.menu_document_management_configuration msgid "Document Management" -msgstr "Менаџмент на документ" +msgstr "Управување со документи" #. module: document #: help:document.directory.dctx,expr:0 @@ -104,6 +105,9 @@ msgid "" "You can use 'dir_id' for current dir, 'res_id', 'res_model' as a reference " "to the current record, in dynamic folders" msgstr "" +"Python израза кој се користи за да се евалуира полето.\n" +"Можете да употребите 'dir_id' за тековен dir, 'res_id', 'res_model' како " +"референца за тековен запис, во динамични папки" #. module: document #: help:document.directory.dctx,field:0 @@ -120,13 +124,13 @@ msgstr "Името на директориумот мора да биде уни #. module: document #: view:ir.attachment:0 msgid "Filter on my documents" -msgstr "Филтар на моите документи" +msgstr "Филтер на моите документи" #. module: document #: view:ir.attachment:0 #: field:ir.attachment,index_content:0 msgid "Indexed Content" -msgstr "" +msgstr "Индексирана содржина" #. module: document #: help:document.directory,resource_find_all:0 @@ -198,6 +202,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате нов документ. \n" +"

\n" +" Складот за документи ви дава пристап до сите прилози, како\n" +" прошти, проектни документи, фактури и.т.н.\n" +"

\n" +" " #. module: document #: code:addons/document/document.py:340 @@ -205,7 +216,7 @@ msgstr "" #: code:addons/document/document.py:350 #, python-format msgid "ValidateError" -msgstr "" +msgstr "ПотврдиГрешка" #. module: document #: model:ir.model,name:document.model_ir_actions_report_xml @@ -282,7 +293,7 @@ msgstr "Име на поле" #. module: document #: field:document.directory,dctx_ids:0 msgid "Context fields" -msgstr "" +msgstr "Полиња за контекст" #. module: document #: view:document.directory:0 @@ -328,7 +339,7 @@ msgid "" "according to modules installed." msgstr "" "Кога го користите овој волшебник, тој ќе ги конфигурира автоматски вашите " -"директориуми според инсталраните модули." +"директориуми според инсталираните модули." #. module: document #: field:document.directory.content,directory_id:0 @@ -398,7 +409,7 @@ msgstr "Декември" #. module: document #: selection:document.directory,type:0 msgid "Static Directory" -msgstr "" +msgstr "Статичен директориум" #. module: document #: field:report.document.file,month:0 @@ -410,6 +421,7 @@ msgstr "Месец" #: view:document.directory:0 msgid "Define words in the context, for all child directories and files" msgstr "" +"Дефинирај зборови во контекстот, за сите директориуми и датотеки дете" #. module: document #: view:document.directory:0 @@ -453,6 +465,9 @@ msgid "" "name.\n" "If set, the directory will have to be a resource one." msgstr "" +"Означете го ова поле доколку сакате името на датотеката да го содржи името " +"на записот.\n" +"Доколку е подесено, директориумот ќе треба да биде ресурс." #. module: document #: view:document.configuration:0 @@ -476,6 +491,8 @@ msgid "" "Check this if you want to use the same tree structure as the object selected " "in the system." msgstr "" +"Означете го ова доколку сакате да употребите иста структура на дрвото како " +"селектираниот објект во системот." #. module: document #: help:document.directory,ressource_id:0 @@ -499,7 +516,7 @@ msgstr "Август" #. module: document #: view:document.directory:0 msgid "Dynamic context" -msgstr "" +msgstr "Динамичен контекст" #. module: document #: sql_constraint:document.directory:0 @@ -534,6 +551,10 @@ msgid "" "record, just like attachments. Don't put a parent directory if you select a " "parent model." msgstr "" +"Доколку го ставите објектот овде, овој урнек на директориум ќе се појавува " +"по секо од овие објекти, Таквите директориуми се \"прикачени\" на одреден " +"модел или запис, како прилози. Не ставајте директориум родител доколку " +"селектирате модел родител." #. module: document #: view:document.directory:0 @@ -588,6 +609,11 @@ msgid "" "attached to the document, or to print and download any report. This tool " "will create directories automatically according to modules installed." msgstr "" +"OpenERP системот за управување на документи поддржува мапирање на виртуелни " +"папки со документи. Виртуелната папка на документот може да се употреби за " +"да се управуваат датотеките прикачени на документот, или да се испечати или " +"симне некој извештај. Оваа алатка ќе креира директориуми автоматски во " +"согласност со инсталираните модули." #. module: document #: model:ir.actions.act_window,name:document.action_view_files_by_month_graph @@ -623,7 +649,7 @@ msgstr "Поле" #. module: document #: model:ir.model,name:document.model_document_directory_dctx msgid "Directory Dynamic Context" -msgstr "" +msgstr "Динамичен контекст на директориум" #. module: document #: field:document.directory,ressource_parent_type_id:0 diff --git a/addons/document_ftp/i18n/mk.po b/addons/document_ftp/i18n/mk.po index d6f29adcfad..9e9555bd8aa 100644 --- a/addons/document_ftp/i18n/mk.po +++ b/addons/document_ftp/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-08 16:45+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:42+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:37+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -107,7 +108,7 @@ msgstr "Прелистување на документи преку FTP" #. module: document_ftp #: view:document.ftp.configuration:0 msgid "Knowledge Application Configuration" -msgstr "Конфигурација за апликација на знаење" +msgstr "Конфигурација за апликација Знаење" #. module: document_ftp #: model:ir.actions.act_window,name:document_ftp.action_ftp_browse diff --git a/addons/document_page/i18n/mk.po b/addons/document_page/i18n/mk.po index ab308e90a37..f62c148db3a 100644 --- a/addons/document_page/i18n/mk.po +++ b/addons/document_page/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-13 11:53+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:44+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: document_page #: view:document.page:0 @@ -46,12 +47,12 @@ msgstr "Мени" #: view:document.page:0 #: model:ir.model,name:document_page.model_document_page msgid "Document Page" -msgstr "Страна на документ" +msgstr "Страница на документ" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_related_page_history msgid "Page History" -msgstr "Историја на страна" +msgstr "Историја на страница" #. module: document_page #: view:document.page:0 @@ -87,7 +88,7 @@ msgstr "Титула" #. module: document_page #: model:ir.model,name:document_page.model_document_page_create_menu msgid "Wizard Create Menu" -msgstr "" +msgstr "Мени Креирање на Волшебник" #. module: document_page #: field:document.page,type:0 @@ -123,12 +124,12 @@ msgstr "Мени Информации" #: view:document.page.history:0 #: model:ir.model,name:document_page.model_document_page_history msgid "Document Page History" -msgstr "Историја на страна на документ" +msgstr "Историја на страница на документ" #. module: document_page #: model:ir.ui.menu,name:document_page.menu_page_history msgid "Pages history" -msgstr "Историја на страни" +msgstr "Историја на страници" #. module: document_page #: code:addons/document_page/document_page.py:129 @@ -185,7 +186,7 @@ msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_history msgid "Page history" -msgstr "Историја на страна" +msgstr "Историја на страница" #. module: document_page #: field:document.page.history,summary:0 @@ -200,7 +201,7 @@ msgstr "на пр. Еднаш, многу одамна..." #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page msgid "Create web pages" -msgstr "Креирај веб страни" +msgstr "Креирај веб странци" #. module: document_page #: view:document.page.history:0 diff --git a/addons/document_webdav/i18n/mk.po b/addons/document_webdav/i18n/mk.po index caeba14179f..268f3247d6b 100644 --- a/addons/document_webdav/i18n/mk.po +++ b/addons/document_webdav/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-13 11:42+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:45+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 @@ -31,7 +32,7 @@ msgstr "Документи" #. module: document_webdav #: view:document.webdav.dir.property:0 msgid "Document property" -msgstr "Сопственост на документ" +msgstr "Својство на документ" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -155,7 +156,7 @@ msgstr "Својство на документот" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_properties msgid "DAV Properties" -msgstr "" +msgstr "DAV својства" #. module: document_webdav #: field:document.webdav.dir.property,do_subst:0 diff --git a/addons/email_template/i18n/mk.po b/addons/email_template/i18n/mk.po index 81e2f74e9a9..d2914179011 100644 --- a/addons/email_template/i18n/mk.po +++ b/addons/email_template/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-03-13 07:59+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 22:47+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -52,7 +51,7 @@ msgstr "E-mail содржини (во HTML формат)" #: field:email.template,email_to:0 #: field:email_template.preview,email_to:0 msgid "To (Emails)" -msgstr "До (e-mail)" +msgstr "До (Е-пошти)" #. module: email_template #: field:email.template,mail_server_id:0 @@ -101,7 +100,7 @@ msgstr "" #: field:email.template,report_name:0 #: field:email_template.preview,report_name:0 msgid "Report Filename" -msgstr "Прикажи име на фајл" +msgstr "Прикажи име на датотека" #. module: email_template #: view:email.template:0 @@ -129,7 +128,7 @@ msgstr "Тело" #: code:addons/email_template/email_template.py:244 #, python-format msgid "%s (copy)" -msgstr "%s (copy)" +msgstr "%s (копија)" #. module: email_template #: help:email.template,user_signature:0 @@ -164,7 +163,7 @@ msgstr "" #. module: email_template #: model:ir.model,name:email_template.model_email_template msgid "Email Templates" -msgstr "Емаил урнеци" +msgstr "Урнеци за е-пошта" #. module: email_template #: help:email.template,report_name:0 @@ -288,19 +287,19 @@ msgstr "Јазик" #. module: email_template #: model:ir.model,name:email_template.model_email_template_preview msgid "Email Template Preview" -msgstr "Преглед на урнек на емаил" +msgstr "Преглед на урнек на е-пошта" #. module: email_template #: view:email_template.preview:0 msgid "Email Preview" -msgstr "Преглед на емаил" +msgstr "Преглед на е-пошта" #. module: email_template #: view:email.template:0 msgid "" "Remove the contextual action to use this template on related documents" msgstr "" -"Отстрани ја контекстуалната дејност за да го користиш темплејтот на поврзани " +"Отстрани ја контекстуалната акција за да го користиш урнекот на поврзани " "документи" #. module: email_template @@ -338,7 +337,7 @@ msgstr "Копче за страничната лента" #: field:email.template,report_template:0 #: field:email_template.preview,report_template:0 msgid "Optional report to print and attach" -msgstr "Опционен извештај за принтање и прикачување" +msgstr "Опционен извештај за печатење и прикачување" #. module: email_template #: help:email.template,null_value:0 @@ -354,7 +353,7 @@ msgstr "Модел" #. module: email_template #: model:ir.model,name:email_template.model_mail_compose_message msgid "Email composition wizard" -msgstr "Волшебник за креирање на e-mail" +msgstr "Волшебник за креирање на е-пошта" #. module: email_template #: view:email.template:0 @@ -365,7 +364,7 @@ msgstr "Додади контекстно дејство" #: 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 "Вид на документ што може да се користи со овој темплејт" +msgstr "Вид на документ што може да се користи со овој урнек" #. module: email_template #: field:email.template,email_recipients:0 @@ -386,14 +385,13 @@ 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 "Поврзан модел на документ" +msgstr "Модел на поврзан документ" #. module: email_template #: view:email.template:0 @@ -431,7 +429,7 @@ msgstr "Копија" #: field:email.template,model_id:0 #: field:email_template.preview,model_id:0 msgid "Applies to" -msgstr "Применува врз" +msgstr "Се применува врз" #. module: email_template #: field:email.template,sub_model_object_field:0 @@ -442,13 +440,13 @@ msgstr "Под-поле" #. module: email_template #: view:email.template:0 msgid "Email Details" -msgstr "Детали за емаил" +msgstr "Детали за е-пошта" #. module: email_template #: code:addons/email_template/email_template.py:196 #, python-format msgid "Send Mail (%s)" -msgstr "Испрати маил (%s)" +msgstr "Испрати пошта (%s)" #. module: email_template #: help:res.partner,opt_out:0 @@ -456,15 +454,15 @@ 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 @@ -512,8 +510,8 @@ 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 diff --git a/addons/event/i18n/mk.po b/addons/event/i18n/mk.po index b97ec380c98..6879f81e870 100644 --- a/addons/event/i18n/mk.po +++ b/addons/event/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-13 12:14+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:49+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:38+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: event #: view:event.event:0 @@ -91,7 +92,7 @@ msgstr "Март" #. module: event #: view:event.registration:0 msgid "Send Email" -msgstr "Испрати емаил" +msgstr "Испрати е-пошта" #. module: event #: field:event.event,company_id:0 @@ -105,7 +106,7 @@ msgstr "Компанија" #: field:event.event,email_confirmation_id:0 #: field:event.type,default_email_event:0 msgid "Event Confirmation Email" -msgstr "Е-mail за потврдување на настан" +msgstr "Е-пошта за потврдување на настан" #. module: event #: field:event.type,default_registration_max:0 @@ -131,7 +132,7 @@ msgstr "Регистрација на настан" #. module: event #: model:ir.module.category,description:event.module_category_event_management msgid "Helps you manage your Events." -msgstr "Ви помага со управувањето на настаните" +msgstr "Ви помага со управувањето на настаните." #. module: event #: view:report.event.registration:0 @@ -345,7 +346,7 @@ msgstr "Потврди" #. module: event #: view:event.event:0 msgid "Organized by" -msgstr "Уредени по" +msgstr "Организирани по" #. module: event #: view:event.event:0 @@ -368,7 +369,7 @@ msgstr "Само" #: field:event.event,message_follower_ids:0 #: field:event.registration,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: event #: view:event.event:0 @@ -397,13 +398,13 @@ msgstr "Потврдени запишувања" #. module: event #: field:event.registration,email:0 msgid "Email" -msgstr "E-mail" +msgstr "Е-поштаE-mail" #. module: event #: code:addons/event/event.py:329 #, python-format msgid "New registration confirmed: %s." -msgstr "Наовата регистрација е потврдена: %s." +msgstr "Новата регистрација е потврдена: %s." #. module: event #: view:event.event:0 @@ -436,7 +437,7 @@ msgstr "Јули" #. module: event #: field:event.event,reply_to:0 msgid "Reply-To Email" -msgstr "E-mail за повратен одговор" +msgstr "Е-поштаE-mail за повратен одговор" #. module: event #: view:event.registration:0 @@ -477,7 +478,7 @@ msgstr "Откажи настан" #: model:ir.actions.act_window,name:event.act_event_reg #: view:report.event.registration:0 msgid "Events Filling Status" -msgstr "" +msgstr "Статус на пополнување на настани" #. module: event #: view:event.event:0 @@ -492,7 +493,7 @@ msgstr "Непотврдени регистрации" #. module: event #: model:ir.actions.client,name:event.action_client_event_menu msgid "Open Event Menu" -msgstr "Отвори мени за настани" +msgstr "Отвори мени Настани" #. module: event #: view:report.event.registration:0 @@ -535,7 +536,7 @@ msgstr " # бр. на нацрт регистрации" #: field:event.event,email_registration_id:0 #: field:event.type,default_email_registration:0 msgid "Registration Confirmation Email" -msgstr "E-mail за потврдување на регистрација" +msgstr "Е-поштаE-mail за потврдување на регистрација" #. module: event #: view:report.event.registration:0 @@ -663,7 +664,7 @@ msgstr "" #. module: event #: view:board.board:0 msgid "Events Filling By Status" -msgstr "" +msgstr "Пополнување на настани по статус" #. module: event #: selection:report.event.registration,event_state:0 @@ -783,7 +784,7 @@ msgstr "" #: field:event.event,message_is_follower:0 #: field:event.registration,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "ПратителЕ следбеник" #. module: event #: field:event.registration,user_id:0 @@ -860,7 +861,7 @@ msgstr "Датум" #. module: event #: view:event.event:0 msgid "Email Configuration" -msgstr "Конфигурирање на e-mail" +msgstr "Конфигурирање на е-поштаe-mail" #. module: event #: field:event.type,default_registration_min:0 @@ -929,7 +930,7 @@ msgstr "Откажи" #. module: event #: field:event.registration,reply_to:0 msgid "Reply-to Email" -msgstr "E-mail за повратен одговор" +msgstr "Е-поштаE-mail за повратен одговор" #. module: event #: view:event.event:0 @@ -984,7 +985,7 @@ msgstr "Претстојни настани од денес" #. module: event #: model:event.event,name:event.event_2 msgid "Conference on ERP Business" -msgstr "" +msgstr "Конференција за ERP Бизнис" #. module: event #: model:ir.actions.act_window,name:event.act_event_view_registration @@ -1113,12 +1114,12 @@ msgstr "ID" #. module: event #: field:event.type,default_reply_to:0 msgid "Default Reply-To" -msgstr "" +msgstr "Стандарден Одговор" #. module: event #: view:event.event:0 msgid "available." -msgstr "available." +msgstr "достапно." #. module: event #: field:event.registration,event_begin_date:0 diff --git a/addons/event_sale/i18n/mk.po b/addons/event_sale/i18n/mk.po index 412824eb5ef..6dde1a476c2 100644 --- a/addons/event_sale/i18n/mk.po +++ b/addons/event_sale/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-13 11:48+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 22:54+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product @@ -28,6 +29,8 @@ msgid "" "Determine if a product needs to create automatically an event registration " "at the confirmation of a sales order line." msgstr "" +"Определува дали производот треба автоматски да креира регистрација на настан " +"при потврдувањето на ставка од налогот за продажба." #. module: event_sale #: help:sale.order.line,event_id:0 @@ -35,6 +38,7 @@ msgid "" "Choose an event and it will automatically create a registration for this " "event." msgstr "" +"Изберете настан и тој автоматски ќе креира регистрација за овој настан." #. module: event_sale #: model:event.event,name:event_sale.event_technical_training @@ -47,6 +51,9 @@ msgid "" "Select event types so when we use this product in sales order lines, it will " "filter events of this type only." msgstr "" +"Изберете типови на настан така што кога го користиме овој производ во " +"ставките на налогот за продажба, ќе се филтрираат единствено настаните од " +"овој тип." #. module: event_sale #: field:product.product,event_type_id:0 @@ -77,7 +84,7 @@ msgstr "Техничка обука" #: code:addons/event_sale/event_sale.py:88 #, python-format msgid "The registration %s has been created from the Sales Order %s." -msgstr "" +msgstr "Регистрацијата %s е креирана од налогот за продажба %s." #. module: event_sale #: field:sale.order.line,event_id:0 diff --git a/addons/fleet/i18n/mk.po b/addons/fleet/i18n/mk.po index 1278bb75496..9ac2192fade 100644 --- a/addons/fleet/i18n/mk.po +++ b/addons/fleet/i18n/mk.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. # Ivica , 2013. +# Sofce Dimitrijeva , 2013. msgid "" 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-03-02 09:33+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: openerp-i18n-macedonian\n" +"PO-Revision-Date: 2013-03-28 22:57+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -31,7 +32,7 @@ msgstr "Компактно" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_1 msgid "A/C Compressor Replacement" -msgstr "Замена на компероср од клима" +msgstr "Замена на компресор од клима" #. module: fleet #: help:fleet.vehicle,vin_sn:0 @@ -111,7 +112,7 @@ msgstr "Јачина на возило kW" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_2 msgid "Depreciation and Interests" -msgstr "" +msgstr "Амортизација и камати" #. module: fleet #: field:fleet.vehicle.log.contract,insurer_id:0 @@ -123,7 +124,7 @@ msgstr "Добавувач" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Write here any other information" -msgstr "" +msgstr "Запишете овде некои други информации" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_35 @@ -204,7 +205,7 @@ msgstr "Замена на свеќички" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_24 msgid "Head Gasket(s) Replacement" -msgstr "Zamjena brtve glave" +msgstr "Замена на дихтонзи" #. module: fleet #: view:fleet.vehicle:0 @@ -217,7 +218,7 @@ msgstr "Сервиси" #: help:fleet.vehicle.cost,odometer:0 #: help:fleet.vehicle.cost,odometer_id:0 msgid "Odometer measure of the vehicle at the moment of this log" -msgstr "Состојба на одометар во моментов на овој запис" +msgstr "Состојба на одометар во моментот на овој запис" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -272,7 +273,7 @@ msgstr "Зачестеност за повторувачки трошок" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_1 msgid "Calculation Benefit In Kind" -msgstr "" +msgstr "Пресметка на корист во натура" #. module: fleet #: help:fleet.vehicle.log.contract,expiration_date:0 @@ -330,7 +331,7 @@ msgstr "Замена на филтер за воздух" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_tag msgid "fleet.vehicle.tag" -msgstr "" +msgstr "fleet.vehicle.tag" #. module: fleet #: view:fleet.vehicle:0 @@ -340,7 +341,7 @@ msgstr "Прикажи ја историјата на сервиси на ова #. module: fleet #: field:fleet.vehicle,contract_renewal_name:0 msgid "Name of contract to renew soon" -msgstr "Назив на договорот за скорашно обновување" +msgstr "Назив на договорот за скорешно обновување" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_senior @@ -429,7 +430,7 @@ msgstr "Поправки и одржување" #. module: fleet #: help:fleet.vehicle.log.contract,purchaser_id:0 msgid "Person to which the contract is signed for" -msgstr "" +msgstr "Лице до кое е назначен договорот" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_contract_act @@ -447,16 +448,15 @@ msgid "" "

\n" " " msgstr "" -"

\n" -"Kliknite za stvaranje novog ugovora\n" +"Кликнете за да креирате нов договор.\n" "

\n" -" Upravljanje vašim ugovorima(leasing, osiguranje, isl.) " -"uključivo \n" -" sa troškovima servisa i održavanja. OpenERP će Vas automatski " -"upozoriti kad bude vrijeme za obnavljanje ugovora.\n" +" Управувајте со вашите договори (лизинг, осигурување, и сл.) " +"со нивните \n" +" поврзани трошоци за сервиси и др. трошоци. OpenERP автоматски " +"ќе ве предупреди кога некои договори ќе треба да бидат обновени.\n" "

\n" -" Svaki ugovor (npr.: leasing) može uključivati različite usluge " -" (popravci, servisi, osiguranje).\n" +" Секој договор (на пр..: лизинг) може да вклучува различни " +"услуги (поправки, сервиси, осигурување).\n" "

\n" " " @@ -494,6 +494,8 @@ msgid "" "$('.oe_picture').load(function() { if($(this).width() > $(this).height()) { " "$(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_picture').load(function() { if($(this).width() > $(this).height()) { " +"$(this).addClass('oe_employee_picture_wide') } });" #. module: fleet #: view:board.board:0 @@ -513,13 +515,13 @@ msgid "" " " msgstr "" "

\n" -" Kliknite za stvaranje novog troška.\n" +" Кликнете за да креирате нов трошок.\n" "

\n" -" OpenERP olakšava upravljanje troškovima za različita \n" -" vozila. Troškovi se generiraju automatski iz servisnih " -"troškova,\n" -" ugovora (fiksnih ili ponavljajućih) i dnevnika potrošnje " -"goriva.\n" +" OpenERP го олеснува управувањето со трошоците за различните " +"возила. \n" +" Трошоците се генерираат автоматски од сервисите,\n" +" договорите (фиксни или повторувачки) и дневникот за " +"потрошувачка на гориво.\n" "

\n" " " @@ -531,7 +533,7 @@ msgstr "прикажи записи за потрошено гориво" #. module: fleet #: field:fleet.vehicle.log.contract,purchaser_id:0 msgid "Contractor" -msgstr "" +msgstr "Договарач" #. module: fleet #: field:fleet.vehicle,license_plate:0 @@ -587,7 +589,7 @@ msgstr "Тип" #. module: fleet #: field:fleet.vehicle,contract_renewal_overdue:0 msgid "Has Contracts Overdued" -msgstr "" +msgstr "Има заостанати договори" #. module: fleet #: field:fleet.vehicle.cost,amount:0 @@ -625,8 +627,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 "" -"Sadrži sažetak konverzacije (broj poruka,..). Ovaj sažetak je u html formatu " -"da bi mogao biti ubačen u kanban pogled." +"Содржи резиме на конверзација (број на пораки,..). Ова резиме е во html " +"формат за да може да биде вметнат во kanban поглед." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_5 @@ -641,7 +643,7 @@ msgstr "Евиденција на потрошувачка на гориво" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Write here any other information related to the service completed." -msgstr "" +msgstr "Запишете овде други информации поврзани со завршениот сервис." #. module: fleet #: view:fleet.vehicle:0 @@ -755,7 +757,7 @@ msgstr "Замена на лагери на тркало" #. module: fleet #: help:fleet.vehicle.cost,cost_subtype_id:0 msgid "Cost type purchased with this cost" -msgstr "" +msgstr "Тип на трошок направен со овој трошок" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -778,7 +780,7 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.log.contract,start_date:0 msgid "Contract Start Date" -msgstr "Почетен даму на договорот" +msgstr "Почетен датум на договорот" #. module: fleet #: field:fleet.vehicle,odometer_unit:0 @@ -832,6 +834,8 @@ msgid "" "Create a new contract automatically with all the same informations except " "for the date that will start at the end of current contract" msgstr "" +"Креирајте нов договор автоматски со истите информации освен за датумот кој " +"ќе започне на крајот од тековниот договор" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 @@ -1008,7 +1012,7 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_11 msgid "Management Fee" -msgstr "" +msgstr "Надоместок за управување" #. module: fleet #: view:fleet.vehicle:0 @@ -1141,6 +1145,8 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Мала фотографија за брендот. Таа автоматски се намалува како 64x64px слика, " +"со зачуван сооднос. Искористет го ова поле таму каде што се бара мала слика." #. module: fleet #: view:board.board:0 @@ -1219,10 +1225,11 @@ msgid "" " " msgstr "" "

\n" -"Kliknite za stvaranje novog modela.\n" -"

\n" -"Možete definirati više modela ( A3, A4) za svaku marku (Audi).\n" -"

\n" +" Кликнете за да креирате нов модел.\n" +"

\n" +" Можете да дефинирате неколку модели (e.g. A3, A4) за секоја " +"марка (Ауди).\n" +"

\n" " " #. module: fleet @@ -1245,14 +1252,15 @@ msgstr "" "

\n" " Кликнете за да креирате ново возило. \n" "

\n" -" You will be able to manage your fleet by keeping track of " -"the\n" -" contracts, services, fixed and recurring costs, odometers " -"and\n" -" fuel logs associated to each vehicle.\n" +" Ќе можете да управувате со вашиот возен парк преку следење " +"на \n" +" договорите, сервисите, фиксните и повторувачките трошоци, " +"одометрите и\n" +" логовите за гориво поврзани со секое возило.\n" "

\n" -" OpenERP will warn you when services or contract have to be\n" -" renewed.\n" +" OpenERP ќе ве предупреди кога сервисте или договорот ќе " +"треба да\n" +" бидат обновени.\n" "

\n" " " @@ -1289,6 +1297,24 @@ msgid "" "
\n" " " msgstr "" +"
\n" +"

\n" +" Контролната табла за возниот парк е празна.\n" +"

\n" +" За да го додадете вашиот прв извештај во оваа контролна " +"табла, \n" +" одете до било кое мени, префрлете се на приказ листа или " +"графикон и кликнете 'Додади на\n" +" Контролана табла' во опциите за проширени " +"пребарувања.\n" +"

\n" +" Можете да ги филтрирате и групирате податоците бред да " +"ги внесете во\n" +" контролната табла со користење на опциите за " +"пребарување.\n" +"

\n" +"
\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_12 @@ -1348,6 +1374,9 @@ msgid "" "Costs paid at regular intervals, depending on the cost frequency. If the " "cost frequency is set to unique, the cost will be logged at the start date" msgstr "" +"Трошоци кои се плаќаат во редовни интервали, во зависност од зачестеноста на " +"трошоците. Доколку зачестеноста на трошоците е подесена на уникатно, " +"трошокот ќе биде најавен на почетниот датум" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_17 @@ -1375,6 +1404,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" OpenERP ви помага да ги менаџирате трошоците за различните возила\n" +" Трошоците се креираат од сервисите и договорот и се појавуваат " +"овде.\n" +"

\n" +"

\n" +" Благодарение на различните филтри, OpenERP може да ги печати само " +"\n" +" ефективните трошоци, сортирајќи ги по тип и возило.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle,car_value:0 @@ -1439,6 +1479,9 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Лого со средна големина на марката. Тоа автоматски се намалува како " +"128х128px слика, со зачуван сооднос. Искористете го ова поле во приказите на " +"формуларот или во некои kanban прикази." #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 @@ -1459,7 +1502,7 @@ msgstr "" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_odometer msgid "Odometer log for a vehicle" -msgstr "" +msgstr "Лог за одометар за возило" #. module: fleet #: field:fleet.vehicle.cost,cost_type:0 @@ -1505,7 +1548,7 @@ msgstr "Купен" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Write here all other information relative to this contract" -msgstr "" +msgstr "Запишете ги овде сите други информации поврзани со овој договор" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_odometer_act @@ -1518,6 +1561,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Овде може да додадете различни внесови за одометарот за сите " +"возила.\n" +" Исто така можете да ја прикажете вредноста на одометарот за " +"поединечно возило користејќи го\n" +" полето пребарај.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle.model,brand_id:0 @@ -1631,12 +1682,12 @@ msgstr "Гориво" #. module: fleet #: sql_constraint:fleet.vehicle.state:0 msgid "State name already exists" -msgstr "Оваа име веќе постои" +msgstr "Ова име веќе постои" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_37 msgid "Radiator Repair" -msgstr "Поправка на радиатор" +msgstr "Поправка на радијатор" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_contract @@ -1687,7 +1738,7 @@ msgstr "Име на марка" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_36 msgid "Power Steering Pump Replacement" -msgstr "" +msgstr "Замена на пумпа за волан" #. module: fleet #: help:fleet.vehicle.cost,contract_id:0 @@ -1738,16 +1789,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Овде се прикажани возилата за кои еден или помеќе договори треба " +"да бидат обновени. Доколку ја гледате оваа порака, тогаш нема договори за " +"обновување.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_15 msgid "Catalytic Converter Replacement" -msgstr "" +msgstr "Замена на каталитички конвертор" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_25 msgid "Heater Blower Motor Replacement" -msgstr "" +msgstr "Замена на мотор на вентилатор за грејач" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_odometer_act @@ -1759,6 +1816,7 @@ msgstr "Одометар на возилата" #: help:fleet.vehicle.log.contract,notes:0 msgid "Write here all supplementary informations relative to this contract" msgstr "" +"Запишете ги овде сите дополнителни информации поврзани со овој договор" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_29 @@ -1856,18 +1914,18 @@ msgstr "Трошоци" #. module: fleet #: field:fleet.vehicle,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Резиме" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_contract_graph msgid "Contracts Costs by Month" -msgstr "" +msgstr "Трошоци на договори по месец" #. module: fleet #: field:fleet.vehicle,model_id:0 #: view:fleet.vehicle.model:0 msgid "Model" -msgstr "" +msgstr "Модел" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_41 @@ -1969,7 +2027,7 @@ msgstr "Замена на стартер" #: view:fleet.vehicle.cost:0 #: field:fleet.vehicle.cost,year:0 msgid "Year" -msgstr "" +msgstr "Година" #. module: fleet #: help:fleet.vehicle,license_plate:0 @@ -1979,7 +2037,7 @@ msgstr "Број на регистарска табличка на возило #. module: fleet #: model:ir.model,name:fleet.model_fleet_contract_state msgid "Contains the different possible status of a leasing contract" -msgstr "" +msgstr "Содржи различен можен статус на договорот за лизинг" #. module: fleet #: view:fleet.vehicle:0 @@ -1989,7 +2047,7 @@ msgstr "покажи го договорот за оваа возило" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Total" -msgstr "" +msgstr "Вкупно" #. module: fleet #: help:fleet.service.type,category:0 @@ -2006,4 +2064,4 @@ msgstr "За интерна употреба" #. module: fleet #: help:fleet.vehicle.state,sequence:0 msgid "Used to order the note stages" -msgstr "" +msgstr "Се користи за да се подредат етапите на белешката" diff --git a/addons/hr/i18n/mk.po b/addons/hr/i18n/mk.po index d1610a82bfe..b29640fe88e 100644 --- a/addons/hr/i18n/mk.po +++ b/addons/hr/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-13 08:23+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 23:01+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -28,7 +27,7 @@ msgstr "Openerp корисник" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "Дозволи валидација на распореди од менаџерите" +msgstr "Дозволи валидација на временските таблици од менаџерите" #. module: hr #: field:hr.job,requirements:0 @@ -555,7 +554,7 @@ msgstr "Поврзани вработени" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 msgid "Manage holidays, leaves and allocation requests" -msgstr "Менаџирање со одмори, отсуства и барања за распределување" +msgstr "Управување со одмори, отсуства и барања за распределување" #. module: hr #: field:hr.department,child_ids:0 @@ -734,8 +733,9 @@ msgstr "" " Кликнете за да креирате одделение.\n" "

\n" " OpenERP's структурата на одделенија се користи за да се " -"менаџираат сите документи\n" -" поврзани со вработените по одделенија: трошоци, распореди,\n" +"управува со сите документи\n" +" поврзани со вработените по одделенија: трошоци, временски " +"таблици,\n" " отсуства и одмори, вработувања, и др.\n" "

\n" " " diff --git a/addons/hr_attendance/i18n/mk.po b/addons/hr_attendance/i18n/mk.po index 80a113745b7..478ab3d7be3 100644 --- a/addons/hr_attendance/i18n/mk.po +++ b/addons/hr_attendance/i18n/mk.po @@ -2,20 +2,21 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. -# +# Sofce Dimitrijeva , 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-03-08 14:34+0000\n" +"PO-Revision-Date: 2013-03-28 23:02+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -30,7 +31,7 @@ msgstr "Пребарајте во апликацијата за Присутно #. module: hr_attendance #: field:hr.employee,last_sign:0 msgid "Last Sign" -msgstr "" +msgstr "Последен знак" #. module: hr_attendance #: view:hr.attendance:0 @@ -435,6 +436,9 @@ msgid "" "You tried to %s with a date anterior to another event !\n" "Try to contact the HR Manager to correct attendances." msgstr "" +"Вие пробавте да %s со датум кој претходи на друг настан !\n" +"Контактирајте го менаџерот за човечки ресурси за да ги корегирате " +"присуствата." #. module: hr_attendance #: selection:hr.attendance.month,month:0 diff --git a/addons/hr_contract/i18n/mk.po b/addons/hr_contract/i18n/mk.po index a2609d8cac6..a09176e4826 100644 --- a/addons/hr_contract/i18n/mk.po +++ b/addons/hr_contract/i18n/mk.po @@ -2,20 +2,21 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. -# +# Sofce Dimitrijeva , 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-03-07 16:06+0000\n" +"PO-Revision-Date: 2013-03-28 23:04+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -50,7 +51,7 @@ msgstr "Предности..." #. module: hr_contract #: field:hr.contract,department_id:0 msgid "Department" -msgstr "Сектор" +msgstr "Одделение" #. module: hr_contract #: view:hr.contract:0 @@ -92,7 +93,7 @@ msgstr "Работно Место" #. module: hr_contract #: field:hr.contract,advantages:0 msgid "Advantages" -msgstr "Придобивки" +msgstr "Предности" #. module: hr_contract #: view:hr.contract:0 @@ -135,7 +136,7 @@ msgstr "во километри" #: view:hr.contract:0 #: field:hr.contract,notes:0 msgid "Notes" -msgstr "Забелешки" +msgstr "Белешки" #. module: hr_contract #: field:hr.contract,permit_no:0 @@ -186,7 +187,7 @@ msgstr "" #. module: hr_contract #: field:hr.employee,manager:0 msgid "Is a Manager" -msgstr "Менаџер" +msgstr "Е Менаџер" #. module: hr_contract #: field:hr.contract,date_start:0 @@ -216,12 +217,12 @@ msgstr "Времетраење на пробен период" #. module: hr_contract #: view:hr.contract:0 msgid "Duration" -msgstr "Траење" +msgstr "Времетраење" #. module: hr_contract #: field:hr.contract,visa_expire:0 msgid "Visa Expire Date" -msgstr "Виза Датум на Истекување" +msgstr "Датум на истекување на виза" #. module: hr_contract #: field:hr.employee,medic_exam:0 diff --git a/addons/hr_evaluation/i18n/mk.po b/addons/hr_evaluation/i18n/mk.po index 4aa76c67c93..6fd5a793f09 100644 --- a/addons/hr_evaluation/i18n/mk.po +++ b/addons/hr_evaluation/i18n/mk.po @@ -2,30 +2,31 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-07 15:40+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 23:06+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:40+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 msgid "Send an anonymous summary to the manager" -msgstr "" +msgstr "Испратете анонимно резиме до менаџерот" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Start Appraisal" -msgstr "" +msgstr "Започнете оценување" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -37,7 +38,7 @@ msgstr "Групирај по..." #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Cancel Appraisal" -msgstr "" +msgstr "Откажете оценување" #. module: hr_evaluation #: field:hr.evaluation.interview,request_id:0 @@ -58,7 +59,7 @@ msgstr "Оддолжување до почеток" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal that are in waiting appreciation state" -msgstr "" +msgstr "Оценување кое е во состојба на чекање на appreciation" #. module: hr_evaluation #: view:hr_evaluation.plan:0 @@ -71,7 +72,7 @@ msgstr "Компанија" #: field:hr.evaluation.interview,evaluation_id:0 #: field:hr_evaluation.plan.phase,survey_id:0 msgid "Appraisal Form" -msgstr "" +msgstr "Формулар за оценување" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -83,7 +84,7 @@ msgstr "Ден" #: view:hr_evaluation.plan:0 #: field:hr_evaluation.plan,phase_ids:0 msgid "Appraisal Phases" -msgstr "" +msgstr "Фази на оценување" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -96,17 +97,19 @@ msgid "" "This number of months will be used to schedule the first evaluation date of " "the employee when selecting an evaluation plan. " msgstr "" +"Овој број на месеци ќе биде употребен за да се закаже датумот за првата " +"евалуација на вработениот кога се избира план за евалуација. " #. module: hr_evaluation #: view:hr.employee:0 #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree msgid "Appraisals" -msgstr "" +msgstr "Оценувања" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "(eval_name)s:Appraisal Name" -msgstr "" +msgstr "(eval_name)s:Име на оценување" #. module: hr_evaluation #: field:hr.evaluation.interview,message_ids:0 @@ -117,17 +120,17 @@ msgstr "Пораки" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Mail Body" -msgstr "" +msgstr "Тело на е-пошта" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,wait:0 msgid "Wait Previous Phases" -msgstr "" +msgstr "Чекам претходни фази" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_evaluation msgid "Employee Appraisal" -msgstr "" +msgstr "Оценување на вработен" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 @@ -146,7 +149,7 @@ msgstr "Не ги задоволува очекувањата" #: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_tree #: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr msgid "Appraisal" -msgstr "Проценка" +msgstr "Оценување" #. module: hr_evaluation #: help:hr.evaluation.interview,message_unread:0 @@ -194,11 +197,26 @@ msgid "" "\n" " " msgstr "" +"\n" +"Датум: %(date)s\n" +"\n" +"Почитуван %(employee_name)s,\n" +"\n" +"Правам евалуација во врска со %(eval_name)s.\n" +"\n" +"Ве молиме да доставите одговор.\n" +"\n" +"\n" +"Ви благодариме,\n" +"--\n" +"%(user_signature)s\n" +"\n" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal that are in Plan In Progress state" -msgstr "" +msgstr "Оценувања кои се во состојба План во тек" #. module: hr_evaluation #: help:hr.evaluation.interview,message_summary:0 @@ -240,7 +258,7 @@ msgstr "survey.request" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Cancel Survey" -msgstr "" +msgstr "Откажи анкета" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -256,7 +274,7 @@ msgstr "Интервјуа" #: code:addons/hr_evaluation/hr_evaluation.py:83 #, python-format msgid "Regarding " -msgstr "" +msgstr "Во врска со " #. module: hr_evaluation #: field:hr.evaluation.interview,message_follower_ids:0 @@ -287,7 +305,7 @@ msgstr "Ново" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,mail_body:0 msgid "Email" -msgstr "E-mail" +msgstr "Е-пошта" #. module: hr_evaluation #: selection:hr.evaluation.report,rating:0 @@ -327,13 +345,13 @@ msgstr "Јавни белешки" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Send Reminder Email" -msgstr "Испрати емаил за потсетување" +msgstr "Испрати е-пошта за потсетување" #. module: hr_evaluation #: view:hr.evaluation.report:0 #: field:hr_evaluation.evaluation,rating:0 msgid "Appreciation" -msgstr "" +msgstr "Благодарност" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -374,7 +392,7 @@ msgstr "Статус" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_plans_installer msgid "Review Appraisal Plans" -msgstr "" +msgstr "Прегледај ги плановите за оценување" #. module: hr_evaluation #: model:ir.actions.act_window,help:hr_evaluation.action_evaluation_plans_installer @@ -391,11 +409,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да дефинирате нов план за оценување.\n" +"

\n" +" Можете да дефинирате планови за оценување (на пр.: прво " +"интервју после 6\n" +" месеци, потоа секоја година). Потоа, секој вработен може да " +"биде поврзан на\n" +" план за оценување така што OpenERP ќе може автоматски да " +"генерира\n" +" барања за интервју до менаџерите и/или подредените.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Action to Perform" -msgstr "" +msgstr "Акција за извршување" #. module: hr_evaluation #: field:hr_evaluation.evaluation,note_action:0 @@ -426,7 +456,7 @@ msgstr "Во тек" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Interview Request" -msgstr "" +msgstr "Барање за интервју" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,send_answer_employee:0 @@ -438,7 +468,7 @@ msgstr "Сите одговори" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Answer Survey" -msgstr "" +msgstr "Одговори анкета" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -469,7 +499,7 @@ msgstr "Подесување на маил" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.evaluation_reminders msgid "Appraisal Reminders" -msgstr "" +msgstr "Потсетници за оценување" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,wait:0 @@ -477,6 +507,8 @@ msgid "" "Check this box if you want to wait that all preceding phases are finished " "before launching this phase." msgstr "" +"Означете го ова поле доколку сакате да чекате сите претходни фази да бидат " +"завршени пред лансирањето на оваа фаза." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -489,6 +521,8 @@ msgid "" "If the evaluation does not meet the expectations, you can proposean action " "plan" msgstr "" +"Доколку евалуацијата не ги задоволува очекувањата, можете да предложите " +"акционен план" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 @@ -499,7 +533,7 @@ msgstr "Нацрт" #: field:hr_evaluation.plan.phase,send_anonymous_employee:0 #: field:hr_evaluation.plan.phase,send_anonymous_manager:0 msgid "Anonymous Summary" -msgstr "" +msgstr "Анонимно резиме" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -514,7 +548,7 @@ msgstr "Чекам" #: field:hr_evaluation.plan.phase,plan_id:0 #: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan msgid "Appraisal Plan" -msgstr "" +msgstr "План за оценување" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -540,12 +574,12 @@ msgstr "Значително под очекувањата" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Validate Appraisal" -msgstr "" +msgstr "Потврди оценување" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid " (employee_name)s: Partner name" -msgstr "" +msgstr " (вработен_име)ња: Име на партнер" #. module: hr_evaluation #: field:hr.evaluation.interview,message_is_follower:0 @@ -579,12 +613,12 @@ msgstr "Проширени филтри..." #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_employee:0 msgid "Send an anonymous summary to the employee" -msgstr "" +msgstr "Испратете анонимно резиме до вработен" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan_phase msgid "Appraisal Plan Phase" -msgstr "" +msgstr "Етапа од план за оценување" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -594,7 +628,7 @@ msgstr "Јануари" #. module: hr_evaluation #: view:hr.employee:0 msgid "Appraisal Interviews" -msgstr "" +msgstr "Интервјуа за оценување" #. module: hr_evaluation #: field:hr.evaluation.interview,message_summary:0 @@ -626,30 +660,30 @@ msgstr "Финална валидација" #. module: hr_evaluation #: selection:hr_evaluation.evaluation,state:0 msgid "Waiting Appreciation" -msgstr "" +msgstr "Чекам оценување" #. module: hr_evaluation #: view:hr.evaluation.report:0 #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_report_all #: model:ir.ui.menu,name:hr_evaluation.menu_evaluation_report_all msgid "Appraisal Analysis" -msgstr "" +msgstr "Анализи на оценување" #. module: hr_evaluation #: field:hr_evaluation.evaluation,date:0 msgid "Appraisal Deadline" -msgstr "" +msgstr "Краен рок за оценување" #. module: hr_evaluation #: field:hr.evaluation.report,rating:0 msgid "Overall Rating" -msgstr "" +msgstr "Вкупна оценка" #. module: hr_evaluation #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Interviewer" -msgstr "" +msgstr "Интервјуер" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_report @@ -664,12 +698,12 @@ msgstr "Датум на краен рок" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 msgid "This is the appreciation on which the evaluation is summarized." -msgstr "" +msgstr "Ова е оценувањето на кое е резимирана евалуацијата." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Top-Down Appraisal Requests" -msgstr "" +msgstr "Барања за оценување од врвот надолу" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -695,12 +729,12 @@ msgstr "Завршено" #: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_plan_tree #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_plan_tree msgid "Appraisal Plans" -msgstr "" +msgstr "Планови за оценување" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_interview msgid "Appraisal Interview" -msgstr "" +msgstr "Интервју за оценување" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -725,7 +759,7 @@ msgstr "Испрати маил за оваа фаза" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,email_subject:0 msgid "char" -msgstr "" +msgstr "знак" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -738,6 +772,8 @@ msgid "" "The date of the next appraisal is computed by the appraisal plan's dates " "(first appraisal + periodicity)." msgstr "" +"Датумот на следно оценување е пресметан преку датумите од планот за " +"оценување (прво оценување + периодичност)." #. module: hr_evaluation #: field:hr.evaluation.report,overpass_delay:0 @@ -750,17 +786,19 @@ msgid "" "The number of month that depicts the delay between each evaluation of this " "plan (after the first one)." msgstr "" +"Број на месеци кој го опишува одолжувањето помеѓу секоја евалуација од овој " +"план (после првото)." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Self Appraisal Requests" -msgstr "" +msgstr "Барања за самооценување" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 #: field:hr_evaluation.evaluation,survey_request_ids:0 msgid "Appraisal Forms" -msgstr "" +msgstr "Формулари за оценување" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -784,6 +822,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате ново оценување.\n" +"

\n" +" На секој вработен може да му биде доделен План за оценување. " +"Таквиот план\n" +" ја дефинира зачестеноста и начинот на кој ги менаџирате " +"периодичните евалуацуии на вашиот персонал. \n" +" Ќе може да дефинирате чекори и да прикачувате интервјуа на " +"секој\n" +" чекор. OpenERP ги менаџира сите видови на евалуации:\n" +" одоздола-нагоре, одгоре-надолу, само-евалуирање и финална \n" +" евалуација од менаџерот.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -793,17 +845,17 @@ msgstr "Внатрешни белешки" #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Final Interview" -msgstr "Фианлно интервју" +msgstr "Финално интервју" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,name:0 msgid "Phase" -msgstr "Фаза" +msgstr "Етапа" #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Bottom-Up Appraisal Requests" -msgstr "" +msgstr "Барања за оценување одоздола-нагоре" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -814,28 +866,28 @@ msgstr "Февруари" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Interview Appraisal" -msgstr "" +msgstr "Оценување на интервју" #. module: hr_evaluation #: field:survey.request,is_evaluation:0 msgid "Is Appraisal?" -msgstr "" +msgstr "Е оценување?" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:320 #, python-format msgid "You cannot start evaluation without Appraisal." -msgstr "" +msgstr "Можете да започнете евалуација без оценување." #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal Summary..." -msgstr "" +msgstr "Резиме на оценување..." #. module: hr_evaluation #: field:hr.evaluation.interview,user_to_review_id:0 msgid "Employee to Interview" -msgstr "" +msgstr "Вработен за интервјуирање" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:235 @@ -844,6 +896,8 @@ msgid "" "You cannot change state, because some appraisal(s) are in waiting answer or " "draft state." msgstr "" +"Не може да ја промените етапата, бидејќи некои оценувања се во состојба на " +"чекање одговор или во нацрт состојба." #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -853,7 +907,7 @@ msgstr "Април" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Appraisal Plan Phases" -msgstr "" +msgstr "Фази на план за оценување" #. module: hr_evaluation #: model:ir.actions.act_window,help:hr_evaluation.action_hr_evaluation_interview_tree @@ -870,6 +924,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да креирате ново барање за интервју поврзано со " +"евалуација на персонал. \n" +"

\n" +" Барањата за интервју вообичаено се генерираат автоматски од\n" +" OpenERP во согласност со планот за оценување на вработениот. " +"Секој корисник\n" +" добива автоматски е-пошти и барања за да ги евалуираат " +"нивните\n" +" колеги периодично.\n" +"

\n" +" " #. module: hr_evaluation #: help:hr.evaluation.interview,message_ids:0 @@ -881,7 +947,7 @@ msgstr "Историја на пораки и комуникација" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Search Appraisal" -msgstr "" +msgstr "Барај оценување" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,sequence:0 @@ -899,7 +965,7 @@ msgstr "(корисник_потпис)и: Корисничко име" #: model:ir.actions.act_window,name:hr_evaluation.action_hr_evaluation_interview_tree #: model:ir.ui.menu,name:hr_evaluation.menu_open_hr_evaluation_interview_requests msgid "Interview Requests" -msgstr "" +msgstr "Барања за интервју" #. module: hr_evaluation #: field:hr.evaluation.report,create_date:0 @@ -915,17 +981,17 @@ msgstr "Година" #. module: hr_evaluation #: field:hr_evaluation.evaluation,note_summary:0 msgid "Appraisal Summary" -msgstr "" +msgstr "Резиме на оценување" #. module: hr_evaluation #: field:hr.employee,evaluation_date:0 msgid "Next Appraisal Date" -msgstr "" +msgstr "Датум на следно оценување" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Action Plan..." -msgstr "" +msgstr "Акционен план..." #~ msgid "Cancel" #~ msgstr "Откажи" diff --git a/addons/hr_expense/i18n/mk.po b/addons/hr_expense/i18n/mk.po index e8389926c44..4f8efd6079d 100644 --- a/addons/hr_expense/i18n/mk.po +++ b/addons/hr_expense/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-01 18:26+0000\n" +"PO-Revision-Date: 2013-03-28 23:08+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -119,7 +120,7 @@ msgstr "" #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report msgid "Expenses Statistics" -msgstr "Стистики на трошоци" +msgstr "Статистики на трошоци" #. module: hr_expense #: view:hr.expense.expense:0 @@ -138,6 +139,8 @@ msgid "" "Date of the acceptation of the sheet expense. It's filled when the button " "Accept is pressed." msgstr "" +"Датум на прифаќање на список на трошокот. Тоа е пополнето кога е притиснато " +"копчето Прифати." #. module: hr_expense #: view:hr.expense.expense:0 @@ -181,7 +184,7 @@ msgstr "Откажано" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_refused0 msgid "The direct manager refuses the sheet.Reset as draft." -msgstr "" +msgstr "Директниот меначер го одбива списокот. Ресетирај до нацрт." #. module: hr_expense #: help:hr.expense.expense,message_unread:0 @@ -217,6 +220,11 @@ msgid "" "If the admin accepts it, the status is 'Accepted'.\n" " If a receipt is made for the expense request, the status is 'Done'." msgstr "" +"Кога се креира барање за трошок статусот е 'Нацрт'.\n" +" Кога е потврдено од корисникот и барањето е испратено до администраторот, " +"статусот е 'Чекам потврда'.\n" +"Доколку администраторот го прифати, статусот е 'Прифатено'.\n" +" Доколку за барањето за трошок е направена сметка, статусот е 'Завршено'." #. module: hr_expense #: help:hr.expense.expense,date_confirm:0 @@ -224,6 +232,8 @@ msgid "" "Date of the confirmation of the sheet expense. It's filled when the button " "Confirm is pressed." msgstr "" +"Датум на потврдување на список на трошокот. Тоа е пополнето кога е " +"притиснато копчето Потврди." #. module: hr_expense #: view:hr.expense.report:0 @@ -280,12 +290,13 @@ msgstr "" #. module: hr_expense #: field:hr.expense.report,delay_valid:0 msgid "Delay to Valid" -msgstr "" +msgstr "Одложување до потврдување" #. module: hr_expense #: help:hr.expense.line,sequence:0 msgid "Gives the sequence order when displaying a list of expense lines." msgstr "" +"Дава секвенциски редослед кога ја прикажува листата на ставки на трошокот." #. module: hr_expense #: field:hr.expense.expense,state:0 @@ -299,7 +310,7 @@ msgstr "Статус" #: view:hr.expense.report:0 #: field:hr.expense.report,analytic_account:0 msgid "Analytic account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: hr_expense #: field:hr.expense.report,date:0 @@ -438,7 +449,7 @@ msgstr "Анализа на трошоци" #: model:ir.model,name:hr_expense.model_hr_expense_expense #: model:process.process,name:hr_expense.process_process_expenseprocess0 msgid "Expense" -msgstr "" +msgstr "Трошок" #. module: hr_expense #: view:hr.expense.expense:0 @@ -493,7 +504,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Free Notes" -msgstr "" +msgstr "Слободни белешки" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:301 @@ -532,6 +543,8 @@ msgid "" "Please configure Default Expense account for Product purchase: " "`property_account_expense_categ`." msgstr "" +"Конфигурирајте Сметка Стандарден трошок за набавка на производ: " +"`property_account_expense_categ`." #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveexpense0 @@ -620,6 +633,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Click to register new expenses. \n" +"

\n" +" OpenERP will ensure the whole process is followed; the " +"expense\n" +" sheet is validated by manager(s), the employee is " +"reimbursed\n" +" from his expenses, some expenses must be re-invoiced to the\n" +" customers.\n" +"

\n" +" " #. module: hr_expense #: view:hr.expense.expense:0 @@ -923,6 +947,8 @@ msgstr "Трошоци" #: help:product.product,hr_expense_ok:0 msgid "Specify if the product can be selected in an HR expense line." msgstr "" +"Означете доколку производот може да биде избран во ставка трошок за човечки " +"ресурси." #. module: hr_expense #: view:hr.expense.expense:0 diff --git a/addons/hr_holidays/i18n/mk.po b/addons/hr_holidays/i18n/mk.po index 3cf31f8b0e9..25fca875129 100644 --- a/addons/hr_holidays/i18n/mk.po +++ b/addons/hr_holidays/i18n/mk.po @@ -2,20 +2,21 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-07 16:03+0000\n" +"PO-Revision-Date: 2013-03-28 23:12+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:41+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -45,12 +46,12 @@ msgstr "" #. module: hr_holidays #: help:hr.holidays.status,remaining_leaves:0 msgid "Maximum Leaves Allowed - Leaves Already Taken" -msgstr "Максимален број на дозволени отсуства - Отсуствата се веќе земени" +msgstr "Максимален број на дозволени отсуства - Веќе земени отсуства" #. module: hr_holidays #: view:hr.holidays:0 msgid "Leaves Management" -msgstr "Менаџирање на Отсуства" +msgstr "Управување со Отсуства" #. module: hr_holidays #: view:hr.holidays:0 @@ -71,7 +72,7 @@ msgstr "Од датум" #: view:hr.holidays:0 #: field:hr.holidays,department_id:0 msgid "Department" -msgstr "Сектор" +msgstr "Одделение" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation @@ -92,7 +93,7 @@ msgstr "Кафена" #. module: hr_holidays #: view:hr.holidays:0 msgid "Remaining Days" -msgstr "Останати Денови" +msgstr "Преостанати Денови" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -311,7 +312,7 @@ msgstr "Од" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_sl msgid "Sick Leaves" -msgstr "Отсуства за боледување" +msgstr "Боледување" #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:478 @@ -437,7 +438,7 @@ msgstr "Пребарај Тип на Отсуство" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 msgid "Waiting Approval" -msgstr "Се чека на одобрување" +msgstr "Се чека одобрување" #. module: hr_holidays #: field:hr.holidays,category_id:0 @@ -515,7 +516,7 @@ msgstr "Непрочитани Пораки" #: model:ir.actions.act_window,name:hr_holidays.open_ask_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays_new msgid "Leave Requests" -msgstr "Барање за Отсуство" +msgstr "Барања за Отсуство" #. module: hr_holidays #: field:hr.holidays.status,limit:0 @@ -564,7 +565,7 @@ msgstr "" "испратено до\n" " менаџерот за потврдување. Осигурете се дека сте го подесиле " "правиот тип на отсуство\n" -" type (заздравување, законски одмори, болест) и точниот број\n" +" (заздравување, законски одмори, болест) и точниот број\n" " на денови поврзани со вашето отсуство.\n" "

\n" " " @@ -673,7 +674,7 @@ msgstr "Барања за одобрување" #. module: hr_holidays #: field:hr.holidays.status,leaves_taken:0 msgid "Leaves Already Taken" -msgstr "Отсуствата се веќе зафаени" +msgstr "Отсуствата кои се веќе зафатени" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 @@ -740,7 +741,7 @@ msgstr "Светло сина" #. module: hr_holidays #: view:hr.holidays:0 msgid "My Department Leaves" -msgstr "Мои Секторски Отсуства" +msgstr "Отсуства во моето одделение" #. module: hr_holidays #: field:hr.employee,current_leave_state:0 @@ -828,7 +829,7 @@ msgstr "Детал за Отсуство" #: field:hr.holidays,double_validation:0 #: field:hr.holidays.status,double_validation:0 msgid "Apply Double Validation" -msgstr "Аплицирај Дупла Валидација" +msgstr "Примени Дупла Валидација" #. module: hr_holidays #: view:hr.employee:0 @@ -857,7 +858,7 @@ msgstr "Мои отсуства" #. module: hr_holidays #: field:hr.holidays.summary.dept,depts:0 msgid "Department(s)" -msgstr "Сектор(и)" +msgstr "Одделение(ија)" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -883,7 +884,7 @@ msgstr "Опис" #: view:hr.employee:0 #: field:hr.employee,remaining_leaves:0 msgid "Remaining Legal Leaves" -msgstr "Останати Легални Отсуства" +msgstr "Останати законски отсуства" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 @@ -1019,6 +1020,9 @@ msgid "" "to create allocation/leave request. Total based on all the leave types " "without overriding limit." msgstr "" +"Вкупен број на законски отсуства распределени на овој вработен, променете ја " +"оваа вредност за да креирате барање за распределба/отсуство. Вкупно " +"засновано на сите типови на отсуства без overriding limit." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_payroll_account/i18n/mk.po b/addons/hr_payroll_account/i18n/mk.po index cb02f812608..881388efe1b 100644 --- a/addons/hr_payroll_account/i18n/mk.po +++ b/addons/hr_payroll_account/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-11 15:12+0000\n" +"PO-Revision-Date: 2013-03-28 23:18+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -74,12 +75,12 @@ msgstr "Договор" #: field:hr.contract,analytic_account_id:0 #: field:hr.salary.rule,analytic_account_id:0 msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: hr_payroll_account #: field:hr.salary.rule,account_debit:0 msgid "Debit Account" -msgstr "Конто Задолжување" +msgstr "Сметка Задолжување" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payslip_run @@ -119,7 +120,7 @@ msgstr "Извод од платен список" #: code:addons/hr_payroll_account/hr_payroll_account.py:174 #, python-format msgid "Adjustment Entry" -msgstr "Запис за прилагодување" +msgstr "Внес за прилагодување" #. module: hr_payroll_account #: field:hr.contract,journal_id:0 diff --git a/addons/hr_timesheet/i18n/mk.po b/addons/hr_timesheet/i18n/mk.po index bbac7c72f6b..4e17fca4d24 100644 --- a/addons/hr_timesheet/i18n/mk.po +++ b/addons/hr_timesheet/i18n/mk.po @@ -2,20 +2,21 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-11 14:52+0000\n" +"PO-Revision-Date: 2013-03-28 23:22+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:42+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -94,7 +95,7 @@ msgstr "" "Вработените може да го кодираат времето поминато на различни проекти. " "Проектот е аналитичка сметка и времето поминато на проектот генерира трошоци " "на аналитичката сметка. Оваа карактеристика овозможува снимање во исто време " -"и на присуството и на распоредот." +"и на присуството и на временската таблица." #. module: hr_timesheet #: field:hr.employee,uom_id:0 @@ -104,7 +105,7 @@ msgstr "Единица мерка" #. module: hr_timesheet #: field:hr.employee,journal_id:0 msgid "Analytic Journal" -msgstr "Аналитичка картица" +msgstr "Аналитички дневник" #. module: hr_timesheet #: view:hr.sign.out.project:0 @@ -115,13 +116,13 @@ msgstr "Престани со работење" #: model:ir.actions.act_window,name:hr_timesheet.action_hr_timesheet_employee #: model:ir.ui.menu,name:hr_timesheet.menu_hr_timesheet_employee msgid "Employee Timesheet" -msgstr "Распоред на вработен" +msgstr "Временска таблица на вработен" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 #: model:ir.ui.menu,name:hr_timesheet.menu_hr_timesheet_reports msgid "Timesheet" -msgstr "Распоред" +msgstr "Временска таблица" #. module: hr_timesheet #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 @@ -153,7 +154,7 @@ msgstr "Пет" #: model:ir.actions.act_window,name:hr_timesheet.act_hr_timesheet_line_evry1_all_form #: model:ir.ui.menu,name:hr_timesheet.menu_hr_working_hours msgid "Timesheet Activities" -msgstr "Активности по распоред" +msgstr "Активности на временска таблица" #. module: hr_timesheet #: field:hr.sign.out.project,analytic_amount:0 @@ -163,7 +164,7 @@ msgstr "Минимална аналитичка сума" #. module: hr_timesheet #: view:hr.analytical.timesheet.employee:0 msgid "Monthly Employee Timesheet" -msgstr "Месечен распоред на вработен" +msgstr "Месечена временска таблица на вработен" #. module: hr_timesheet #: view:hr.sign.out.project:0 @@ -184,7 +185,7 @@ msgstr "Проект / Аналитичка сметка" #. module: hr_timesheet #: model:ir.model,name:hr_timesheet.model_hr_analytical_timesheet_users msgid "Print Employees Timesheet" -msgstr "Печати распоред на вработени" +msgstr "Печати временски таблици на вработени" #. module: hr_timesheet #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 @@ -274,7 +275,7 @@ msgstr "" " Можете да ги регистрирате и следите вашите работни часови по " "проект секој ден.\n" " Секое врема поминато на проект ќе стане трошок во \n" -" аналитичкот сметководство/договорот и може да биде повторно " +" аналитичкто сметководство/договорот и може да биде повторно " "фактурирано на\n" " клиентите доколку е потребно.\n" "

\n" @@ -289,12 +290,13 @@ msgstr "Печати" #. module: hr_timesheet #: help:account.analytic.account,use_timesheets:0 msgid "Check this field if this project manages timesheets" -msgstr "Означете го ова поле доколку овој проект менаџира распореди" +msgstr "" +"Означете го ова поле доколку овој проект управува со временски таблици" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 msgid "Monthly Employees Timesheet" -msgstr "Месечен распоред на вработен" +msgstr "Месечна временска таблица на вработен" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:41 @@ -330,7 +332,8 @@ msgid "" "Please set one or we cannot automatically fill the timesheet." msgstr "" "Нема дефинирано аналитичка сметка за проектот.\n" -"Подесете ја или нема да можеме автоматски да го пополниме распоредот." +"Подесете ја или нема да можеме автоматски да ја пополниме временската " +"таблица." #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -392,12 +395,12 @@ msgstr "или" #. module: hr_timesheet #: xsl:hr.analytical.timesheet:0 msgid "Timesheet by Employee" -msgstr "Распоред по вработен" +msgstr "Временска таблица по вработен" #. module: hr_timesheet #: model:ir.actions.report.xml,name:hr_timesheet.report_user_timesheet msgid "Employee timesheet" -msgstr "Распоред на вработен" +msgstr "Временска таблица на вработен" #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.action_hr_timesheet_sign_in @@ -426,7 +429,7 @@ msgstr "(Оставете празно за тековно време)" #: field:account.analytic.account,use_timesheets:0 #: view:hr.employee:0 msgid "Timesheets" -msgstr "Распореди" +msgstr "Временски таблици" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.action_define_analytic_structure @@ -531,7 +534,8 @@ msgstr "Најава/Одјава по Проект" #. module: hr_timesheet #: model:ir.model,name:hr_timesheet.model_hr_analytical_timesheet_employee msgid "Print Employee Timesheet & Print My Timesheet" -msgstr "Испечати распоред на вработен & Испечати Мој распоред" +msgstr "" +"Испечати временска таблица на вработен & Испечати Моја временска таблица" #. module: hr_timesheet #: field:hr.sign.in.project,emp_id:0 @@ -563,7 +567,7 @@ msgstr "Откажи" #: model:ir.actions.report.xml,name:hr_timesheet.report_users_timesheet #: model:ir.ui.menu,name:hr_timesheet.menu_hr_timesheet_users msgid "Employees Timesheet" -msgstr "Распоред на вработен" +msgstr "Временска таблица на вработен" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -587,7 +591,7 @@ msgstr "" "Вработените може да го кодираат времето поминато на различни проекти на кои " "се назначени. Проектот е аналитичка сметка и времето поминато на проектот " "генерира трошоци на аналитичката сметка. Оваа карактеристика овозможува " -"снимање во исто време и на присуството и на распоредот." +"снимање во исто време и на присуството и на временската таблица." #. module: hr_timesheet #: field:hr.sign.in.project,server_date:0 @@ -598,7 +602,7 @@ msgstr "Тековен датум" #. module: hr_timesheet #: model:ir.model,name:hr_timesheet.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "Ставка на распоред" +msgstr "Ставка на временска таблица" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 diff --git a/addons/hr_timesheet_invoice/i18n/mk.po b/addons/hr_timesheet_invoice/i18n/mk.po index 42c24fe67f9..da4ce460b84 100644 --- a/addons/hr_timesheet_invoice/i18n/mk.po +++ b/addons/hr_timesheet_invoice/i18n/mk.po @@ -8,20 +8,20 @@ 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-03-11 14:33+0000\n" +"PO-Revision-Date: 2013-03-28 23:23+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: Macedonian \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:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 #: view:report_timesheet.user:0 msgid "Timesheet by user" -msgstr "Распоред по корисник" +msgstr "Временска таблица по корисник" #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,name:0 @@ -87,7 +87,7 @@ msgstr "Единица мерка" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_user msgid "Timesheet per day" -msgstr "Распоред по ден" +msgstr "Временска таблица по ден" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -211,7 +211,7 @@ msgstr "Ценовник" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create msgid "Create invoice from timesheet" -msgstr "Креирај фактура од распоред" +msgstr "Креирај фактура од временска таблица" #. module: hr_timesheet_invoice #: report:account.analytic.profit:0 @@ -231,11 +231,11 @@ msgid "" "20% advance invoice (fixed price, based on a sales order), you should " "invoice the rest on timesheet with a 80% ratio." msgstr "" -"Вообичаено фактурирате 100% од вашите распореди. Но доколку комбинирате " -"фиксна цена и фактурирање по распоред, може да употребите и друг сооднос. " -"На пример, доколку издадете фактура на 20% аванс (финска цена, засновано на " -"налог за продажба), остатокот од распоредот треба да го фактурирате со " -"сооднос од 80%." +"Вообичаено фактурирате 100% од вашите временски таблици. Но доколку " +"комбинирате фиксна цена и фактурирање по временска таблица, може да " +"употребите и друг сооднос. На пример, доколку издадете фактура на 20% аванс " +"(финска цена, засновано на налог за продажба), остатокот од временската " +"таблица треба да го фактурирате со сооднос од 80%." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -246,7 +246,7 @@ msgstr "Креирај фактури" #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_account_date #: view:report_timesheet.account.date:0 msgid "Daily timesheet per account" -msgstr "Дневен распоред по сметка" +msgstr "Дневна временска таблица по сметка" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_account_analytic_account @@ -337,7 +337,7 @@ msgstr "Присилно користење на специјален произ #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_user_stat_all msgid "Timesheet by User" -msgstr "Распоред по корисник" +msgstr "Временска таблица по корисник" #. module: hr_timesheet_invoice #: view:account.analytic.line:0 @@ -352,7 +352,7 @@ msgstr "Да се фактурира" #: model:ir.actions.report.xml,name:hr_timesheet_invoice.report_analytical_profit #: model:ir.ui.menu,name:hr_timesheet_invoice.menu_hr_timesheet_analytic_profit msgid "Timesheet Profit" -msgstr "Профит по распоред" +msgstr "Профит по временска таблица" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create,product:0 @@ -408,7 +408,7 @@ msgstr "Аналитички ставки на извештај за факту #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_invoice_stat_all msgid "Timesheet by Invoice" -msgstr "Распоред по фактура" +msgstr "Временска таблица по фактура" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_analytic_account_tree @@ -429,7 +429,7 @@ msgstr "Да (100%)" #. module: hr_timesheet_invoice #: view:report_timesheet.user:0 msgid "Timesheet by users" -msgstr "Распоред по корисници" +msgstr "Временска таблица по корисници" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:58 @@ -493,7 +493,7 @@ msgstr "" #: view:report_timesheet.account:0 #: view:report_timesheet.account.date:0 msgid "Timesheet by account" -msgstr "Распоред по сметка" +msgstr "Временска таблица по сметка" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 @@ -547,12 +547,12 @@ msgstr "Прикажи детали од работа на ставка на ф #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_account #: view:report_timesheet.account:0 msgid "Timesheet per account" -msgstr "Распоред по сметка" +msgstr "Временска таблица по сметка" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_account_stat_all msgid "Timesheet by Account" -msgstr "Распоред по сметка" +msgstr "Временска таблица по сметка" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_account_move_line @@ -631,7 +631,7 @@ msgstr "Време" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create_final msgid "Create invoice from timesheet final" -msgstr "Креирај фактура од финален распоред" +msgstr "Креирај фактура од финална временска таблица" #. module: hr_timesheet_invoice #: field:report.analytic.account.close,balance:0 @@ -652,7 +652,7 @@ msgstr "Општа сметка" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_analytic_profit msgid "Print Timesheet Profit" -msgstr "" +msgstr "Печати профит од временска таблица" #. module: hr_timesheet_invoice #: report:account.analytic.profit:0 @@ -682,7 +682,7 @@ msgstr "Макс. цена на фактура" #. module: hr_timesheet_invoice #: field:account.analytic.account,to_invoice:0 msgid "Timesheet Invoicing Ratio" -msgstr "Сооднос на фактурирање на распоред" +msgstr "Сооднос на фактурирање на временска таблица" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -713,7 +713,7 @@ msgstr "Откажи" #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_line #: view:report.timesheet.line:0 msgid "Timesheet Line" -msgstr "Ставка на распоред" +msgstr "Ставка од временска таблица" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -773,7 +773,7 @@ msgstr "Некомплетен договор. Пополнете ги поли #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_account_date_stat_all msgid "Daily Timesheet by Account" -msgstr "Дневен распоред по сметка" +msgstr "Дневна временска таблица по сметка" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,product:0 @@ -831,7 +831,7 @@ msgstr "Дали сакате да ги покажете на клиентот #. module: hr_timesheet_invoice #: view:report_timesheet.invoice:0 msgid "Timesheet by invoice" -msgstr "Распоред по фактура" +msgstr "Временска таблица по фактура" #. module: hr_timesheet_invoice #: report:account.analytic.profit:0 @@ -860,7 +860,7 @@ msgstr "Аналитички ставки" #. module: hr_timesheet_invoice #: view:report_timesheet.account.date:0 msgid "Daily timesheet by account" -msgstr "Дневен распоред по сметка" +msgstr "Дневна временска таблица по сметка" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,sale_price:0 diff --git a/addons/hr_timesheet_sheet/i18n/mk.po b/addons/hr_timesheet_sheet/i18n/mk.po index f1f69e75bfd..aa3d0d3e432 100644 --- a/addons/hr_timesheet_sheet/i18n/mk.po +++ b/addons/hr_timesheet_sheet/i18n/mk.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-03-11 14:06+0000\n" +"PO-Revision-Date: 2013-03-28 23:23+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: Macedonian \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:43+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet @@ -43,8 +43,8 @@ msgid "" " computation for one sheet. Set this to 0 if you do not want " "any control." msgstr "" -"Дозволена разлика во часови помеѓу најава/одјава и пресметката на " -"распоредот\n" +"Дозволена разлика во часови помеѓу најава/одјава и пресметката на врменската " +"таблица\n" " за еден лист. Подесете го на 0 доколку не сакате било каква " "контрола." @@ -71,7 +71,7 @@ msgstr "Одделение" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_tasktimesheet0 msgid "Task timesheet" -msgstr "Распоред на задача" +msgstr "Временска таблица на задача" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:73 @@ -81,8 +81,8 @@ msgid "" "In order to create a timesheet for this employee, you must assign an " "analytic journal to the employee, like 'Timesheet Journal'." msgstr "" -"Со цел да креирате распоред за овој вработен, мора да доделите аналитички " -"дневник на вработениот, како 'Дневник Распоред'" +"Со цел да креирате временска таблица за овој вработен, мора да доделите " +"аналитички дневник на вработениот, како 'Дневник Временска таблица'." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -119,7 +119,7 @@ msgstr "Компанија" #: model:process.node,name:hr_timesheet_sheet.process_node_timesheet0 #: view:timesheet.report:0 msgid "Timesheet" -msgstr "Распоред" +msgstr "Временска таблица" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -129,7 +129,7 @@ msgstr "Постави во нацрт" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Timesheet Period" -msgstr "Период на распоред" +msgstr "Период на временска таблица" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,date_to:0 @@ -145,14 +145,14 @@ msgstr "до" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_invoiceonwork0 msgid "Based on the timesheet" -msgstr "Засновано на распоред" +msgstr "Засновано на временска таблица" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." -msgstr "Не можете да измените запис во потврден распоред." +msgstr "Не можете да измените внес во потврдена временска таблица." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -163,7 +163,7 @@ msgstr "Групирај по ден од датум" #. module: hr_timesheet_sheet #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_my_current msgid "My Current Timesheet" -msgstr "Мојот тековен распоред" +msgstr "Мојата тековна временска таблица" #. module: hr_timesheet_sheet #: model:process.transition.action,name:hr_timesheet_sheet.process_transition_action_validatetimesheet0 @@ -195,7 +195,7 @@ msgstr "Одбиј" #: view:hr_timesheet_sheet.sheet:0 #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_2_hr_analytic_timesheet msgid "Timesheet Activities" -msgstr "Активности по распоред" +msgstr "Активности по временска таблица" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 @@ -210,8 +210,8 @@ msgstr "Креирајте вработен и поврзете го со ово msgid "" "You cannot enter an attendance date outside the current timesheet dates." msgstr "" -"Не може да внесете датум на присуство надвор од датумите на тековниот " -"распоред." +"Не може да внесете датум на присуство надвор од датумите на тековната " +"временска таблица." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:205 @@ -229,13 +229,14 @@ msgid "" "the user and can be validated by his manager. If required, as defined on the " "project, you can generate the invoices based on the timesheet." msgstr "" -"Мојот распоред го отвара вашиотраспоред така што можете да ги резервирате " -"вашите активности во системот. Од истиот формулар, може да ги регистрирате " -"вашите присуства (Пријава/Одјава) и да ги опишете работните часови кои сте " -"ги поминале на различни проекти. На крајот на периодот дефиниран во " -"компанијата, распоредот е потврден од страна на корисникот и може да биде " -"валидиран од неговиот менаџер. Доколку е потребно, како што е дефинирано на " -"проектот, можете да генерирате фактури врз основа на распоредот." +"Мојата временска таблица ја отвара вашата временска таблица така што можете " +"да ги резервирате вашите активности во системот. Од истиот формулар, може да " +"ги регистрирате вашите присуства (Пријава/Одјава) и да ги опишете работните " +"часови кои сте ги поминале на различни проекти. На крајот на периодот " +"дефиниран во компанијата, временската таблица е потврдена од страна на " +"корисникот и може да биде валидирана од неговиот менаџер. Доколку е " +"потребно, како што е дефинирано на проектот, можете да генерирате фактури " +"врз основа на временската таблица." #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_ids:0 @@ -252,12 +253,12 @@ msgid "" "* The 'Done' status is used when users timesheet is accepted by his/her " "senior." msgstr "" -" *Статусот 'Нацрт' се користи кога корисникот го кодира новиот и непотврден " -"распоред. \n" -"* Статусот 'Потврдено' се користи за да се потврди распоредот од страна на " -"корисникот. \n" -"* Статусот 'Завршено' се користи кога распоредот на корисникот е прифатен од " -"неговиот претпоставен." +" *Статусот 'Нацрт' се користи кога корисникот ја кодира новата и непотврдена " +"временска таблица. \n" +"* Статусот 'Потврдено' се користи за да се потврди временската таблица од " +"страна на корисникот. \n" +"* Статусот 'Завршено' се користи кога временската таблица на корисникот е " +"прифатена од неговиот претпоставен." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:64 @@ -292,7 +293,7 @@ msgstr "Потврдете дека вкупната вредност на ли #: model:ir.actions.act_window,name:hr_timesheet_sheet.action_timesheet_report_stat_all #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_timesheet_report_all msgid "Timesheet Sheet Analysis" -msgstr "Анализи на лист од распоред" +msgstr "Анализи на лист од временска таблица" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.account,name:0 @@ -317,13 +318,13 @@ msgid "" "In order to create a timesheet for this employee, you must assign it to a " "user." msgstr "" -"Со цел да креирате распоред за овој вработен, мора да го доделите на " +"Со цел да креирате врменска таблица за овој вработен, мора да го доделите на " "корисник." #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_attendance0 msgid "Employee's timesheet entry" -msgstr "Запис на распоред на вработен" +msgstr "Внес во временска таблица на вработен" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:213 @@ -366,7 +367,7 @@ msgstr "Датум од" #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_employee_2_hr_timesheet #: view:res.company:0 msgid "Timesheets" -msgstr "Распоред" +msgstr "Временски таблици" #. module: hr_timesheet_sheet #: model:process.node,name:hr_timesheet_sheet.process_node_confirmedtimesheet0 @@ -390,7 +391,7 @@ msgstr "Потврди" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,timesheet_ids:0 msgid "Timesheet lines" -msgstr "Ставки на распоред" +msgstr "Ставки на временска таблица" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_follower_ids:0 @@ -455,7 +456,7 @@ msgstr "Јули" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_range:0 msgid "Validate timesheets every" -msgstr "Потврди распоред секој" +msgstr "Потврди временска таблица секој" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:73 @@ -507,7 +508,7 @@ msgstr "Најава" #: view:timesheet.report:0 #: field:timesheet.report,total_timesheet:0 msgid "#Total Timesheet" -msgstr "# Вкупен распоред" +msgstr "# Вкупно временска таблица" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_timesheet_current_open @@ -521,8 +522,8 @@ msgid "" "In order to create a timesheet for this employee, you must link the employee " "to a product, like 'Consultant'." msgstr "" -"Со цел да креирате распоред за овој вработен, мора првин да го поврзете " -"вработениот за производ, како 'Консултант'." +"Со цел да креирате временска таблица за овој вработен, мора првин да го " +"поврзете вработениот за производ, како 'Консултант'." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -539,7 +540,7 @@ msgstr "Декември" #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 msgid "It will open your current timesheet" -msgstr "Ќе го отвори вашиот тековен распоред" +msgstr "Ќе ја отвори вашата тековна временска таблица" #. module: hr_timesheet_sheet #: selection:hr.config.settings,timesheet_range:0 @@ -574,7 +575,7 @@ msgid "" "In order to create a timesheet for this employee, you must link the employee " "to a product." msgstr "" -"Со цел да креирате распоред за овој вработен, мора да го поврзете " +"Со цел да креирате временска таблица за овој вработен, мора да го поврзете " "вработениот за производ." #. module: hr_timesheet_sheet @@ -628,17 +629,17 @@ msgstr "Недовршено" #. module: hr_timesheet_sheet #: field:res.company,timesheet_max_difference:0 msgid "Timesheet allowed difference(Hours)" -msgstr "Дозволени разлики во распоред (Часови)" +msgstr "Дозволени разлики во временската таблица (Часови)" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_invoiceontimesheet0 msgid "The invoice is created based on the timesheet." -msgstr "Фактурата е креирана врз основа на распоред." +msgstr "Фактурата е креирана врз основа на временската таблица." #. module: hr_timesheet_sheet #: model:process.node,name:hr_timesheet_sheet.process_node_drafttimesheetsheet0 msgid "Draft Timesheet" -msgstr "Нацрт распоред" +msgstr "Нацрт временска таблица" #. module: hr_timesheet_sheet #: model:ir.actions.act_window,help:hr_timesheet_sheet.act_hr_timesheet_sheet_form @@ -657,16 +658,17 @@ msgid "" " " msgstr "" "

\n" -" Нов распоред за одобрување.\n" +" Нова временска таблица за одобрување.\n" "

\n" -" Мора да ги снимате распоредите секој ден и да ги потврдите на " -"крајот\n" -" на неделата. Откако распоредот е потврден, треба да биде \n" -" валидиран од страна на менаџерот.\n" +" Мора да ги снимате временските таблици секој ден и да ги " +"потврдите на крајот\n" +" на неделата. Откако временската таблица е потврдена, треба да " +"биде \n" +" валидирана од страна на менаџерот.\n" "

\n" -" Timesheets can also be invoiced to customers, depending on " -"the\n" -" configuration of each project's related contract.\n" +" Временските таблици исто така може да бидат фактурирани на " +"купувачите, во зависност од the\n" +" конфигурацијата на договорот поврзан со секој договор.\n" "

\n" " " @@ -707,12 +709,12 @@ msgstr "Недела" #: model:ir.model,name:hr_timesheet_sheet.model_hr_timesheet_sheet_sheet_account #: model:ir.model,name:hr_timesheet_sheet.model_hr_timesheet_sheet_sheet_day msgid "Timesheets by Period" -msgstr "Распореди по период" +msgstr "Временска таблица по период" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_is_follower:0 msgid "Is a Follower" -msgstr "Пратител" +msgstr "Е Пратител" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -726,7 +728,7 @@ msgstr "Корисник" #. module: hr_timesheet_sheet #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_by_account msgid "Timesheet by Account" -msgstr "Распоред по сметка" +msgstr "Временска таблица по сметка" #. module: hr_timesheet_sheet #: field:hr.timesheet.report,date:0 @@ -750,7 +752,7 @@ msgstr "Проширени филтри..." #. module: hr_timesheet_sheet #: field:res.company,timesheet_range:0 msgid "Timesheet range" -msgstr "Опсег на распоред" +msgstr "Опсег на временска таблица" #. module: hr_timesheet_sheet #: view:board.board:0 @@ -770,8 +772,8 @@ msgid "" "The timesheet cannot be validated as it does not contain an equal number of " "sign ins and sign outs." msgstr "" -"Распоредот не може да биде потврден бидејќи не содржи еднаков број на " -"пријави и одјави." +"Временската таблица не може да биде потврдена бидејќи не содржи еднаков број " +"на пријави и одјави." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -799,12 +801,12 @@ msgstr "Резиме" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:215 #, python-format msgid "You cannot delete a timesheet which have attendance entries." -msgstr "Не може да избришете распоред кој има записи за присуство." +msgstr "Не може да избришете временска таблица која има записи за присуство." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Unvalidated Timesheets" -msgstr "Невалидирани распореди" +msgstr "Невалидирани временски таблици" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 @@ -813,8 +815,9 @@ msgid "" "You cannot have 2 timesheets that overlap!\n" "You should use the menu 'My Timesheet' to avoid this problem." msgstr "" -"Не може да имате 2 распореди кои се преклопуваат!\n" -"За да го избегнете овој проблем треба да го користите менито 'Мој распоред'." +"Не може да имате 2 временски таблици кои се преклопуваат!\n" +"За да го избегнете овој проблем треба да го користите менито 'Моја временска " +"таблица'." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -833,7 +836,7 @@ msgstr "Општа сметка" #: help:hr.config.settings,timesheet_range:0 #: help:res.company,timesheet_range:0 msgid "Periodicity on which you validate your timesheets." -msgstr "Период на кој ги валидирате вашите распореди." +msgstr "Период на кој ги валидирате вашите временски таблици." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.account:0 @@ -844,7 +847,7 @@ msgstr "Барај сметка" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" -msgstr "Не може да измените запис во потврден распоред" +msgstr "Не може да измените внес во потврдена временска таблица" #. module: hr_timesheet_sheet #: help:res.company,timesheet_max_difference:0 @@ -853,8 +856,8 @@ msgid "" "computation for one sheet. Set this to 0 if you do not want any control." msgstr "" "Дозволена разлика во часови помеѓу најавата/одјавата и пресметката на " -"распоредот за еден лист. Подесете го на 0 доколку не сакате било каква " -"контрола." +"временската таблица за еден лист. Подесете го на 0 доколку не сакате било " +"каква контрола." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -879,15 +882,16 @@ msgid "" "You cannot have 2 timesheets that overlap!\n" "Please use the menu 'My Current Timesheet' to avoid this problem." msgstr "" -"Не може да имате 2 распореди кои се преклопуваат!\n" -"Употребете го менито 'Мој тековен распоред' за да го избегнете овој проблем." +"Не може да имате 2 временски таблици кои се преклопуваат!\n" +"Употребете го менито 'Моја тековен временска таблица' за да го избегнете " +"овој проблем." #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 #: model:ir.actions.act_window,name:hr_timesheet_sheet.action_hr_timesheet_current_open #: model:ir.actions.server,name:hr_timesheet_sheet.ir_actions_server_timsheet_sheet msgid "My Timesheet" -msgstr "Мој распоред" +msgstr "Моја временска таблица" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -918,13 +922,13 @@ msgstr "Фактура за работа" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.account:0 msgid "Timesheet by Accounts" -msgstr "Распоред по сметки" +msgstr "Временска таблица по сметки" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:50 #, python-format msgid "Open Timesheet" -msgstr "Отвори распоред" +msgstr "Отвори временска таблица" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -954,17 +958,17 @@ msgstr "hr.config.settings" #: model:ir.actions.act_window,name:hr_timesheet_sheet.action_hr_timesheet_report_stat_all #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_hr_timesheet_report_all msgid "Timesheet Analysis" -msgstr "Анализи на распоред" +msgstr "Анализи на временска таблица" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Search Timesheet" -msgstr "Барај распоред" +msgstr "Барај временска таблица" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Confirmed Timesheets" -msgstr "Потврдени распореди" +msgstr "Потврдени временски таблици" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -974,13 +978,13 @@ msgstr "Детали" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "Ставка на распоред" +msgstr "Ставка од временска таблица" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:213 #, python-format msgid "You cannot delete a timesheet which is already confirmed." -msgstr "Не може да избришете распоред кој е веќе потврден." +msgstr "Не може да избришете временска таблица која е веќе потврдена." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -1006,7 +1010,7 @@ msgstr "Опис" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_confirmtimesheet0 msgid "The employee periodically confirms his own timesheets." -msgstr "Вработениот периодично го потврдува својот распоред." +msgstr "Вработениот периодично ја потврдува својата врменска таблица." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -1027,7 +1031,7 @@ msgstr "Одјава" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_tasktimesheet0 msgid "Moves task entry into the timesheet line" -msgstr "Го преместува записот за задачата во ставка од распоредот." +msgstr "Го преместува внесот за задачата во ставка од временската таблица." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.day:0 @@ -1051,7 +1055,7 @@ msgstr "Разлика" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:64 #, python-format msgid "You cannot duplicate a timesheet." -msgstr "Не може да дуплирате распоред." +msgstr "Не може да дуплирате временски таблици." #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state_attendance:0 @@ -1077,10 +1081,11 @@ msgid "" " " msgstr "" "

\n" -" Овој извештај врши анализи на распоредите креирани од вашите\n" +" Овој извештај врши анализи на временските таблици креирани од " +"вашите\n" " човечки ресурси во системот. Ви овозможува да имате целосен " "преглед \n" -" на записите направени од вашите вработени. Може да ги " +" на внесовите направени од вашите вработени. Може да ги " "групирате по\n" " специфични критериуми за селекција благодарение на алатката " "за пребарување.\n" @@ -1095,7 +1100,7 @@ msgstr "Вработени" #. module: hr_timesheet_sheet #: constraint:hr.analytic.timesheet:0 msgid "You cannot modify an entry in a Confirmed/Done timesheet !" -msgstr "Не можете да измените запис во Потврден/Завршен распоред !" +msgstr "Не можете да измените внес во Потврдена/Завршена временска таблица !" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_timesheet0 @@ -1176,7 +1181,7 @@ msgstr "Тековен датум" #. module: hr_timesheet_sheet #: model:process.process,name:hr_timesheet_sheet.process_process_hrtimesheetprocess0 msgid "Hr Timesheet" -msgstr "Распоред на човечки ресурси" +msgstr "Временска таблица за човечки ресурси" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -1214,4 +1219,4 @@ msgstr "Дневник" #. module: hr_timesheet_sheet #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_by_day msgid "Timesheet by Day" -msgstr "Распоред по ден" +msgstr "Временска таблица по ден" diff --git a/addons/knowledge/i18n/mk.po b/addons/knowledge/i18n/mk.po index 8625e9eedf9..81ac3e19097 100644 --- a/addons/knowledge/i18n/mk.po +++ b/addons/knowledge/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-11 09:41+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 23:23+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:44+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: knowledge #: view:knowledge.config.settings:0 @@ -106,7 +107,9 @@ msgstr "Конфигурација" msgid "" "Access your documents in OpenERP through an FTP interface.\n" " This installs the module document_ftp." -msgstr "Пристапи до документите во OpenERP преку FTP интерфејс." +msgstr "" +"Пристапи до документите во OpenERP преку FTP интерфејс.\n" +"Ова го инсталира модулот document_ftp." #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/mail/i18n/mk.po b/addons/mail/i18n/mk.po index 5fe9ac549bd..16e4a3143d5 100644 --- a/addons/mail/i18n/mk.po +++ b/addons/mail/i18n/mk.po @@ -3,26 +3,27 @@ # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2013. # Aleksandar , 2013. +# Sofce Dimitrijeva , 2013. msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-04 14:34+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: ESKON Inzenering\n" +"PO-Revision-Date: 2013-03-28 23:23+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "Форма за следбеници" +msgstr "Формулар за паратители" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract @@ -136,7 +137,7 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_compose_message msgid "Email composition wizard" -msgstr "Волшебник за креирање на e-mail" +msgstr "Волшебник за креирање на е-пошта" #. module: mail #. openerp-web @@ -162,7 +163,7 @@ msgstr "Непрочитани Пораки" #: code:addons/mail/static/src/xml/mail.xml:267 #, python-format msgid "to" -msgstr "" +msgstr "до" #. module: mail #. openerp-web @@ -177,7 +178,7 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" -"Членовите на тие групи автоматски се додаваат како следбеници. Имајте во " +"Членовите на овие групи автоматски се додаваат како пратители. Имајте во " "предвид дека тие ќе можат сами да управуваат со претплатата рачно доколку е " "потребно." @@ -208,13 +209,16 @@ msgid "" " %s won't be notified of any email or discussion on this document. Do you " "really want to remove him from the followers ?" msgstr "" +"Внимание! \n" +" %s нема да биде известен за е-пошта или дискусија за овој документ. Дали " +"сакате да го отстраните од пратители ?" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail_followers.js:159 #, python-format msgid "followers" -msgstr "следбеници" +msgstr "пратители" #. module: mail #: code:addons/mail/mail_message.py:726 @@ -254,7 +258,7 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" -"Бараната операција неможе да се изврши поради безбедносни причини. " +"Бараната операција не може да се изврши поради безбедносни причини. " "Контактирајте го администраторот.\n" "\n" "(Тип на документ: %s, Операција: %s)" @@ -270,7 +274,7 @@ msgstr "Примено" #: code:addons/mail/static/src/xml/mail.xml:73 #, python-format msgid "Attach a File" -msgstr "" +msgstr "Прикачи датотека" #. module: mail #: view:mail.mail:0 @@ -309,7 +313,7 @@ msgstr "Референци" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "Додади следбеници" +msgstr "Додади пратители" #. module: mail #: help:mail.compose.message,author_id:0 @@ -378,7 +382,7 @@ msgstr "

Поканети сте да го следите %s.
" #: code:addons/mail/static/src/xml/mail.xml:54 #, python-format msgid "Send a message" -msgstr "" +msgstr "Испрати порака" #. module: mail #: help:mail.group,message_unread:0 @@ -396,7 +400,7 @@ msgstr "Слика со средна големина" #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "До: me" +msgstr "До: мене" #. module: mail #: field:mail.message.subtype,name:0 @@ -413,7 +417,7 @@ msgstr "Автоматско бришење" #: code:addons/mail/static/src/xml/mail.xml:264 #, python-format msgid "logged a note" -msgstr "" +msgstr "додаде белешка" #. module: mail #. openerp-web @@ -466,7 +470,7 @@ msgid "" "directly in html format in order to be inserted in kanban views." msgstr "" "Го содржи прегледот за комуникацијата (број на пораки и сл.). Овој преглед е " -"во html формат." +"во html формат со цел да биде вметнат во kanban приказ." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -476,13 +480,13 @@ msgid "" "creation of a new record of this model (e.g. a Project Task)" msgstr "" "Моделот (OpenERP Document Kind) на кој алијасот одговара. Секој влезен e-" -"mailкој што не одговара на постоечки запис, ќе предизвика креирање на нов " +"mail кој што не одговара на постоечки запис, ќе предизвика креирање на нов " "запис на тој модел (пр. Проектна задача)" #. module: mail #: view:base.config.settings:0 msgid "mycompany.my.openerp.com" -msgstr "" +msgstr "mycompany.my.openerp.com" #. module: mail #: field:mail.message.subtype,relation_field:0 @@ -568,7 +572,7 @@ msgstr "Испрати" #: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "No followers" -msgstr "Нема следбеници" +msgstr "Нема пратители" #. module: mail #: view:mail.mail:0 @@ -580,7 +584,7 @@ msgstr "Неуспешно" #: code:addons/mail/static/src/xml/mail.xml:154 #, python-format msgid "Attach a note that will not be send to the followers" -msgstr "" +msgstr "Прикачи белешка која нема да биде испратена на пратителите" #. module: mail #. openerp-web @@ -593,7 +597,7 @@ msgstr "" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds @@ -604,7 +608,7 @@ msgstr "Архиви" #. module: mail #: view:mail.compose.message:0 msgid "Subject..." -msgstr "" +msgstr "Тема..." #. module: mail #. openerp-web @@ -618,14 +622,14 @@ msgstr "Избриши го оваа прикачување" #: code:addons/mail/mail_thread.py:112 #, python-format msgid "New" -msgstr "" +msgstr "Ново" #. module: mail #. openerp-web #: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "One follower" -msgstr "Еден следбеник" +msgstr "Еден пратител" #. module: mail #: field:mail.compose.message,type:0 @@ -638,12 +642,12 @@ msgstr "Тип" #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Email" -msgstr "E-mail" +msgstr "Е-пошта" #. module: mail #: field:ir.ui.menu,mail_group_id:0 msgid "Mail Group" -msgstr "Група за e-mail" +msgstr "Група за пошта" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -659,7 +663,7 @@ msgstr "Стандардна вредност" #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "%s се приклучи на мрежата %s." +msgstr "%s се приклучи на %s мрежата." #. module: mail #: help:mail.group,image_small:0 @@ -729,6 +733,9 @@ msgid "" "You won't be notified of any email or discussion on this document. Do you " "really want to unfollow this document ?" msgstr "" +"Внимание! \n" +"Нема да бидете известени за е-пошта или дискусија за овој документ. Дали " +"сакате да го прекинете следењето на овој документ ?" #. module: mail #: model:ir.actions.client,help:mail.action_mail_to_me_feeds @@ -760,7 +767,7 @@ msgstr "Волшебник за покани" #. module: mail #: model:ir.model,name:mail.model_mail_thread msgid "Email Thread" -msgstr "Е-mail тема" +msgstr "Е-mail нишка" #. module: mail #: view:mail.mail:0 @@ -772,7 +779,7 @@ msgstr "Напредно" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "Премести во Дојдовни" +msgstr "Премести во Влезно сандаче" #. module: mail #: code:addons/mail/wizard/mail_compose_message.py:165 @@ -793,14 +800,14 @@ msgid "" "You may not create a user. To create new users, you should use the " "\"Settings > Users\" menu." msgstr "" -"Неможете да креирате нов корисник. За креирање на корисници треба да го " +"Не можете да креирате нов корисник. За креирање на корисници треба да го " "користите \"Подесувања > Корисници\" менито." #. module: mail #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "Модел на проследениот ресурс" +msgstr "Модел на следениот ресурс" #. module: mail #. openerp-web @@ -820,7 +827,7 @@ msgstr "Откажи" #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "Сподели со моите следбеници..." +msgstr "Сподели со моите пратители..." #. module: mail #: field:mail.notification,partner_id:0 @@ -833,7 +840,7 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" -"Само поканети следбеници можат да ги читат\n" +"Само поканети пратители можат да ги читат\n" " дискусиите на оваа група." #. module: mail @@ -844,7 +851,7 @@ msgstr "ir.ui.menu" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "Има прикачени додатоци" +msgstr "Има прикачувања" #. module: mail #: view:mail.mail:0 @@ -858,7 +865,8 @@ msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" -"Следните партнери избрани како примачи на пораката немаат e-mail адреса :" +"Следните партнери избрани како примачи на пораката немаат поврзно e-mail " +"адреса :" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -880,7 +888,7 @@ msgstr "Подтип на порака" #: code:addons/mail/static/src/xml/mail.xml:57 #, python-format msgid "Log a note" -msgstr "" +msgstr "Додади белешка" #. module: mail #: selection:mail.compose.message,type:0 @@ -937,7 +945,7 @@ msgstr "Испрати сега" msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" -"Пораката неможе да се испрати, ве молиме конфигурирајте ја e-mail адресата " +"Пораката не може да се испрати, ве молиме конфигурирајте ја e-mail адресата " "на испраќачот или алијас." #. module: mail @@ -1004,7 +1012,7 @@ msgstr "Сопственик" #: code:addons/mail/res_partner.py:49 #, python-format msgid "Partner Profile" -msgstr "" +msgstr "Профил на партнер" #. module: mail #: model:ir.model,name:mail.model_mail_message @@ -1081,16 +1089,17 @@ msgstr "Ве молилме комплетирајте ги информации #, python-format msgid "

Access this document directly in OpenERP

" msgstr "" +"

Пристапи до овој документ директно во OpenERP

" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "Следбеници на избраните предмети и" +msgstr "Пратители на избраните предмети и" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "ID на тематски запис" +msgstr "ID на нишка на запис" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root @@ -1139,7 +1148,7 @@ msgstr "Сите содржини" #: code:addons/mail/mail_thread.py:111 #, python-format msgid "You have one unread message" -msgstr "" +msgstr "Имате една непрочитана порака" #. module: mail #: help:mail.compose.message,record_name:0 @@ -1170,8 +1179,8 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" -"Изборен идентификатор на тема (запис) на која сите влезни пораки ќе бидат " -"прикачени, дури и ако не и одговорат. Доколку е сетирано, ова ќе оневозможи " +"Опционен идентификатор на нишка (запис) на која сите влезни пораки ќе бидат " +"прикачени, дури и ако не и одговорат. Доколку е подесено, ова ќе оневозможи " "креирање на нови записи." #. module: mail @@ -1216,7 +1225,7 @@ msgstr "Само за избраната група" #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: mail #: view:mail.alias:0 @@ -1250,7 +1259,7 @@ msgstr "Проширени филтри..." #: code:addons/mail/static/src/xml/mail.xml:278 #, python-format msgid "more" -msgstr "" +msgstr "повеќе" #. module: mail #. openerp-web @@ -1264,7 +1273,7 @@ msgstr "До:" #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "Пиши им на моите следбеници" +msgstr "Пиши им на моите пратители" #. module: mail #: model:ir.model,name:mail.model_res_groups @@ -1305,14 +1314,14 @@ msgstr "Резиме" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" -"На кој модел препаѓа овој подтип. Доколку е неточно, тој подтип припаѓа на " +"Модел на кој припаѓа овој подтип. Доколку е неточно, тој подтип припаѓа на " "сите модели." #. module: mail #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Add contacts to notify..." -msgstr "" +msgstr "Додади контакти за известување..." #. module: mail #: view:mail.group:0 @@ -1359,7 +1368,7 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" -"Сопственикот на записите креирани по примањето на пораките на овој алијас. " +"Сопственик на записите креирани по примањето на пораките на овој алијас. " "Доколку ова поле не е конфигурирано, системот ќе се обиде да го пронајде " "вистинскиот сопственик врз база на адресата на испраќачот или ќе ја користи " "администраторската сметка доколку не се пронајде системски корисник за таа " @@ -1376,7 +1385,7 @@ msgstr "И" #: code:addons/mail/mail_thread.py:111 #, python-format msgid "You have %d unread messages" -msgstr "" +msgstr "Имате %d непрочитани пораки" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1419,7 +1428,7 @@ msgstr "Набљудувана порака што се префрлува во #. module: mail #: view:mail.mail:0 msgid "Cancel Email" -msgstr "" +msgstr "Откажи Email" #. module: mail #. openerp-web @@ -1427,13 +1436,13 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "Следбеници на" +msgstr "Пратители на" #. module: mail #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" msgstr "" -"Трајно избриши ја пораката откако ќе се испрати за заштедување на место" +"Трајно избриши ја пораката откако ќе се испрати, за да заштедите простор" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds @@ -1530,7 +1539,7 @@ msgid "" "members through the invite button." msgstr "" "Оваа група е видлива и за тие што не се членови. Невидливите групи можат да " -"додадат членови со Покани копчето." +"додадат членови со копчето Покани." #. module: mail #: model:mail.group,name:mail.group_board @@ -1557,14 +1566,14 @@ msgstr "Опис" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "Следбеници на документ" +msgstr "Пратители на документ" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "Отстрани го овој следбеник" +msgstr "Отстрани го овој пратител" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1656,7 +1665,7 @@ msgstr "Врати на ДаСеНаправи" #. module: mail #: view:mail.group:0 msgid "Send a message to the group" -msgstr "" +msgstr "Испрати порака до група" #. module: mail #: field:mail.group,name:0 @@ -1666,7 +1675,7 @@ msgstr "Име" #. module: mail #: view:mail.group:0 msgid "Topics discussed in this group..." -msgstr "" +msgstr "Теми дискутирани во оваа група..." #. module: mail #: field:res.partner,notification_email_send:0 @@ -1880,7 +1889,7 @@ msgstr "Филтри" #, python-format msgid "Please complete partner's informations and Email" msgstr "" -"Ве молилме комплетирајте ги информациите за партнерите и e-mail адресите" +"Ве молиме комплетирајте ги информациите за партнерите и e-mail адресите" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype diff --git a/addons/marketing_campaign/i18n/mk.po b/addons/marketing_campaign/i18n/mk.po index b3494e664a6..1ba3af89fb9 100644 --- a/addons/marketing_campaign/i18n/mk.po +++ b/addons/marketing_campaign/i18n/mk.po @@ -2,25 +2,26 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-04 15:08+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 23:24+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: marketing_campaign #: view:marketing.campaign:0 msgid "Manual Mode" -msgstr "Начин рачно" +msgstr "Режим рачно" #. module: marketing_campaign #: field:marketing.campaign.transition,activity_from_id:0 @@ -32,11 +33,12 @@ msgstr "Претходна активност" #, python-format msgid "The current step for this item has no email or report to preview." msgstr "" +"Следниот чекор за оваа точка нема email или извештај за прегледување." #. module: marketing_campaign #: constraint:marketing.campaign.transition:0 msgid "The To/From Activity of transition must be of the same Campaign " -msgstr "" +msgstr "Активноста До/Од на преминот мора да биде од иста кампања " #. module: marketing_campaign #: selection:marketing.campaign.transition,trigger:0 @@ -77,12 +79,12 @@ msgstr "Проследи" #. module: marketing_campaign #: field:campaign.analysis,count:0 msgid "# of Actions" -msgstr "" +msgstr "# од Акции" #. module: marketing_campaign #: view:marketing.campaign:0 msgid "Campaign Editor" -msgstr "" +msgstr "Уредувач на кампања" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign_crm_demo/i18n/mk.po b/addons/marketing_campaign_crm_demo/i18n/mk.po index 8f992747901..4ed961aa14a 100644 --- a/addons/marketing_campaign_crm_demo/i18n/mk.po +++ b/addons/marketing_campaign_crm_demo/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-06 08:50+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 @@ -29,6 +30,14 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Почитувани,

\n" +"

Ви благодариме што покажавте интерес и се претплативтеза " +"техничката обука.

\n" +" Доколку ви се потребни понатамошни информации слободно обратете " +"ни се.Навистина многу ќе ја цениме вашата соработка во врска со ова.

\n" +"

Доколку ви се потребни понатамошни информации, слободно " +"одговорете на оваа порака.

\n" +"

Срдечни поздрави,OpenERP Team,

" #. module: marketing_campaign_crm_demo #: model:ir.actions.report.xml,name:marketing_campaign_crm_demo.mc_crm_lead_demo_report diff --git a/addons/mrp/i18n/mk.po b/addons/mrp/i18n/mk.po index 213acee6478..b4d2cc2fdd5 100644 --- a/addons/mrp/i18n/mk.po +++ b/addons/mrp/i18n/mk.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-03-02 09:35+0000\n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" "Last-Translator: Ivica Dimitrijev \n" "Language-Team: ЕСКОН-ИНЖЕНЕРИНГ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:49+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -1297,7 +1297,7 @@ msgstr "" #. module: mrp #: field:mrp.workcenter,costs_journal_id:0 msgid "Analytic Journal" -msgstr "Аналитичка картица" +msgstr "Аналитички дневник" #. module: mrp #: code:addons/mrp/report/price.py:139 diff --git a/addons/mrp_operations/i18n/mk.po b/addons/mrp_operations/i18n/mk.po index 524e8077bb5..d1c59cae523 100644 --- a/addons/mrp_operations/i18n/mk.po +++ b/addons/mrp_operations/i18n/mk.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2013. # Ivica Dimitrijev , 2013. +# Sofce Dimitrijeva , 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-02-27 17:56+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: ЕСКОН-ИНЖЕНЕРИНГ\n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -40,7 +41,7 @@ msgstr "Откажи ја операцијата." #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_operations_operation_code msgid "mrp_operations.operation.code" -msgstr "" +msgstr "mrp_operations.operation.code" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -51,7 +52,7 @@ msgstr "Групирај по..." #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_workorder0 msgid "Information from the routing definition." -msgstr "" +msgstr "Информација од дефиницијата за рутирање." #. module: mrp_operations #: field:mrp.production.workcenter.line,uom:0 @@ -78,12 +79,12 @@ msgstr "Продолжи" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Product to Produce" -msgstr "Производ за производство" +msgstr "Производ за произведување" #. module: mrp_operations #: view:mrp_operations.operation:0 msgid "Production Operation" -msgstr "" +msgstr "Операција на производство" #. module: mrp_operations #: view:mrp.production:0 @@ -98,12 +99,12 @@ msgstr "Слободна серијализација" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_production msgid "Manufacturing Order" -msgstr "Налог за производство" +msgstr "Налог за обработка" #. module: mrp_operations #: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 msgid "Mrp Operations" -msgstr "" +msgstr "Mrp операции" #. module: mrp_operations #: view:mrp.workorder:0 @@ -114,7 +115,7 @@ msgstr "Ден" #. module: mrp_operations #: view:mrp.production:0 msgid "Cancel Order" -msgstr "Откажи нарачка" +msgstr "Откажи налог" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_productionorder0 @@ -124,7 +125,7 @@ msgstr "Налог за производство" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 msgid "Picking Exception" -msgstr "" +msgstr "Исклучок во требувањето" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_productionstart0 @@ -134,7 +135,7 @@ msgstr "Креирање на работен налог" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_productionstart0 msgid "The work orders are created on the basis of the production order." -msgstr "" +msgstr "Работните налози се креирани врз основа на налогот за произвоство." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:134 @@ -174,7 +175,7 @@ msgstr "Движење на залиха" #: code:addons/mrp_operations/mrp_operations.py:481 #, python-format msgid "No operation to cancel." -msgstr "" +msgstr "Нема операција за откажување." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:474 @@ -182,11 +183,13 @@ msgstr "" msgid "" "In order to Finish the operation, it must be in the Start or Resume state!" msgstr "" +"Со цел да се заврши операцијата, таа мора да биде во состојба Започни или " +"Продолжи!" #. module: mrp_operations #: field:mrp.workorder,nbr:0 msgid "# of Lines" -msgstr "# од линии" +msgstr "# од ставки" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -199,7 +202,7 @@ msgstr "Нацрт" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Actual Production Date" -msgstr "" +msgstr "Датум на моменталното производство" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -222,7 +225,7 @@ msgstr "Во производство" #: model:ir.actions.act_window,name:mrp_operations.action_report_mrp_workorder #: model:ir.model,name:mrp_operations.model_mrp_production_workcenter_line msgid "Work Order" -msgstr "Работни налози" +msgstr "Работен налог" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_workstartoperation0 @@ -230,6 +233,8 @@ msgid "" "There is 1 work order per work center. The information about the number of " "cycles or the cycle time." msgstr "" +"Има 1 работен налог по работен центар. Информација за бројот на циклуси или " +"време на циклусот." #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_report_mrp_workorders_tree @@ -256,7 +261,7 @@ msgstr "Количина" #: code:addons/mrp_operations/mrp_operations.py:134 #, python-format msgid "Manufacturing order cannot start in state \"%s\"!" -msgstr "Налогот за производство не може да започне во состојба \"%s\"!" +msgstr "Налогот за обработка не може да започне во состојба \"%s\"!" #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -275,7 +280,7 @@ msgstr "Име на операцијата" #: field:mrp.workorder,state:0 #: field:mrp_operations.operation.code,start_stop:0 msgid "Status" -msgstr "" +msgstr "Статус" #. module: mrp_operations #: view:mrp.workorder:0 @@ -314,15 +319,19 @@ msgid "" " " msgstr "" "

\n" -" Кликни за да започенш нов работен налог. \n" +" Кликни за да започнеш нов работен налог. \n" "

\n" -" Work Orders is the list of operations to be performed for each\n" -" manufacturing order. Once you start the first work order of a\n" -" manufacturing order, the manufacturing order is automatically\n" -" marked as started. Once you finish the latest operation of a\n" -" manufacturing order, the MO is automatically done and the " -"related\n" -" products are produced.\n" +" Работниот налог е список на операции кои треба да бидат изведени " +"за\n" +" секој налог за обработка. Откако ќе го започнете првиот работен " +"налог\n" +" од налогот за обработка, налогот за обработка автоматски се " +"означува\n" +" како започнат. Откако ќе ја завршите последната операција од " +"налогот\n" +" за обработка, налогот за обработка автоматски е завршен и " +"поврзаните\n" +" производи се произведени.\n" "

\n" " " @@ -330,6 +339,7 @@ msgstr "" #: help:mrp.production.workcenter.line,delay:0 msgid "The elapsed time between operation start and stop in this Work Center" msgstr "" +"Поминато време помеѓу операциите започни и сопри во овој Работен центар" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_canceloperation0 @@ -365,7 +375,7 @@ msgstr "Откажано" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_operations_operation msgid "mrp_operations.operation" -msgstr "" +msgstr "mrp_operations.operation" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_mrp_workorder @@ -381,12 +391,12 @@ msgstr "Почетен датум" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 msgid "Waiting Goods" -msgstr "" +msgstr "Чекам стоки" #. module: mrp_operations #: field:mrp.production.workcenter.line,production_state:0 msgid "Production Status" -msgstr "Статус на производст" +msgstr "Статус на производството" #. module: mrp_operations #: selection:mrp.workorder,state:0 @@ -407,12 +417,15 @@ msgstr "Во тек" msgid "" "In order to Pause the operation, it must be in the Start or Resume state!" msgstr "" +"Со цел да се паузира операцијата, таа мора да биде во состојба Започни или " +"Продолжи!" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:469 #, python-format msgid "In order to Resume the operation, it must be in the Pause state!" msgstr "" +"Со цел да се продолжи операцијата, таа мора да биде во состојба Пауза!" #. module: mrp_operations #: view:mrp.production:0 @@ -432,12 +445,14 @@ msgid "" "When the operation needs to be cancelled, you can do it in the work order " "form." msgstr "" +"Кога операцијата треба да биде откажана, можете да го направите тоа во " +"формуларот на работниот налог." #. module: mrp_operations #: view:mrp.production:0 #: view:mrp.production.workcenter.line:0 msgid "Set Draft" -msgstr "Нацрт" +msgstr "Подеси Нацрт" #. module: mrp_operations #: view:mrp.production:0 @@ -449,7 +464,7 @@ msgstr "Чекање" #. module: mrp_operations #: view:mrp_operations.operation.code:0 msgid "Production Operation Code" -msgstr "" +msgstr "Код на Операција Производство" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:461 @@ -458,6 +473,8 @@ msgid "" "Operation has already started! You can either Pause/Finish/Cancel the " "operation." msgstr "" +"Операцијата е веќе започната. Можете да ја Паузирате/Завршите/Откажете " +"операцијата." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -472,7 +489,7 @@ msgstr "Започнато" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Production started late" -msgstr "Производството запчна доцна" +msgstr "Производството започна доцна" #. module: mrp_operations #: view:mrp.workorder:0 @@ -534,7 +551,7 @@ msgstr "Јануари" #. module: mrp_operations #: view:mrp.production:0 msgid "Resume Work Order" -msgstr "Започни со работниот налог" +msgstr "Продолжи со работниот налог" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_doneoperation0 @@ -545,7 +562,7 @@ msgstr "Заврши ја операцијата." #: code:addons/mrp_operations/mrp_operations.py:454 #, python-format msgid "Operation is not started yet !" -msgstr "Операцијата не е сеуште започната !" +msgstr "Операцијата сеуште не е започната !" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_productionorder0 @@ -580,7 +597,7 @@ msgstr "Потврдени работни налози" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action msgid "Operation Codes" -msgstr "" +msgstr "Кодови на операцијата" #. module: mrp_operations #: field:mrp.production.workcenter.line,qty:0 @@ -602,7 +619,7 @@ msgstr "Завршено" #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode msgid "Start/Stop Barcode" -msgstr "" +msgstr "Започни/Запри Баркод" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -621,6 +638,15 @@ msgid "" "* When order is completely processed that time it is set in 'Finished' " "status." msgstr "" +"* Кога работниот налог е креиран тој е подесен на статус 'Нацрт'.\n" +"* Кога корисникот го подесува работниот налог во режим старт тогаш времето " +"ќе биде подесено во статус 'Во тек'.\n" +"* Кога работниот налог е во режим работи, доколку корисникот сака да го " +"запре или да направи промени во налогот, може да го подеси во статус 'Чекам' " +".\n" +"* Кога корисникот го откажува работниот налог тој ќе биде подесен во статус " +"'Откажано'.\n" +"* Кога налогот е комплетно обработен времето еподесено во статус 'Завршено'." #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_startoperation0 @@ -651,13 +677,12 @@ msgstr "" "

\n" " Кликни за да започенш нов работен налог.\n" "

\n" -" To manufacture or assemble products, and use raw materials and\n" -" finished products you must also handle manufacturing " -"operations.\n" -" Manufacturing operations are often called Work Orders. The " -"various\n" -" operations will have different impacts on the costs of\n" -" manufacturing and planning depending on the available workload.\n" +" За да обработите или склопите производи, и да употребите " +"суровини и\n" +" готови производи мора да управувате со операциите на обработка.\n" +" Операциите на обработување често се нарекуваат Работни налози.\n" +" Различните операции ќе имаат различно влијание на трошоците на \n" +" обработка и планирање во зависност од обемот на работата.\n" "

\n" " " @@ -674,7 +699,7 @@ msgstr "Доцна" #. module: mrp_operations #: field:mrp.workorder,delay:0 msgid "Delay" -msgstr "Доцнење" +msgstr "Одолжување" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -722,6 +747,8 @@ msgid "" "Check this to be able to move independently all production orders, without " "moving dependent ones." msgstr "" +"Означи го ова за да можете да ги движите независно сите налози за " +"производство, без да ги отстраните зависните." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -779,7 +806,7 @@ msgstr "Операцијата е завршена" #. module: mrp_operations #: view:mrp.workorder:0 msgid "#Line Orders" -msgstr "#Лини на налог" +msgstr "#Ставка на налог" #. module: mrp_operations #: view:mrp.production:0 @@ -792,6 +819,8 @@ msgid "" "When the operation is finished, the operator updates the system by finishing " "the work order." msgstr "" +"Кога операцијата е завршена, операторот го ажурира системот преку завршување " +"на работниот налог." #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 diff --git a/addons/mrp_repair/i18n/mk.po b/addons/mrp_repair/i18n/mk.po index 5215884a8b8..2bf336264f0 100644 --- a/addons/mrp_repair/i18n/mk.po +++ b/addons/mrp_repair/i18n/mk.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2013. # Ivica Dimitrijev , 2013. +# Sofce Dimitrijeva , 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-02-28 20:04+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: ЕСКОН-ИНЖЕНЕРИНГ\n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -31,13 +32,14 @@ msgstr "Групирај по..." #. module: mrp_repair #: view:mrp.repair:0 msgid "Recreate Invoice" -msgstr "Рекреирај Фактура" +msgstr "Креирај повторно Фактура" #. module: mrp_repair #: code:addons/mrp_repair/mrp_repair.py:371 #, python-format msgid "You have to select a Partner Invoice Address in the repair form !" msgstr "" +"Треба да изверете Адреса на фактура на Партнерот во формуларот за поправка !" #. module: mrp_repair #: model:ir.actions.act_window,name:mrp_repair.action_cancel_repair @@ -75,7 +77,7 @@ msgstr "Непрочитани пораки" #: code:addons/mrp_repair/mrp_repair.py:435 #, python-format msgid "No product defined on Fees!" -msgstr "Нема дефинирано производи за трошоците!" +msgstr "Нема дефинирано производи за надоместоците!" #. module: mrp_repair #: view:mrp.repair:0 @@ -91,7 +93,7 @@ msgstr "Подеси на нацрт" #. module: mrp_repair #: selection:mrp.repair,state:0 msgid "Invoice Exception" -msgstr "" +msgstr "Исклучување на фактура" #. module: mrp_repair #: view:mrp.repair:0 @@ -168,7 +170,7 @@ msgstr "Откажано" #. module: mrp_repair #: help:mrp.repair,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Доколку е штиклирано, новите пораки го бараат вашето внимание." #. module: mrp_repair #: view:mrp.repair:0 @@ -219,11 +221,19 @@ msgid "" " \n" "* The 'Cancelled' status is set automatically when user cancel repair order." msgstr "" +" * Статусот 'Нацрт' е автоматски подесен како нацрт кога налогот за поправка " +"е во статус нацрт. \n" +"* Статусот 'Потврдено' е автоматски подесен како потврдено кога налогот за " +"поправка е во статус потврди. \n" +"* Статусот 'Завршено' е подесен автоматски кога налогот за поправка е " +"завршен. \n" +"* Статусот 'Откажано' е автоматски подесен кога корисникот го откажува " +"налогот за поправка." #. module: mrp_repair #: field:mrp.repair,move_id:0 msgid "Move" -msgstr "Помести" +msgstr "Премести" #. module: mrp_repair #: report:repair.order:0 @@ -247,6 +257,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 "" +"Прикажува резиме на конверзација (број на пораки, ...). Ова резиме е " +"директно во html формат со цел да биде вметнато во kanban преглед." #. module: mrp_repair #: view:mrp.repair:0 @@ -265,7 +277,7 @@ msgstr "Внимание!" #. module: mrp_repair #: view:mrp.repair:0 msgid "(update)" -msgstr "" +msgstr "(ажурирај)" #. module: mrp_repair #: view:mrp.repair:0 diff --git a/addons/pad/i18n/cs.po b/addons/pad/i18n/cs.po index 3e3f78441cf..325081dbf7e 100644 --- a/addons/pad/i18n/cs.po +++ b/addons/pad/i18n/cs.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:38+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-28 18:33+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \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:51+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: pad @@ -22,7 +22,7 @@ msgstr "" #: code:addons/pad/static/src/xml/pad.xml:27 #, python-format msgid "Ñ" -msgstr "" +msgstr "Ñ" #. module: pad #. openerp-web @@ -32,43 +32,47 @@ msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." msgstr "" +"Musíte nastavit kooperativní editor (pad) v části Nastavení > Firmy > Firmy " +"v záložce Nastavení u příslušné firmy." #. module: pad #: help:res.company,pad_key:0 msgid "Etherpad lite api key." -msgstr "" +msgstr "Klíč k API příslušného serveru (tzv API key)." #. module: pad #: view:res.company:0 msgid "e.g. beta.primarypad.com" -msgstr "" +msgstr "např. beta.primarypad.com" #. module: pad #: model:ir.model,name:pad.model_res_company msgid "Companies" -msgstr "Společnosti" +msgstr "Firmy" #. module: pad #: model:ir.model,name:pad.model_pad_common msgid "pad.common" -msgstr "" +msgstr "pad.common" #. module: pad #: view:res.company:0 msgid "Pads" -msgstr "" +msgstr "Kooperativní editor (pad)" #. module: pad #: field:res.company,pad_server:0 msgid "Pad Server" -msgstr "" +msgstr "Pad server" #. module: pad #: field:res.company,pad_key:0 msgid "Pad Api Key" -msgstr "" +msgstr "Pad API key" #. module: pad #: help:res.company,pad_server:0 msgid "Etherpad lite server. Example: beta.primarypad.com" msgstr "" +"Adresa serveru kooperativního textového editoru. Například: " +"beta.primarypad.com" diff --git a/addons/point_of_sale/i18n/mk.po b/addons/point_of_sale/i18n/mk.po index 020bcc1ffee..9a7df21e676 100644 --- a/addons/point_of_sale/i18n/mk.po +++ b/addons/point_of_sale/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-11 09:22+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:52+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -49,11 +48,11 @@ msgstr "" "

\n" " Кликни за дефинирање на нова категорија.\n" "

\n" -" Цатегориите се користат за листање на производите преку\n" +" Категориите се користат за пребарување на производите преку\n" " интерфејс со екран на допир.\n" "

\n" " Доколку поставите слика на категоријата, распоредот на\n" -" интерфејсот со екран ан допире ќе биде автоматски. " +" интерфејсот со екран на допир ќе биде автоматски. " "Препорачуваме\n" " да не се става слика на категории за екрани со мала " "резолуција (1024x768).\n" @@ -68,7 +67,7 @@ msgstr "Печати сметка за продажба" #. module: point_of_sale #: field:pos.session,cash_register_balance_end:0 msgid "Computed Balance" -msgstr "Пресметан биланс" +msgstr "Пресметано салдо" #. module: point_of_sale #: view:pos.session:0 @@ -96,13 +95,13 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:398 #, python-format msgid "ã" -msgstr "" +msgstr "ã" #. module: point_of_sale #: field:pos.config,journal_id:0 #: field:pos.order,sale_journal:0 msgid "Sale Journal" -msgstr "Продажна картица" +msgstr "Продажен дневник" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_2l_product_template @@ -160,7 +159,7 @@ msgid "" " being able to start selling through the " "touchscreen interface." msgstr "" -"Ќе треба да извршите контрола на кеш сумата во касата пред\n" +"Ќе треба да извршите контрола на сумата на готовината во касата пред\n" " да почнете со продажба преку интерфејсот со екран " "на допир." @@ -345,7 +344,7 @@ msgstr "Попуст(%)" #: code:addons/point_of_sale/point_of_sale.py:1006 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." -msgstr "Дефинирајте приходно конто за овој производ: \"%s\" (id:%d)." +msgstr "Дефинирајте приходна сметка за овој производ: \"%s\" (id:%d)." #. module: point_of_sale #: view:report.pos.order:0 @@ -443,7 +442,7 @@ msgstr "Да се извага" #: code:addons/point_of_sale/static/src/xml/pos.xml:476 #, python-format msgid "Hardware Events" -msgstr "" +msgstr "Хардверски настани" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:301 @@ -470,6 +469,10 @@ msgid "" "close this session, you can update the 'Closing Cash Control' to avoid any " "difference." msgstr "" +"Подесете ги сметките добивка и загуба ма методот за плаќање '%s'. Тоа ќе му " +"овозможи на OpenERP да ја објави разликата од %.2f во завршниот биланс. За " +"да ја затворите оваа сесија, можете да ја ажурирате 'Готовинска контрола при " +"затварање' за да избегнете разлики." #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 @@ -595,7 +598,7 @@ msgstr "Јуни" #. module: point_of_sale #: view:pos.order.line:0 msgid "POS Order line" -msgstr "" +msgstr "Ставка од налогот за точката на продажба" #. module: point_of_sale #: view:pos.config:0 @@ -642,7 +645,8 @@ msgstr "" "

\n" " Кликнете за да започнете нова сесија.\n" "

\n" -" Сесијата е период на време, обично еден ден, во текот на кој\n" +" Сесијата е период на време, обично еден ден, во текот на " +"кој\n" " продавате преку точката на продажба. Корисникот треба да ги " "означи валутите во касите на почетокот и крајот на секоја сесија.\n" "

\n" @@ -748,7 +752,7 @@ msgstr "Начин на плаќање" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_confirm msgid "Post POS Journal Entries" -msgstr "" +msgstr "Обрави внесови во дневник за точка на продажба" #. module: point_of_sale #. openerp-web @@ -813,7 +817,7 @@ msgstr "Пица" #. module: point_of_sale #: view:pos.session:0 msgid "= Theoretical Balance" -msgstr "= Теоретски биланс" +msgstr "= Теоретско салдо" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_return.py:85 @@ -848,7 +852,7 @@ msgstr "Тел. :" #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_receipt #, python-format msgid "Receipt" -msgstr "Приемница" +msgstr "Сметка" #. module: point_of_sale #: field:report.sales.by.margin.pos,net_margin_per_qty:0 @@ -872,7 +876,7 @@ msgstr "Завршен биланс" #: code:addons/point_of_sale/wizard/pos_box_out.py:89 #, python-format msgid "please check that account is set to %s." -msgstr "означете дека контото е поставено на %s." +msgstr "означете дека сметката е поставена на %s." #. module: point_of_sale #: help:pos.category,image:0 @@ -880,7 +884,7 @@ msgid "" "This field holds the image used as image for the cateogry, limited to " "1024x1024px." msgstr "" -"Ова поле ја држи сликата која се користи како силика за оваа категорија, " +"Ова поле ја држи сликата која се користи како слика за оваа категорија, " "ограничено на 1024х1024Px." #. module: point_of_sale @@ -905,7 +909,7 @@ msgid "" msgstr "" "Треба да дефинирате кој метод на плаќање треба да биде достапен во точката " "за продажба со повторно користење на постојната банка и готовина преку " -"\"Сметководство / Конфигурација / Картици / Картици\". Изберете картица и " +"\"Сметководство / Конфигурација / Дневници / Дневници\". Изберете дневник и " "означете го полето \"Метод на плаќање на точка на продажба\" од јазичето " "\"Точка на продажба\". Исто така креирајте нови методи на плаќање директно " "од менито \"PoS Backend / Конфигурација / Методи на плаќање\"." @@ -961,7 +965,7 @@ msgstr "Jonagold јаболки" #: model:ir.model,name:point_of_sale.model_account_journal #: field:report.pos.order,journal_id:0 msgid "Journal" -msgstr "Картица" +msgstr "Дневник" #. module: point_of_sale #: view:pos.session:0 @@ -979,7 +983,7 @@ msgid "" "Check this if you want to group the Journal Items by Product while closing a " "Session" msgstr "" -"Означете го ова ако сакате да групирате ставки од картицата по производ " +"Означете го ова ако сакате да групирате ставки од дневникот по производ " "додека ја затварате сесијата" #. module: point_of_sale @@ -1012,7 +1016,7 @@ msgstr "Maes 50cl" #. module: point_of_sale #: view:report.pos.order:0 msgid "Not Invoiced" -msgstr "Не фактурирано" +msgstr "Не е фактурирано" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_pickles_250g_product_template @@ -1040,6 +1044,8 @@ msgstr "Производ на корисникот" #, python-format msgid "The POS order must have lines when calling this method" msgstr "" +"Налогот за точката на продажба мора да има ставки кои го повикуваат овој " +"метод" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:1143 @@ -1074,7 +1080,7 @@ msgstr "Додади глобален попуст" #. module: point_of_sale #: view:pos.config:0 msgid "Journals" -msgstr "Картици" +msgstr "Дневници" #. module: point_of_sale #: model:product.template,name:point_of_sale.oetker_prosciutto_product_template @@ -1239,7 +1245,7 @@ msgstr "Пресметано со користење на ставки од го #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 msgid "St.Name" -msgstr "" +msgstr "Име на улица" #. module: point_of_sale #: report:pos.details_summary:0 @@ -1391,7 +1397,7 @@ msgstr "Продажби по маржа месечно" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_jaunes_product_template msgid "Yellow Peppers" -msgstr "Жолти Страници" +msgstr "Жолти пиперки" #. module: point_of_sale #: view:pos.order:0 @@ -1418,7 +1424,7 @@ msgstr "Lays Natural XXL 300g" #: code:addons/point_of_sale/static/src/xml/pos.xml:479 #, python-format msgid "Scan Item Unrecognized" -msgstr "Скенираниот предмент не е препознаен" +msgstr "Скенираниот предмет не е препознаен" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 @@ -1502,7 +1508,8 @@ msgstr "Категории на производ" #. module: point_of_sale #: help:pos.config,journal_id:0 msgid "Accounting journal used to post sales entries." -msgstr "Контен дневник што се користи за објавување на внесови од продажба." +msgstr "" +"Дневник на сметка што се користи за објавување на внесови од продажба." #. module: point_of_sale #: field:report.transaction.pos,disc:0 @@ -1536,7 +1543,7 @@ msgstr "Coca-Cola Zero 33cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:405 #, python-format msgid "ä" -msgstr "" +msgstr "ä" #. module: point_of_sale #: report:pos.invoice:0 @@ -1551,7 +1558,7 @@ msgstr "Ставки од налогот за местото на продажб #. module: point_of_sale #: view:pos.receipt:0 msgid "Receipt :" -msgstr "Прием :" +msgstr "Сметка :" #. module: point_of_sale #: field:account.bank.statement,pos_session_id:0 @@ -1706,7 +1713,7 @@ msgstr "" #. module: point_of_sale #: view:pos.session:0 msgid "Validate Closing & Post Entries" -msgstr "Валидирај Затварање & Објавување на записи" +msgstr "Валидирај Затварање & Објавување на внесови" #. module: point_of_sale #: field:report.transaction.pos,no_trans:0 @@ -1720,7 +1727,7 @@ msgid "" "There is no receivable account defined to make payment for the partner: " "\"%s\" (id:%d)." msgstr "" -"Нема дефинирано конто за побарувања за да направите плаќање за партнерот: " +"Нема дефинирано сметка за побарувања за да направите плаќање за партнерот: " "\"%s\" (id:%d)." #. module: point_of_sale @@ -1751,7 +1758,7 @@ msgstr "Откажи" #: code:addons/point_of_sale/static/src/xml/pos.xml:296 #, python-format msgid "Please put your product on the scale" -msgstr "Ставете говашиот производ на скалата" +msgstr "Ставете го вашиот производ на скалата" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary @@ -1874,7 +1881,7 @@ msgstr "Место на продажба" #: code:addons/point_of_sale/static/src/xml/pos.xml:587 #, python-format msgid "Subtotal:" -msgstr "Subtotal:" +msgstr "Вкупно:" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_regular_33cl_product_template @@ -1930,7 +1937,7 @@ msgid "" "Generate all sale journal entries for non invoiced orders linked to a closed " "cash register or statement." msgstr "" -"Генерирај ги сите записи од картицата за продажба за нефактурираните налози " +"Генерирај ги сите записи од дневникот за продажба за нефактурираните налози " "поврзани со затворена каса или извод." #. module: point_of_sale @@ -1992,13 +1999,13 @@ msgid "" "Unable to open the session. You have to assign a sale journal to your point " "of sale." msgstr "" -"Не може да се отвори сесија. Треба да доделите картица за продажби на вашата " +"Не може да се отвори сесија. Треба да доделите дневник за продажби на вашата " "точка за продажба." #. module: point_of_sale #: view:report.pos.order:0 msgid "POS ordered created during current year" -msgstr "" +msgstr "Налог за точката на продажба креиран во тековната година" #. module: point_of_sale #: model:product.template,name:point_of_sale.peche_product_template @@ -2062,7 +2069,7 @@ msgstr "Сите затворени каси" #. module: point_of_sale #: field:pos.details,user_ids:0 msgid "Salespeople" -msgstr "Трговци" +msgstr "Продавачи" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:756 @@ -2130,7 +2137,7 @@ msgstr "Нема дефинирано каса !" msgid "" "No cash statement found for this session. Unable to record returned cash." msgstr "" -"Н е пронајден готовински извод за оваа сесија. Не може да се зачува " +"Не е пронајден готовински извод за оваа сесија. Не може да се зачува " "вратената готовина." #. module: point_of_sale @@ -2261,6 +2268,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да додадете нов производ.\n" +"

\n" +" Мора да дефинирате производ за се што продавате преку\n" +" интерфејсот на точката на продажба.\n" +"

\n" +" Не заборавајте да ја подесите цената и категоријата на " +"точката за \n" +" продажба во која треба да се појави. Доколку производот нема " +"категорија\n" +" на точка на продажба, можете да го продавате преку " +"интерфејсот на \n" +" точката на продажба.\n" +"

\n" +" " #. module: point_of_sale #: view:pos.order:0 @@ -2465,7 +2487,7 @@ msgstr "Слика со средна големина" #. module: point_of_sale #: model:product.template,name:point_of_sale.papillon_orange_product_template msgid "Orange Butterfly" -msgstr "" +msgstr "Orange Butterfly" #. module: point_of_sale #: view:report.pos.order:0 @@ -2516,12 +2538,12 @@ msgstr "Круши" #. module: point_of_sale #: field:report.transaction.pos,journal_id:0 msgid "Sales Journal" -msgstr "Продажна картица" +msgstr "Дневник Продажба" #. module: point_of_sale #: view:pos.session:0 msgid "Opening Balance" -msgstr "Биланс при отварање" +msgstr "Салдо при отварање" #. module: point_of_sale #: view:account.bank.statement:0 @@ -2841,7 +2863,7 @@ msgstr "Dr. Oetker Ristorante Pollo" msgid "" "You cannot create two active sessions related to the same point of sale!" msgstr "" -"Не може да креирате две активни сесии поврзани со иста точка на продажба" +"Не може да креирате две активни сесии поврзани со иста точка на продажба!" #. module: point_of_sale #: field:pos.category,image_small:0 @@ -2973,7 +2995,7 @@ msgstr "Вкупно нето:" #. module: point_of_sale #: field:pos.session,cash_journal_id:0 msgid "Cash Journal" -msgstr "Готовинска картица" +msgstr "Дневник Готовина" #. module: point_of_sale #: model:res.groups,name:point_of_sale.group_pos_manager @@ -3081,7 +3103,7 @@ msgstr "Фанта Портокал 25cl" #. module: point_of_sale #: view:pos.confirm:0 msgid "Generate Journal Entries" -msgstr "Генерирај записи на картица" +msgstr "Генерирај внесови во дневник" #. module: point_of_sale #: report:account.statement:0 @@ -3232,7 +3254,7 @@ msgstr "Orangina 1.5Л" #. module: point_of_sale #: view:report.pos.order:0 msgid "Point of Sale Analysis" -msgstr "Анализи на место на продажба" +msgstr "Анализи на точка на продажба" #. module: point_of_sale #: model:pos.category,name:point_of_sale.ice_cream @@ -3288,7 +3310,7 @@ msgstr "Chaudfontaine 1.5л" #: code:addons/point_of_sale/point_of_sale.py:1069 #, python-format msgid "Trade Receivables" -msgstr "" +msgstr "Побарувања од трговија" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:529 @@ -3325,13 +3347,13 @@ msgstr "Операција" #. module: point_of_sale #: field:pos.order,account_move:0 msgid "Journal Entry" -msgstr "Запис на картица" +msgstr "Внес во дневник" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:736 #, python-format msgid "There is no receivable account defined to make payment." -msgstr "Нема дефинирано конто на побарувања за да се направи плаќање." +msgstr "Нема дефинирано сметка на побарувања за да се направи плаќање." #. module: point_of_sale #: model:product.template,name:point_of_sale.citron_product_template @@ -3563,7 +3585,7 @@ msgstr "Нова сесија" #. module: point_of_sale #: field:pos.config,group_by:0 msgid "Group Journal Items" -msgstr "Групирај ставки од картица" +msgstr "Групирај ставки од дневник" #. module: point_of_sale #: model:ir.actions.act_window,help:point_of_sale.action_pos_pos_form @@ -3631,7 +3653,7 @@ msgstr "Готовински извод" #. module: point_of_sale #: report:pos.details_summary:0 msgid "Mode of Taxes" -msgstr "Мод на даноци" +msgstr "Режим на даноци" #. module: point_of_sale #: field:pos.order,amount_paid:0 @@ -3796,7 +3818,7 @@ msgstr "Општи информации" #. module: point_of_sale #: view:pos.order.line:0 msgid "Sum of subtotals" -msgstr "Сума на подизноси" +msgstr "Сума на под износи" #. module: point_of_sale #: view:pos.session.opening:0 @@ -3855,7 +3877,7 @@ msgstr "Извештај за плаќање" #. module: point_of_sale #: field:report.transaction.pos,jl_id:0 msgid "Cash Journals" -msgstr "Готовински картици" +msgstr "Дневници готовина" #. module: point_of_sale #: view:pos.session:0 @@ -3880,6 +3902,11 @@ msgid "" "maximum is reached, the user will have an error message at the closing of " "his session saying that he needs to contact his manager." msgstr "" +"Ова поле ја отсликува максималната дозволена разлика помеѓу завршното салдо " +"и теоретската готовина кога се затвара сесија, за non-POS менаџери. Доколку " +"овој максимум е достигнат, корисникот ќе има порака за грешка при " +"затварањето на сесијата која ќе му каже дека треба да го контактира неговиот " +"менаџер." #. module: point_of_sale #: report:pos.invoice:0 @@ -3955,6 +3982,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да додадете метод на плаќање.\n" +"

\n" +" Методите на плаќање се дефинирану преку сметководствените " +"дневници\n" +" кои го имаат означено полето PoS Payment Method. За " +"да може да се користи од\n" +" интерфејсот на екранот на допир, мора да го подесите методот " +"на \n" +" плаќање на Point of Sale конфигурацијата.\n" +"

\n" +" " #. module: point_of_sale #: view:pos.order:0 @@ -4007,7 +4046,7 @@ msgstr "Плаќања" #. module: point_of_sale #: report:pos.invoice:0 msgid "Supplier Refund" -msgstr "Поврати на добавувач" +msgstr "Поврат на добавувач" #. module: point_of_sale #. openerp-web @@ -4032,8 +4071,8 @@ msgid "" "Check this box if this journal define a payment method that can be used in " "point of sales." msgstr "" -"Означи го ова поле доколку картицата дефинира метод на плаќање кој може да " -"биде употребен во местото на продажба." +"Означи го ова поле доколку дневникот дефинира метод на плаќање кој може да " +"биде употребен во точката на продажба." #. module: point_of_sale #. openerp-web @@ -4045,7 +4084,7 @@ msgstr "Mozilla Firefox" #. module: point_of_sale #: model:product.template,name:point_of_sale.raisins_noir_product_template msgid "Black Grapes" -msgstr "" +msgstr "Црно грозје" #. module: point_of_sale #: field:pos.category,sequence:0 diff --git a/addons/portal/i18n/mk.po b/addons/portal/i18n/mk.po index 5493ca2f4b7..08c656dc6cf 100644 --- a/addons/portal/i18n/mk.po +++ b/addons/portal/i18n/mk.po @@ -9,21 +9,20 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-03-11 09:36+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: portal #: view:portal.payment.acquirer:0 msgid "Mako" -msgstr "" +msgstr "Mako" #. module: portal #: code:addons/portal/wizard/share_wizard.py:50 @@ -49,12 +48,12 @@ msgstr "" #. module: portal #: model:mail.group,name:portal.company_jobs msgid "Company Jobs" -msgstr "Работи на компанијата" +msgstr "Работни места во компанијата" #. module: portal #: view:portal.payment.acquirer:0 msgid "amount: the total amount to pay, as a float" -msgstr "сума: вкупна сума за плаќање, as a float" +msgstr "износ: вкупен износ за плаќање, as a float" #. module: portal #: view:portal.wizard.user:0 @@ -65,7 +64,7 @@ msgstr "Контакти" #: view:portal.wizard:0 msgid "This text is included in the email sent to new portal users." msgstr "" -"Овој текст е вклучен во имејлот пратен до новите корисници на порталот." +"Овој текст е вклучен во е-поштата пратена до новите корисници на порталот." #. module: portal #: view:share.wizard:0 @@ -94,7 +93,7 @@ msgstr "Порака за покана" #: model:ir.model,name:portal.model_portal_wizard #: view:portal.wizard:0 msgid "Portal Access Management" -msgstr "Менаџмент на пристап на портал" +msgstr "Управување со пристап на портал" #. module: portal #: view:res.groups:0 @@ -129,6 +128,8 @@ msgid "" "Make this payment acquirer available in portal forms (Customer invoices, " "etc.)" msgstr "" +"Направи го овој стекнувач на плаќањето достапен во формуларите на порталот " +"(Излезни фактури, и.т.н.)" #. module: portal #: model:ir.model,name:portal.model_share_wizard @@ -141,6 +142,8 @@ msgid "" ", so it may use Mako expressions.\n" " The Mako evaluation context provides:" msgstr "" +", така што може да користи Mako изрази.\n" +" Mako евалуациониот контекст обезбедува:" #. module: portal #: model:ir.actions.client,help:portal.action_news @@ -158,7 +161,7 @@ msgstr "" #. module: portal #: field:portal.wizard.user,email:0 msgid "Email" -msgstr "Емаил" +msgstr "Е-пошта" #. module: portal #: view:portal.wizard:0 @@ -169,7 +172,7 @@ msgstr "или" #: model:ir.actions.client,name:portal.action_mail_star_feeds_portal #: model:ir.ui.menu,name:portal.portal_mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Да се направи" #. module: portal #: code:addons/portal/wizard/portal_wizard.py:194 @@ -177,14 +180,14 @@ msgstr "" msgid "" "You must have an email address in your User Preferences to send emails." msgstr "" -"Мора да имате емаил адреса во вашите Кориснички преференци за да праќате " -"мејлови." +"Мора да имате емаил адреса во вашите Кориснички преференци за да праќате е-" +"пошти." #. module: portal #: model:ir.actions.client,name:portal.action_jobs #: model:ir.ui.menu,name:portal.portal_jobs msgid "Jobs" -msgstr "Работи" +msgstr "Работни места" #. module: portal #: field:portal.wizard,user_ids:0 @@ -201,7 +204,7 @@ msgstr "Безбедно онлајн плаќање" #: code:addons/portal/acquirer.py:77 #, python-format msgid "No online payment acquirers configured" -msgstr "" +msgstr "Нема конфигурирано стекнувач на онлајн плаќање" #. module: portal #: view:portal.payment.acquirer:0 @@ -252,7 +255,7 @@ msgstr "" " Нема пронајдено пораки и нема пратено пораки.\n" "

\n" " За креирање на порака кликни на иконата горе-десно. Оваа " -" порака ќе биде пратена како e-mail доколку се работи за " +" порака ќе биде пратена како е-пошта доколку се работи за " "внатрешен контакт.\n" "

\n" " " @@ -300,14 +303,14 @@ msgid "" " They usually do not belong to the usual OpenERP groups." msgstr "" "Членовите на порталот имаат специфични права за пристап (како што се правила " -"за евиденција и ограничени менија).\n" +"за евиденција и ограничени мениа).\n" " Тие вообичаено не припаѓаат на вообичаените OpenERP групи." #. module: portal #: model:ir.actions.act_window,name:portal.action_acquirer_list #: view:portal.payment.acquirer:0 msgid "Payment Acquirers" -msgstr "" +msgstr "Стакнувачи на плаќање" #. module: portal #: model:ir.ui.menu,name:portal.portal_projects @@ -344,7 +347,7 @@ msgstr "Групи за пристап" #. module: portal #: view:portal.payment.acquirer:0 msgid "uid: the current user id" -msgstr "uid: the current user id" +msgstr "uid: id на тековен корисник" #. module: portal #: view:portal.payment.acquirer:0 @@ -352,7 +355,7 @@ msgid "" "quote(): a method to quote special string character to make them suitable " "for inclusion in a URL" msgstr "" -"quote(): начин на ставање во наводници специјален карактер за да биде " +"цитат(): начин на ставање во наводници специјален карактер за да биде " "погоден за вметнување во URL" #. module: portal @@ -384,7 +387,7 @@ msgstr "Излезна пошта" #: code:addons/portal/wizard/portal_wizard.py:193 #, python-format msgid "Email required" -msgstr "Потребен е емаил" +msgstr "Потребена е е-пошта" #. module: portal #: model:ir.ui.menu,name:portal.portal_messages @@ -399,13 +402,13 @@ msgid "" " They usually do not belong to the usual OpenERP groups." msgstr "" "Анонимните корисници имаат специфични права за пристап (како што се правила " -"за евиденција и ограничени менија).\n" +"за евиденција и ограничени мениа).\n" " Тие не припаѓаат на вообичаените OpenERP групи." #. module: portal #: model:ir.model,name:portal.model_portal_payment_acquirer msgid "Online Payment Acquirer" -msgstr "" +msgstr "Стекнувач на онлајн плаќање" #. module: portal #: model:mail.group,name:portal.company_news_feed @@ -443,7 +446,7 @@ msgstr "" "

\n" " Добра работа! Вашето влезно сандаче е празно.\n" "

\n" -" Вашето влезно сандаче содржи приватни пораки или мејлови " +" Вашето влезно сандаче содржи приватни пораки или е-пошти " "испратени до вас\n" " како и информации поврзани со документите или луѓето кои\n" " ги следите.\n" @@ -463,7 +466,7 @@ msgstr "" #: help:portal.wizard,welcome_message:0 msgid "This text is included in the email sent to new users of the portal." msgstr "" -"Текстот е вклучен во емаилот испратен до новите корисници на порталот." +"Текстот е вклучен во е-поштата испратена до новите корисници на порталот." #. module: portal #: model:ir.ui.menu,name:portal.portal_company @@ -478,7 +481,7 @@ msgstr "Доколку е означено, оваа група може да с #. module: portal #: view:portal.payment.acquirer:0 msgid "Payment Acquirer" -msgstr "" +msgstr "Стакнувач на плаќање" #. module: portal #: code:addons/portal/wizard/portal_wizard.py:35 @@ -509,7 +512,7 @@ msgstr "" "База на податоци: %(db)s\n" "Корисничко име: %(login)s\n" "\n" -"За да го завршите процесот на запишување, кликнете на следната адреса:\n" +"За да го завршите процесот на најавување, кликнете на следната адреса:\n" "%(url)s\n" "\n" "%(welcome_message)s\n" @@ -577,7 +580,7 @@ msgid "" "If the template renders to an empty result in a certain context it will be " "ignored, as if it was inactive." msgstr "" -"Ако образецот дава празни резултати во одреден контекстќе биде игнориран, " +"Ако образецот дава празни резултати во одреден контекст ќе биде игнориран, " "како да е неактивен." #. module: portal diff --git a/addons/portal_crm/i18n/mk.po b/addons/portal_crm/i18n/mk.po index 73b3682a07c..21e2d52c2aa 100644 --- a/addons/portal_crm/i18n/mk.po +++ b/addons/portal_crm/i18n/mk.po @@ -9,21 +9,20 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-03-04 15:03+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 msgid "Lead" -msgstr "Водечко" +msgstr "Трага" #. module: portal_crm #: field:portal_crm.crm_contact_us,title:0 @@ -103,7 +102,7 @@ msgstr "Индекс на боја" #. module: portal_crm #: field:portal_crm.crm_contact_us,partner_latitude:0 msgid "Geo Latitude" -msgstr "" +msgstr "Гео ширина" #. module: portal_crm #: field:portal_crm.crm_contact_us,partner_name:0 @@ -183,13 +182,13 @@ msgstr "Земја" #. module: portal_crm #: field:portal_crm.crm_contact_us,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: portal_crm #: help:portal_crm.crm_contact_us,partner_id:0 msgid "Linked partner (optional). Usually created when converting the lead." msgstr "" -"Поврзан партнер (опционо). Обично се креира при конвертирање на lead." +"Поврзан партнер (опционо). Обично се креира при конвертирање на трага." #. module: portal_crm #: field:portal_crm.crm_contact_us,payment_mode:0 @@ -234,7 +233,7 @@ msgstr "Датум на креирање" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Content..." -msgstr "" +msgstr "Содржина..." #. module: portal_crm #: view:portal_crm.crm_contact_us:0 @@ -288,12 +287,12 @@ msgstr "Контакт" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Your name..." -msgstr "" +msgstr "Вашето име..." #. module: portal_crm #: field:portal_crm.crm_contact_us,partner_address_email:0 msgid "Partner Contact Email" -msgstr "Контакт Емаил на партнер" +msgstr "Е-пошта за контакт на партнер" #. module: portal_crm #: field:portal_crm.crm_contact_us,planned_revenue:0 @@ -323,7 +322,7 @@ msgstr "Датум на ажуруирање" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Your email..." -msgstr "" +msgstr "Ваша е-пошта" #. module: portal_crm #: field:portal_crm.crm_contact_us,date_deadline:0 @@ -338,7 +337,7 @@ msgstr "Референца 2" #. module: portal_crm #: field:portal_crm.crm_contact_us,user_email:0 msgid "User Email" -msgstr "Емаил на корисник" +msgstr "Е-пошта на корисник" #. module: portal_crm #: field:portal_crm.crm_contact_us,date_open:0 @@ -356,8 +355,8 @@ msgid "" "The name of the future partner company that will be created while converting " "the lead into opportunity" msgstr "" -"Име на идната партнерска компанија кое ќе биде преирано при конвертирањето " -"на lead во можност" +"Име на идната партнерска компанија кое ќе биде креирано при конвертирањето " +"на трага во можност" #. module: portal_crm #: field:portal_crm.crm_contact_us,planned_cost:0 @@ -376,8 +375,8 @@ msgid "" "outbound emails for this record before being sent. Separate multiple email " "addresses with a comma" msgstr "" -"Овие емаил адреси ќе бидат додадени во CC полето на сите влезни и излезни " -"емејлови за овој запис пред да биде испратен. Одделете ги емаил адресите со " +"Овие емаил адреси ќе бидат додадени во CC полето на сите влезни и излезни е-" +"пошти за овој запис пред да биде испратен. Одделете ги емаил адресите со " "запирка" #. module: portal_crm @@ -429,7 +428,7 @@ msgstr "Телефон" #. module: portal_crm #: field:portal_crm.crm_contact_us,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: portal_crm #: field:portal_crm.crm_contact_us,active:0 @@ -459,7 +458,7 @@ msgstr "Резиме" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Subject..." -msgstr "" +msgstr "Тема..." #. module: portal_crm #: help:portal_crm.crm_contact_us,section_id:0 @@ -476,17 +475,17 @@ msgstr "Контакт Име на партнер" #. module: portal_crm #: field:portal_crm.crm_contact_us,partner_longitude:0 msgid "Geo Longitude" -msgstr "" +msgstr "Гео должина" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Your phone number..." -msgstr "" +msgstr "Вашиот телефонски број..." #. module: portal_crm #: help:portal_crm.crm_contact_us,date_assign:0 msgid "Last date this case was forwarded/assigned to a partner" -msgstr "Последниот датум овој предмет беше препратен/доделен на партнер" +msgstr "Последен датум кога овој предмет беше препратен/доделен на партнер" #. module: portal_crm #: help:portal_crm.crm_contact_us,email_from:0 diff --git a/addons/portal_event/i18n/mk.po b/addons/portal_event/i18n/mk.po index c3c49d28912..c2150e358b0 100644 --- a/addons/portal_event/i18n/mk.po +++ b/addons/portal_event/i18n/mk.po @@ -2,25 +2,26 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-01 17:03+0000\n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: portal_event #: view:event.event:0 msgid "Portal Settings" -msgstr "Поставување на портал" +msgstr "Подесување на портал" #. module: portal_event #: model:ir.actions.act_window,help:portal_event.action_event_view diff --git a/addons/portal_hr_employees/i18n/mk.po b/addons/portal_hr_employees/i18n/mk.po index 53ed81d88b9..31dc620a59d 100644 --- a/addons/portal_hr_employees/i18n/mk.po +++ b/addons/portal_hr_employees/i18n/mk.po @@ -1,4 +1,4 @@ -## Macedonian translation for openobject-addons +# Macedonian translation for openobject-addons # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-02-28 20:37+0000\n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: OpenERP Macedonia \n" +"Language-Team: ESKON-INZENERING\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:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -24,6 +23,8 @@ msgstr "" #: view:hr.employee:0 msgid "Here you can write information about you to be shown in the portal..." msgstr "" +"Овде може да напишете информација за вас која ќе биде прикажана на " +"порталот..." #. module: portal_hr_employees #: view:hr.employee:0 @@ -94,7 +95,7 @@ msgstr "Контакт од порталот" #. module: portal_hr_employees #: view:hr.employee:0 msgid "Department" -msgstr "Оддел" +msgstr "Одделение" #. module: portal_hr_employees #: view:hr.employee:0 diff --git a/addons/portal_project_issue/i18n/mk.po b/addons/portal_project_issue/i18n/mk.po index 3e5617ad03a..32210133dd9 100644 --- a/addons/portal_project_issue/i18n/mk.po +++ b/addons/portal_project_issue/i18n/mk.po @@ -2,25 +2,26 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-01 17:01+0000\n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: portal_project_issue #: view:project.issue:0 msgid "Creation:" -msgstr "Создавање:" +msgstr "Креирање:" #. module: portal_project_issue #: model:ir.actions.act_window,help:portal_project_issue.project_issue_categ_act0 @@ -34,9 +35,9 @@ msgid "" " " msgstr "" "

\n" -"Кликнете за да креирате ставка.\n" +"Кликнете за да креирате тема.\n" "

\n" -"Може да ги следите вашите ставки од ова мени и акцијата која\n" +"Може да ги следите вашите теми од ова мени и акцијата која\n" "ќе ја превземеме.\n" "

\n" " " @@ -44,4 +45,4 @@ msgstr "" #. module: portal_project_issue #: model:ir.actions.act_window,name:portal_project_issue.project_issue_categ_act0 msgid "Issues" -msgstr "Ставки" +msgstr "Теми" diff --git a/addons/portal_sale/i18n/mk.po b/addons/portal_sale/i18n/mk.po index f205c661638..ca149660337 100644 --- a/addons/portal_sale/i18n/mk.po +++ b/addons/portal_sale/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-02-28 20:37+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 23:27+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -28,7 +27,7 @@ msgstr "account.config.settings" #. module: portal_sale #: view:account.invoice:0 msgid "[('share','=', False)]" -msgstr "" +msgstr "[('share','=', False)]" #. module: portal_sale #: model:ir.actions.act_window,help:portal_sale.portal_action_invoices @@ -82,8 +81,8 @@ msgid "" "their documents through the portal." msgstr "" "Членовите на оваа група ги гледаат опциите за плаќање преку интернет\n" -"на Нарачки за продажба и Фактури. Овие опции се наменети за клиенти кои " -"пристапуваат\n" +"на Налози за продажба и Излезни фактури. Овие опции се наменети за клиенти " +"кои пристапуваат\n" "до своите документи преку порталот." #. module: portal_sale @@ -335,8 +334,8 @@ msgid "" "Show online payment options on Sale Orders and Customer Invoices to " "employees. If not checked, these options are only visible to portal users." msgstr "" -"Прикажи ги опциите за плаќање преку интернет на Нарачки за продажба и " -"Фактури за вработените. Доколку не е штиклирано, овие опции се видливи само " +"Прикажи ги опциите за плаќање преку интернет на Налози за продажба и Излезни " +"фактури на вработените. Доколку не е штиклирано, овие опции се видливи само " "за корисниците на порталот." #. module: portal_sale @@ -551,7 +550,7 @@ msgstr "" #. module: portal_sale #: model:ir.actions.act_window,help:portal_sale.action_orders_portal msgid "We haven't sent you any sales order." -msgstr "Ви немаме испратено нарачка за продажба." +msgstr "Ви немаме испратено налог за продажба." #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_invoice @@ -561,4 +560,4 @@ msgstr "Фактура" #. module: portal_sale #: model:ir.actions.act_window,name:portal_sale.action_orders_portal msgid "Sale Orders" -msgstr "Нарачки за продажба" +msgstr "Налог за продажба" diff --git a/addons/procurement/i18n/mk.po b/addons/procurement/i18n/mk.po index f3751e6e26b..74ed6911d98 100644 --- a/addons/procurement/i18n/mk.po +++ b/addons/procurement/i18n/mk.po @@ -9,21 +9,20 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-02-28 20:37+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: OpenERP Macedonia \n" +"Language-Team: ESKON-INZENERING\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:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched msgid "Schedulers" -msgstr "Распореди" +msgstr "Распоредувачи" #. module: procurement #: model:ir.model,name:procurement.model_make_procurement @@ -37,9 +36,9 @@ msgid "" "procurements. All procurements that are not between today and today+range " "are skipped for future computation." msgstr "" -"Ова е временска рамка анализирана од страна на планерот при пресметувањето " -"на набавките. Сите набавки кои не се помеѓу денес и денес+опсегот се " -"прескокнати за идно пресметување." +"Ова е временска рамка анализирана од страна на распоредувачот при " +"пресметувањето на набавките. Сите набавки кои не се помеѓу денес и " +"денес+опсегот се прескокнати за идно пресметување." #. module: procurement #: help:procurement.order.compute.all,automatic:0 @@ -49,7 +48,7 @@ msgid "" "configuration on products." msgstr "" "Ативира автоматска набавка за сите производи кои имаат виртуелна залиха под " -"0. Најверојатно не треба да ја користите оваа опција, ви сигерираме да " +"0. Најверојатно не треба да ја користите оваа опција, ви сугерираме да " "користите МТО конфигурација на производите." #. module: procurement @@ -60,7 +59,7 @@ msgstr "Групирај по..." #. module: procurement #: help:stock.warehouse.orderpoint,procurement_draft_ids:0 msgid "Draft procurement of the product and location of that orderpoint" -msgstr "Нацрт набавка на производ и локација на таа orderpoint" +msgstr "Нацрт набавка на производ и локација на таа целна точка" #. module: procurement #: view:product.product:0 @@ -72,7 +71,7 @@ msgstr "бараните количини секогаш се достапни" #. module: procurement #: view:procurement.order:0 msgid "External note..." -msgstr "" +msgstr "Надворешна белешка..." #. module: procurement #: view:product.product:0 @@ -82,9 +81,9 @@ msgid "" "inventory, you should\n" " create others rules like orderpoints." msgstr "" -"Доколку нема доволно расположливи количини, налогот за набавка ќе чека за " -"нови производи. За да се пополни инвентарот, треба да креирате други правила " -"како orderpoints." +"Доколку нема доволно расположливи количини, испратницата ќе чека за нови " +"производи. За да се пополни залихата, треба да креирате други правила како " +"точки на нарачка." #. module: procurement #: field:procurement.order,procure_method:0 @@ -178,7 +177,7 @@ msgstr "Пораки" #. module: procurement #: view:procurement.order:0 msgid "Cancel Procurement" -msgstr "" +msgstr "Откажи набавка" #. module: procurement #: view:product.product:0 @@ -213,7 +212,7 @@ msgstr "Движење на залиха" #. module: procurement #: view:product.product:0 msgid "Stockable products" -msgstr "" +msgstr "Производи на залиха" #. module: procurement #: code:addons/procurement/procurement.py:138 @@ -309,7 +308,7 @@ msgstr "" #. module: procurement #: view:stock.warehouse.orderpoint:0 msgid "Procurement Orders to Process" -msgstr "Налози за набава за обработка" +msgstr "Налози за набавка за обработување" #. module: procurement #: model:ir.model,name:procurement.model_stock_warehouse_orderpoint @@ -340,7 +339,7 @@ msgstr "Чекам" #. module: procurement #: field:procurement.order,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: procurement #: field:procurement.order,location_id:0 @@ -401,7 +400,7 @@ msgstr "Групирај по" #: field:make.procurement,qty:0 #: field:procurement.order,product_qty:0 msgid "Quantity" -msgstr "оличина" +msgstr "Количина" #. module: procurement #: code:addons/procurement/procurement.py:365 @@ -504,12 +503,12 @@ msgstr "Исклучоци" #. module: procurement #: model:process.node,note:procurement.process_node_serviceonorder0 msgid "Assignment from Production or Purchase Order." -msgstr "Задача од налогот за производство или набавка." +msgstr "Доделување од налогот за производство или набавка." #. module: procurement #: model:ir.model,name:procurement.model_mrp_property msgid "Property" -msgstr "Сопственост" +msgstr "Својство" #. module: procurement #: model:ir.actions.act_window,name:procurement.act_make_procurement @@ -525,7 +524,7 @@ msgstr "Пресметај залиха" #. module: procurement #: view:procurement.order:0 msgid "e.g. SO005" -msgstr "" +msgstr "e.g. SO005" #. module: procurement #: field:stock.warehouse.orderpoint,procurement_draft_ids:0 @@ -571,18 +570,18 @@ msgid "" "orderpoint without removing it." msgstr "" "Доколку активното поле е подесено на грешка, ќе ви дозволи да ја сокриете " -"orderpoint без да ја отстраните." +"точката на нарачка без да ја отстраните." #. module: procurement #: view:procurement.order:0 msgid "Internal note..." -msgstr "" +msgstr "Внатрешна белешка..." #. module: procurement #: help:procurement.orderpoint.compute,automatic:0 msgid "If the stock of a product is under 0, it will act like an orderpoint" msgstr "" -"Доколку залихата на производот е под 0, ќе се однесува како orderpoint" +"Доколку залихата на производот е под 0, ќе се однесува како точка на нарачка" #. module: procurement #: field:procurement.order,product_uom:0 @@ -659,7 +658,7 @@ msgstr "Купи" #. module: procurement #: view:product.product:0 msgid "for the delivery order." -msgstr "за налог за испорака." +msgstr "за испратницата." #. module: procurement #: selection:procurement.order,priority:0 @@ -673,10 +672,9 @@ msgid "" "will be generated, depending on the product type. \n" "Buy: When procuring the product, a purchase order will be generated." msgstr "" -"Произведи: Кога набавувате производ, налогот за производство, налогот за " -"производство или задачата ќе бидат генерирани во зависност од типот на " -"производот. Купи: Кога набавувате производ, ќе биде генериран налог за " -"набавка." +"Произведи: Кога набавувате производ, налогот за производство или задачата ќе " +"бидат генерирани во зависност од типот на производот. Купи: Кога набавувате " +"производ, ќе биде генериран налог за набавка." #. module: procurement #: field:stock.warehouse.orderpoint,product_max_qty:0 @@ -686,7 +684,7 @@ msgstr "Максимална Количина" #. module: procurement #: field:procurement.order,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: procurement #: code:addons/procurement/procurement.py:367 @@ -730,8 +728,8 @@ msgid "" "When you sell this product, a delivery order will be created.\n" " OpenERP will consider that the" msgstr "" -"Кога го продавате овој производ, ќе се креира налог за испорака. OpenERP ќе " -"смета дека" +"Кога го продавате овој производ, ќе се креира испратница. OpenERP ќе смета " +"дека" #. module: procurement #: code:addons/procurement/schedulers.py:133 @@ -829,7 +827,7 @@ msgstr "Недоволно податоци !" #: field:mrp.property,group_id:0 #: field:mrp.property.group,name:0 msgid "Property Group" -msgstr "" +msgstr "Група на својства" #. module: procurement #: view:stock.warehouse.orderpoint:0 @@ -862,7 +860,7 @@ msgstr "Откажи" #. module: procurement #: field:stock.warehouse.orderpoint,logic:0 msgid "Reordering Mode" -msgstr "Мод за преуредување" +msgstr "Режим за преуредување" #. module: procurement #: field:procurement.order,origin:0 @@ -1049,7 +1047,7 @@ msgid "" "Wizard checks all the stock minimum rules and generate procurement order." msgstr "" "Волшебникот ги означува сите правила за минимална залиха и генерира налог за " -"набавка.ж" +"набавка." #. module: procurement #: view:procurement.order:0 @@ -1098,7 +1096,7 @@ msgstr "или" #: code:addons/procurement/schedulers.py:134 #, python-format msgid "SCHEDULER" -msgstr "SCHEDULER" +msgstr "РАСПОРЕДУВАЧ" #. module: procurement #: view:product.product:0 diff --git a/addons/product/i18n/mk.po b/addons/product/i18n/mk.po index 041b6fa76e2..4a532442f62 100644 --- a/addons/product/i18n/mk.po +++ b/addons/product/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-03-11 08:12+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:54+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -53,7 +52,7 @@ msgstr "Име на производот" #. module: product #: view:product.template:0 msgid "Second Unit of Measure" -msgstr "Втора мерна единица" +msgstr "Втора единица мерка" #. module: product #: help:res.partner,property_product_pricelist:0 @@ -94,7 +93,7 @@ msgstr "Име на правило" msgid "" "Base price to compute the customer price. Sometimes called the catalog price." msgstr "" -"Основна цена за пресметување на цената за клиентот, т.н. каталошка цена." +"Основна цена за пресметување на цената за купувачот, т.н. каталошка цена." #. module: product #: model:product.template,name:product.product_product_3_product_template @@ -165,8 +164,8 @@ msgid "" "is used by the scheduler to order requests based on reordering delays." msgstr "" "Ова е просечното задоцнување во денови помеѓу потврдување на нарачката и " -"примање на производите за стандардниот добавувач. Планерот тоа го користи за " -"нарачките, базирани на задоцнувањата." +"примање на производите за стандардниот добавувач. Распоредувачот тоа го " +"користи за нарачките, базирани на задоцнувањата." #. module: product #: model:product.pricelist.version,name:product.ver0 @@ -202,7 +201,7 @@ msgid "" "Error! You cannot define the decimal precision of 'Account' as greater than " "the rounding factor of the company's main currency" msgstr "" -"Грешка! Децималната точност за 'Сметка' неможе да биде поголема од факторот " +"Грешка! Децималната точност за 'Сметка' не може да биде поголема од факторот " "на заокружување на валутата на компанијата." #. module: product @@ -231,7 +230,7 @@ msgid "" "Error! You cannot define a rounding factor for the company's main currency " "that is smaller than the decimal precision of 'Account'." msgstr "" -"Грешка! Факторот на заокружување на валутата на компанијата неможе да биде " +"Грешка! Факторот на заокружување на валутата на компанијата не може да биде " "помал од децималната точност на 'Сметка'." #. module: product @@ -287,7 +286,7 @@ msgstr "Пакување" msgid "" "If unchecked, it will allow you to hide the product without removing it." msgstr "" -"Доколку не е штиклирано, ви овозможува криење на производот без да го " +"Доколку не е штиклирано, ви овозможува да го сокриете производот без да го " "отстраните." #. module: product @@ -381,7 +380,7 @@ msgstr "" #. module: product #: field:product.template,product_manager:0 msgid "Product Manager" -msgstr "Продукт менаџер" +msgstr "Менаџер за производи" #. module: product #: model:product.template,name:product.product_product_7_product_template @@ -483,7 +482,7 @@ msgstr "Набавки" #. module: product #: model:res.groups,name:product.group_mrp_properties msgid "Manage Properties of Product" -msgstr "Менаџирање Својствата на производот" +msgstr "Управување со својствата на производот" #. module: product #: help:product.uom,factor:0 @@ -631,7 +630,7 @@ msgstr "PC Assemble + Custom (PC по нарачка)" #. module: product #: model:product.template,description:product.product_product_27_product_template msgid "Custom Laptop based on customer's requirement." -msgstr "Лаптоп според барањата на клиентот." +msgstr "Лаптоп според барањата на купувачот." #. module: product #: help:product.packaging,width:0 @@ -662,7 +661,7 @@ msgstr "Урнеци на производ" #. module: product #: field:product.category,parent_left:0 msgid "Left Parent" -msgstr "" +msgstr "Лев родител" #. module: product #: help:product.pricelist.item,price_max_margin:0 @@ -838,7 +837,7 @@ msgstr "Надворешен Хард диск" #. module: product #: view:product.product:0 msgid "describe the product characteristics..." -msgstr "" +msgstr "опишете ги карактеристиките на производот..." #. module: product #: help:product.template,standard_price:0 @@ -1005,12 +1004,12 @@ msgstr "Тип на цена на производ" #. module: product #: field:product.product,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: product #: field:product.product,price_extra:0 msgid "Variant Price Extra" -msgstr "Варијанта на екстра цена" +msgstr "Екстра варијанта на цена" #. module: product #: model:ir.model,name:product.model_product_supplierinfo @@ -1127,13 +1126,13 @@ msgstr "" "

\n" " Кликни за дефинирање на нов производ.\n" "

\n" -" Мора да дефинирате продукт за се што продавате, било тоа\n" -" да е физички производ, потрошлив или услуга што се нуди на\n" +" Мора да дефинирате производ за се што продавате, било тоа\n" +" да е физички производ, потрошен или услуга што се нуди на\n" " клиентите.\n" "

\n" -" Формата за производот содржи информации за упростување на " -"продажниот\n" -" процес: цена, забешеки во понудата, сметководствени " +" Формата за производот содржи информации за поедноставување " +"на продажниот\n" +" процес: цена, белешки во понудата, сметководствени " "податоци,\n" " методи за набавка, итн.\n" "

\n" @@ -1156,6 +1155,9 @@ msgid "" "Product Unit of Measure if not empty, in the default unit of measure of the " "product otherwise." msgstr "" +"Минимална количина за набавка од овој добавувач, изразена во единицата мерка " +"за производот на добавувачот доколку не е празно, во спротивно во " +"стандардната единица мерка за производот." #. module: product #: view:product.product:0 @@ -1186,7 +1188,7 @@ msgstr "Единечна цена" #. module: product #: field:product.category,parent_right:0 msgid "Right Parent" -msgstr "" +msgstr "Десен родител" #. module: product #: field:product.product,price:0 @@ -1212,7 +1214,7 @@ msgstr "USB Тастатура, QWERTY" #. module: product #: model:product.category,name:product.product_category_9 msgid "Softwares" -msgstr "Софтвер" +msgstr "Софтвери" #. module: product #: field:product.product,packaging:0 @@ -1321,7 +1323,8 @@ msgstr "Категории на единица мерка" #. module: product #: help:product.product,seller_id:0 msgid "Main Supplier who has highest priority in Supplier List." -msgstr "Главен добавувач што има јависок приоритет во листата на добавувачи." +msgstr "" +"Главен добавувач што има највисок приоритет во листата на добавувачи." #. module: product #: model:product.category,name:product.product_category_5 @@ -1349,9 +1352,8 @@ msgstr "" "

\n" " Ова е листа на сите производи класифицирани по категорија. " "За да\n" -" ги изберете сите производи поврзани со одредена категоирија " -"кликнете\n" -" на Категорија.\n" +" изберете листа од сите производи поврзани со одредена " +"категорија или подкатегорија на оваа категорија кликнете на Категорија.\n" "

\n" " " @@ -1399,7 +1401,7 @@ msgstr "Одредете ја минималната маржа врз база #. module: product #: field:product.product,name_template:0 msgid "Template Name" -msgstr "" +msgstr "Име на урнек" #. module: product #: field:product.template,weight_net:0 @@ -1428,18 +1430,18 @@ msgid "" "to this category or its children categories. Keep empty otherwise." msgstr "" "Назначи категорија на производ доколку ова правило припаѓа само на оваа " -"категорија или и на категориите што произлегуваат од неа. Во спротивно " +"категорија или на категориите што произлегуваат од неа. Во спротивно " "оставете го празно." #. module: product #: view:product.product:0 msgid "This note will be displayed on requests for quotation..." -msgstr "" +msgstr "Оваа белешка ќе биде прикажана на барањата за понуда..." #. module: product #: view:product.product:0 msgid "Inventory" -msgstr "Инвентар" +msgstr "Попис" #. module: product #: field:product.product,seller_info_id:0 @@ -1450,7 +1452,7 @@ msgstr "Информации за добавувачот" #: code:addons/product/product.py:729 #, python-format msgid "%s (copy)" -msgstr "%s (copy)" +msgstr "%s (копија)" #. module: product #: model:product.template,name:product.product_product_2_product_template @@ -1553,6 +1555,8 @@ msgid "" "This price will be considered as a price for the supplier Unit of Measure if " "any or the default Unit of Measure of the product otherwise" msgstr "" +"Оваа цена ќе биде сметана како цена за единицата мерка на добавувачот " +"доколку има таква или во спротивно стандардната единица мерка за производот" #. module: product #: field:product.template,uom_po_id:0 @@ -1788,6 +1792,9 @@ msgid "" "The minimal quantity to trigger this rule, expressed in the supplier Unit of " "Measure if any or in the default Unit of Measure of the product otherrwise." msgstr "" +"Минимална количина за активирање на ова правило, изразена во единицата мерка " +"на добавувачот доколку има таква, во спротивно во стандардната единица мерка " +"за производот." #. module: product #: selection:product.uom,uom_type:0 diff --git a/addons/product_expiry/i18n/mk.po b/addons/product_expiry/i18n/mk.po index bba01b83437..7304240b6d4 100644 --- a/addons/product_expiry/i18n/mk.po +++ b/addons/product_expiry/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-01 16:01+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template @@ -125,7 +126,7 @@ msgstr "Датум Употребливо до" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_jambon_product_template msgid "French cheese Camenbert" -msgstr "" +msgstr "French cheese Camenbert" #. module: product_expiry #: help:product.product,life_time:0 @@ -162,4 +163,4 @@ msgstr "" #. module: product_expiry #: field:product.product,alert_time:0 msgid "Product Alert Time" -msgstr "" +msgstr "Време на аларм на производ" diff --git a/addons/product_margin/i18n/mk.po b/addons/product_margin/i18n/mk.po index 0a02af8a17c..74798835f89 100644 --- a/addons/product_margin/i18n/mk.po +++ b/addons/product_margin/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-01 17:15+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: product_margin #: view:product.product:0 @@ -80,7 +81,7 @@ msgstr "Средна единечна цена" #. module: product_margin #: field:product.product,sale_num_invoiced:0 msgid "# Invoiced in Sale" -msgstr "# Фактурирано на продажба" +msgstr "# Фактурирано во продажба" #. module: product_margin #: view:product.product:0 @@ -122,7 +123,7 @@ msgstr "Збир на количини во влезни фактури" #. module: product_margin #: field:product.product,date_to:0 msgid "Margin Date To" -msgstr "" +msgstr "Датум на маржа до" #. module: product_margin #: view:product.product:0 @@ -181,6 +182,8 @@ msgstr "Нормален трошок - Вкупен трошок" msgid "" "Sum of Multiplication of Sale Catalog price and quantity of Customer Invoices" msgstr "" +"Сума од множењето на цената од продажниот каталог и количината од излезните " +"фактури" #. module: product_margin #: field:product.product,total_margin:0 @@ -212,7 +215,7 @@ msgstr "Набавки" #. module: product_margin #: field:product.product,purchase_num_invoiced:0 msgid "# Invoiced in Purchase" -msgstr "" +msgstr "# Фактурирано во набавка" #. module: product_margin #: help:product.product,expected_margin:0 diff --git a/addons/project/i18n/mk.po b/addons/project/i18n/mk.po index 545c9d7cd24..5f9c63386fc 100644 --- a/addons/project/i18n/mk.po +++ b/addons/project/i18n/mk.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2013. # Ivica Dimitrijev , 2013. +# Sofce Dimitrijeva , 2013. msgid "" 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-27 17:57+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: ЕСКОН-ИНЖЕНЕРИНГ\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -125,7 +126,7 @@ msgstr "Аналитичка сметка" #. module: project #: field:project.config.settings,group_time_work_estimation_tasks:0 msgid "Manage time estimation on tasks" -msgstr "Менаџирање на времето на завршување на задачите" +msgstr "Управување со времето на завршување на задачите" #. module: project #: help:project.project,message_summary:0 @@ -356,7 +357,7 @@ msgstr "Јуни" #. module: project #: view:project.task:0 msgid "Gantt View" -msgstr "" +msgstr "Гантов приказ" #. module: project #: selection:report.project.task.user,month:0 @@ -395,7 +396,7 @@ msgstr "Резиме" #. module: project #: view:project.task:0 msgid "Task summary..." -msgstr "" +msgstr "Резиме на задача..." #. module: project #: view:project.project:0 @@ -418,8 +419,9 @@ msgid "" "don't forget to setup the right unit of measure in your employees." msgstr "" "Ова ќе ја подеси единицата мерка која се користи во проектите и задачите.\n" -"Доколку користите распоред поврзан со проектите (project_timesheet модул), " -"не заборавајте да ја подесите правилната единица мерка за вашите вработени." +"Доколку користите временска таблица поврзана со проектите (project_timesheet " +"модул), не заборавајте да ја подесите правилната единица мерка за вашите " +"вработени." #. module: project #: field:project.task,user_id:0 @@ -513,7 +515,7 @@ msgstr "Креирај датум" #. module: project #: view:project.task:0 msgid "Add a Description..." -msgstr "" +msgstr "Додади опис..." #. module: project #: view:res.partner:0 @@ -590,7 +592,7 @@ msgstr "Задачи на чекање" #. module: project #: view:project.task.reevaluate:0 msgid "_Evaluate" -msgstr "_Evaluate" +msgstr "_Евалуирај" #. module: project #: view:report.project.task.user:0 @@ -920,7 +922,7 @@ msgstr "GTD" #. module: project #: view:project.project:0 msgid "Project Stages" -msgstr "" +msgstr "Етапи на проект" #. module: project #: help:project.task,state:0 @@ -958,7 +960,7 @@ msgid "" "Provides management of issues/bugs in projects.\n" " This installs the module project_issue." msgstr "" -"Обезбедува менаџирање на проблеми/багови во проектот.\n" +"Обезбедува управување со проблеми/багови во проектот.\n" " Ова го инсталира project_issue модулот." #. module: project @@ -984,7 +986,7 @@ msgstr "10" #. module: project #: view:project.project:0 msgid "Cancel Project" -msgstr "" +msgstr "Откажи проект" #. module: project #: help:project.project,analytic_account_id:0 @@ -1065,11 +1067,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Кликнете за да додадете нова ознака.\n" +"

\n" +" " #. module: project #: model:ir.ui.menu,name:project.menu_task_types_view msgid "Task Stages" -msgstr "Фази на задачата" +msgstr "Етапи на задача" #. module: project #: field:project.category,name:0 @@ -1216,7 +1222,7 @@ msgstr "Употребливост" #: view:report.project.task.user:0 #: field:report.project.task.user,hours_delay:0 msgid "Avg. Plan.-Eff." -msgstr "" +msgstr "Avg. Plan.-Eff." #. module: project #: field:project.task.work,user_id:0 @@ -1357,7 +1363,7 @@ msgstr "Задоцнување часови" #. module: project #: view:project.task.type:0 msgid "Add a description..." -msgstr "" +msgstr "Додади опис..." #. module: project #: view:project.project:0 @@ -1541,7 +1547,7 @@ msgstr "Прилози" #. module: project #: view:project.category:0 msgid "Issue Version" -msgstr "" +msgstr "Верзија на проблем" #. module: project #: code:addons/project/project.py:182 @@ -1921,7 +1927,7 @@ msgstr "Задача на валидација" #. module: project #: field:project.config.settings,module_project_long_term:0 msgid "Manage resources planning on gantt view" -msgstr "Менаџирање на планирањето на ресурсите според гантовиот дијаграм" +msgstr "Управување со планирањето на ресурсите според гантовиот дијаграм" #. module: project #: view:project.task:0 @@ -2070,7 +2076,7 @@ msgstr "Статус на kanban" #. module: project #: field:project.config.settings,module_project_timesheet:0 msgid "Record timesheet lines per tasks" -msgstr "Запис во распоред за секоја задача" +msgstr "Запис во временска таблица за секоја задача" #. module: project #: model:ir.model,name:project.model_report_project_task_user diff --git a/addons/project_gtd/i18n/mk.po b/addons/project_gtd/i18n/mk.po index 4a2ae00e5cd..15a63e413f1 100644 --- a/addons/project_gtd/i18n/mk.po +++ b/addons/project_gtd/i18n/mk.po @@ -2,25 +2,26 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-10 15:50+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: project_gtd #: view:project.task:0 msgid "In Progress" -msgstr "Во тек е" +msgstr "Во тек" #. module: project_gtd #: view:project.task:0 @@ -35,12 +36,12 @@ msgstr "Реактивирај" #. module: project_gtd #: help:project.task,timebox_id:0 msgid "Time-laps during which task has to be treated" -msgstr "" +msgstr "Временски кругови во текот на кои задачата треба да биде третирана" #. module: project_gtd #: help:project.gtd.timebox,sequence:0 msgid "Gives the sequence order when displaying a list of timebox." -msgstr "" +msgstr "Го дава редоследот на секвенците кога прикажува листа на timebox." #. module: project_gtd #: model:project.gtd.context,name:project_gtd.context_travel @@ -238,12 +239,12 @@ msgstr "Секвенца" #. module: project_gtd #: view:project.task:0 msgid "Show the context field" -msgstr "" +msgstr "Прикажи поле на контекст" #. module: project_gtd #: help:project.gtd.context,sequence:0 msgid "Gives the sequence order when displaying a list of contexts." -msgstr "" +msgstr "Го дава редоследот на секвенците кога прикажува листа на контексти." #. module: project_gtd #: view:project.task:0 @@ -282,6 +283,10 @@ msgid "" "you to categorize your tasks according to the context in which they have to " "be done: at the office, at home, when I take my car, etc." msgstr "" +"Контекстите се дефинирани во методологијата \"Завршување на работите\". Тоа " +"ви овозможува да ги категоризирате вашите задачи според контекстот во кој " +"тие треба да бидат направени: во канцеларија, дома, кога ја земам колата " +"и.т.н." #. module: project_gtd #: view:project.task:0 diff --git a/addons/project_issue/i18n/mk.po b/addons/project_issue/i18n/mk.po index 169311e99fb..0ef479c02a0 100644 --- a/addons/project_issue/i18n/mk.po +++ b/addons/project_issue/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-11 08:32+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -34,7 +35,7 @@ msgstr "" #. module: project_issue #: field:project.issue.report,delay_open:0 msgid "Avg. Delay to Open" -msgstr "Просечно време на доцнење за отварање" +msgstr "Просечно време на доцнење до отварање" #. module: project_issue #: view:project.issue:0 @@ -108,7 +109,7 @@ msgstr "Доколку е штиклирано, новите пораки го #. module: project_issue #: help:account.analytic.account,use_issues:0 msgid "Check this field if this project manages issues" -msgstr "Означи го ива поле доколку проектот управува со проблемите" +msgstr "Означи го ова поле доколку проектот управува со проблемите" #. module: project_issue #: field:project.issue,day_open:0 @@ -126,7 +127,7 @@ msgstr "" #. module: project_issue #: constraint:project.project:0 msgid "Error! You cannot assign escalation to the same project!" -msgstr "Грешка! Неможете да назначите ескалација на истиот проект!" +msgstr "Грешка! Не можете да назначите ескалација на истиот проект!" #. module: project_issue #: selection:project.issue,priority:0 @@ -137,7 +138,7 @@ msgstr "Највисоко" #. module: project_issue #: help:project.issue,inactivity_days:0 msgid "Difference in days between last action and current date" -msgstr "Разлика во денови помеѓу последната постапка и сегашниот датум" +msgstr "Разлика во денови помеѓу последната акција и сегашниот датум" #. module: project_issue #: view:project.issue.report:0 @@ -170,7 +171,7 @@ msgstr "Пораки" #. module: project_issue #: field:project.issue,inactivity_days:0 msgid "Days since last action" -msgstr "Денови од последната постапка" +msgstr "Денови од последната акција" #. module: project_issue #: model:ir.model,name:project_issue.model_project_project @@ -214,7 +215,7 @@ msgstr "Откажано" #. module: project_issue #: field:project.issue,description:0 msgid "Private Note" -msgstr "" +msgstr "Приватна белешка" #. module: project_issue #: field:project.issue.report,date_closed:0 @@ -273,7 +274,7 @@ msgstr "Предупредување!" #. module: project_issue #: view:project.issue:0 msgid "Edit..." -msgstr "Измени..." +msgstr "Уреди..." #. module: project_issue #: view:project.issue:0 @@ -294,7 +295,7 @@ msgstr "Статистики" #. module: project_issue #: field:project.issue,kanban_state:0 msgid "Kanban State" -msgstr "Статус на kanban" +msgstr "Kanban состојба" #. module: project_issue #: code:addons/project_issue/project_issue.py:368 @@ -321,7 +322,7 @@ msgstr "Верзија" #. module: project_issue #: field:project.issue,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: project_issue #: view:project.issue:0 @@ -333,12 +334,12 @@ msgstr "Ново" #. 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 msgid "Email" -msgstr "E-mail" +msgstr "Е-пошта" #. module: project_issue #: field:project.issue,channel_id:0 @@ -356,7 +357,7 @@ msgstr "Најниско" #: code:addons/project_issue/project_issue.py:390 #, python-format msgid "%s (copy)" -msgstr "%s (copy)" +msgstr "%s (копија)" #. module: project_issue #: view:project.issue:0 @@ -389,7 +390,7 @@ msgstr "project.issue.version" #. module: project_issue #: field:project.config.settings,fetchmail_issue:0 msgid "Create issues from an incoming email account " -msgstr "Креирај проблеми од влезна e-mail сметка " +msgstr "Креирај проблеми од сметка на влезна е-пошта " #. module: project_issue #: view:project.issue:0 @@ -411,6 +412,11 @@ 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 "" +"Овој извештај за проблемите на проектот ви овозможува да го анализирате " +"квалитетот на вашата поддршка или услугите после продажбата. Може да ги " +"следите проглемите по старост. Може да го анализирате потребното време за да " +"се отвори или затвори проблемот, бројот на разменети е-пошти и просечното " +"време потрошено по проблем." #. module: project_issue #: view:project.issue:0 @@ -436,7 +442,7 @@ msgstr "Без тема" #. module: project_issue #: model:ir.actions.act_window,name:project_issue.action_view_my_project_issue_tree msgid "My Project Issues" -msgstr "Мои проблеми со проектот" +msgstr "Проблеми со мојот проект" #. module: project_issue #: view:project.issue:0 @@ -495,7 +501,7 @@ msgstr "креира" #. module: project_issue #: field:project.issue,write_date:0 msgid "Update Date" -msgstr "Датум на ажурирање" +msgstr "Ажурирај датум" #. module: project_issue #: view:project.issue:0 @@ -521,7 +527,7 @@ msgstr "Блокирано" #. module: project_issue #: field:project.issue,user_email:0 msgid "User Email" -msgstr "Емаил на корисник" +msgstr "Е-пошта на корисник" #. module: project_issue #: view:project.issue.report:0 @@ -547,7 +553,7 @@ msgstr "" #. module: project_issue #: selection:project.issue.report,state:0 msgid "Draft" -msgstr "Шаблон" +msgstr "Нацрт" #. module: project_issue #: selection:project.issue,priority:0 @@ -564,7 +570,7 @@ msgstr "Затворено" #. module: project_issue #: field:project.issue.report,delay_close:0 msgid "Avg. Delay to Close" -msgstr "" +msgstr "Просечно време на доцнење до затварање" #. module: project_issue #: selection:project.issue,state:0 @@ -600,7 +606,7 @@ msgstr "Нормално" #. module: project_issue #: view:project.issue:0 msgid "Category:" -msgstr "Категорија" +msgstr "Категорија:" #. module: project_issue #: selection:project.issue.report,month:0 @@ -610,7 +616,7 @@ msgstr "Јуни" #. module: project_issue #: help:project.issue,message_ids:0 msgid "Messages and communication history" -msgstr "Пораки и историја на комуникација" +msgstr "Историја на пораки и комуникација" #. module: project_issue #: view:project.issue:0 @@ -625,7 +631,7 @@ msgstr "Денови до затварање" #. module: project_issue #: field:project.issue,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: project_issue #: help:project.issue,state:0 @@ -636,10 +642,10 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" -"Статусот е подесен на 'Шаблон' при креирање на случај. " -"Доколку случајот е во тек, статусот се подесува на 'Отворен'. " -" По завршувањето на случајот, статусот се подесува на 'Завршено'. " -" Доколку е потребно да се изврши проверка на случајот тогаш " +"Статусот е подесен на 'Нацрт' при креирање на случај. " +"Доколку случајот е во тек, статусот се подесува на 'Отворено'. " +" По завршувањето на случајот, статусот се подесува на 'Завршено'. " +" Доколку е потребно да се изврши проверка на случајот тогаш " "статусот се подесува на 'Во исчекување'." #. module: project_issue @@ -657,7 +663,7 @@ msgstr "Ноември" #: code:addons/project_issue/project_issue.py:492 #, python-format msgid "Customer Email" -msgstr "" +msgstr "Е-пошта на купувач" #. module: project_issue #: view:project.issue.report:0 @@ -682,7 +688,7 @@ msgstr "Јануари" #. module: project_issue #: view:project.issue:0 msgid "Feature Tracker Tree" -msgstr "" +msgstr "Дрво на тракерот на карактеристики" #. module: project_issue #: help:project.issue,email_from:0 @@ -763,17 +769,17 @@ msgstr "Да се направи" #: model:ir.model,name:project_issue.model_project_issue #: view:project.issue.report:0 msgid "Project Issue" -msgstr "" +msgstr "Проблем на проект" #. module: project_issue #: view:project.issue:0 msgid "Add an internal note..." -msgstr "" +msgstr "Додади внатрешна белешка..." #. module: project_issue #: view:project.issue:0 msgid "Cancel Issue" -msgstr "" +msgstr "Откажи проблем" #. module: project_issue #: help:project.issue,progress:0 @@ -783,7 +789,7 @@ msgstr "Пресметано како: Потрошено време / Цело #. module: project_issue #: field:project.project,issue_count:0 msgid "Unclosed Issues" -msgstr "" +msgstr "Незатворен проблем" #. module: project_issue #: view:project.issue:0 @@ -814,7 +820,7 @@ msgstr "Месец" #: field:project.issue,name:0 #: view:project.project:0 msgid "Issue" -msgstr "" +msgstr "Проблем" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_02 @@ -824,7 +830,7 @@ msgstr "" #. module: project_issue #: view:project.issue:0 msgid "Feature Tracker Search" -msgstr "" +msgstr "Пребарај тракер на карактеристики" #. module: project_issue #: view:project.issue:0 @@ -868,7 +874,7 @@ msgstr "Проблемот е креиран" #: code:addons/project_issue/project_issue.py:490 #, python-format msgid "Customer" -msgstr "" +msgstr "Купувач" #. module: project_issue #: selection:project.issue.report,month:0 @@ -884,7 +890,7 @@ msgstr "Променета етапа" #. module: project_issue #: view:project.issue:0 msgid "Feature description" -msgstr "Опис на особина" +msgstr "Опис на карактеристика" #. module: project_issue #: field:project.project,project_escalation_id:0 @@ -918,6 +924,8 @@ msgid "" "Sales team to which Case belongs to. Define " "Responsible user and Email account for mail gateway." msgstr "" +"Продажен тим на кого му припаѓа предметот. " +"Дефинирајте Одговорен корисник и сметка за е-пошта за портата за пошта." #. module: project_issue #: view:board.board:0 @@ -942,7 +950,7 @@ msgstr "⇒ Ескалирај" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_new msgid "Issue created" -msgstr "" +msgstr "Проблемот е креиран" #. module: project_issue #: field:project.issue,working_hours_close:0 @@ -957,7 +965,7 @@ msgstr "ID" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_blocked msgid "Issue blocked" -msgstr "" +msgstr "Проблемот е блокиран" #. module: project_issue #: model:ir.model,name:project_issue.model_project_issue_report @@ -1010,7 +1018,7 @@ msgstr "Времетраење" #: model:mail.message.subtype,name:project_issue.mt_issue_started #: model:mail.message.subtype,name:project_issue.mt_project_issue_started msgid "Issue Started" -msgstr "" +msgstr "Проблемот е започнат" #~ msgid "Issue Categories" #~ msgstr "Категорија на проблеми" diff --git a/addons/project_issue_sheet/i18n/mk.po b/addons/project_issue_sheet/i18n/mk.po index 76d18d910f5..fda59f6bc4d 100644 --- a/addons/project_issue_sheet/i18n/mk.po +++ b/addons/project_issue_sheet/i18n/mk.po @@ -2,26 +2,27 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-04 15:41+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: project_issue_sheet #: code:addons/project_issue_sheet/project_issue_sheet.py:57 #, python-format msgid "The Analytic Account is pending !" -msgstr "Аналитичкото конто е во состојба Чекам !" +msgstr "Аналитичката сметка е во состојба Чекам !" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_account_analytic_line @@ -31,12 +32,12 @@ msgstr "Аналитичка ставка" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_project_issue msgid "Project Issue" -msgstr "Проектна ставка" +msgstr "Проблем на проект" #. module: project_issue_sheet #: model:ir.model,name:project_issue_sheet.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "Ставка на распоред" +msgstr "Ставка на временска таблица" #. module: project_issue_sheet #: view:project.issue:0 @@ -48,7 +49,7 @@ msgstr "on_change_project(project_id)" #: field:project.issue,analytic_account_id:0 #, python-format msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: project_issue_sheet #: view:project.issue:0 @@ -64,9 +65,9 @@ msgstr "Креирај датум" #: view:project.issue:0 #: field:project.issue,timesheet_ids:0 msgid "Timesheets" -msgstr "Распоред" +msgstr "Временски таблици" #. module: project_issue_sheet #: field:hr.analytic.timesheet,issue_id:0 msgid "Issue" -msgstr "Ставка" +msgstr "Проблем" diff --git a/addons/project_long_term/i18n/mk.po b/addons/project_long_term/i18n/mk.po index c5b99eb3ffd..ac5460c5320 100644 --- a/addons/project_long_term/i18n/mk.po +++ b/addons/project_long_term/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-07 10:57+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: project_long_term #: help:project.phase,constraint_date_end:0 @@ -71,6 +72,9 @@ msgid "" "view.\n" " " msgstr "" +"За да се распоредат етапите на сите или на одреден проект. Тоа потоа отвара " +"гантов приказ.\n" +" " #. module: project_long_term #: field:project.phase,task_ids:0 @@ -192,7 +196,7 @@ msgstr "" #. module: project_long_term #: view:project.phase:0 msgid "Cancel Phase" -msgstr "" +msgstr "Откажи етапа" #. module: project_long_term #: help:account.analytic.account,use_phases:0 @@ -288,11 +292,17 @@ msgid "" "users, convert your phases into a series of tasks when you start working on " "the project." msgstr "" +"Проектот може да биде разделен на различни фази. За секоја фаза, може да " +"дефинирате распределба на корисници, да ги опишете различните задачи и да ја " +"поврзете вашата фаза до претходните и идните фази,да додадете ограничувања " +"на датумите за автоматско распоредување. Користете долгорочно планирање со " +"цел да ги планирате расположливите корисници, да ги претворите вашите фази " +"во серии од задачи кога започнувате да работите на проектот." #. module: project_long_term #: selection:project.compute.phases,target_project:0 msgid "Compute a Single Project" -msgstr "" +msgstr "Пресметај поединечен проект" #. module: project_long_term #: view:project.phase:0 @@ -325,7 +335,7 @@ msgstr "" #. module: project_long_term #: constraint:project.phase:0 msgid "Loops in phases not allowed" -msgstr "" +msgstr "Јамки во фазите не се дозволени" #. module: project_long_term #: view:project.user.allocation:0 @@ -462,7 +472,7 @@ msgstr "Месец" #. module: project_long_term #: model:ir.model,name:project_long_term.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: project_long_term #: field:project.phase,constraint_date_end:0 diff --git a/addons/project_mrp/i18n/mk.po b/addons/project_mrp/i18n/mk.po index 5e9493413ac..cf084f97c8c 100644 --- a/addons/project_mrp/i18n/mk.po +++ b/addons/project_mrp/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-11 08:07+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: project_mrp #: model:process.node,note:project_mrp.process_node_procuretasktask0 @@ -25,7 +26,7 @@ msgstr "" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_createtask0 msgid "Product type is service, then its creates the task." -msgstr "" +msgstr "Типот на производот е услуга, потоа ја креира задачата." #. module: project_mrp #: code:addons/project_mrp/project_procurement.py:92 @@ -51,12 +52,12 @@ msgstr "Производ" #. module: project_mrp #: model:process.node,name:project_mrp.process_node_saleordertask0 msgid "Sales Order Task" -msgstr "" +msgstr "Задача од налог за продажба" #. module: project_mrp #: model:process.transition,note:project_mrp.process_transition_procuretask0 msgid "if product type is 'service' then it creates the task." -msgstr "" +msgstr "доколку типот на производ е 'услуга' тогаш тој ја креира задачата." #. module: project_mrp #: model:process.transition,name:project_mrp.process_transition_ordertask0 diff --git a/addons/project_timesheet/i18n/mk.po b/addons/project_timesheet/i18n/mk.po index 8ccd42a4695..1f0375b7f40 100644 --- a/addons/project_timesheet/i18n/mk.po +++ b/addons/project_timesheet/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-12 11:21+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:57+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -58,7 +59,7 @@ msgstr "Работа на проектна задача" msgid "" "You cannot select a Analytic Account which is in Close or Cancelled state." msgstr "" -"Не може да селектирате Аналитичко конто кое е во состојба Затворено или " +"Не може да селектирате Аналитичка сметка која е во состојба Затворено или " "Откажано." #. module: project_timesheet @@ -76,7 +77,7 @@ msgstr "Октомври" #: view:project.project:0 #, python-format msgid "Timesheets" -msgstr "Распоред" +msgstr "Временски таблици" #. module: project_timesheet #: view:project.project:0 @@ -95,9 +96,9 @@ msgid "" " " msgstr "" "

\n" -"Кликнете за да додадете договор на клиент.\n" +"Кликнете за да додадете договор на купувач.\n" "

\n" -"Овде ќе ги најдете договорите поврзани со проектите на вашиот клиент\n" +"Овде ќе ги најдете договорите поврзани со проектите на вашиот купувач\n" "со цел да го следите прогресот на фактурирање.\n" "

\n" " " @@ -105,17 +106,17 @@ msgstr "" #. module: project_timesheet #: view:account.analytic.line:0 msgid "Analytic Account/Project" -msgstr "Аналитичко конто/проект" +msgstr "Аналитичка сметка/проект" #. module: project_timesheet #: view:account.analytic.line:0 msgid "Analytic account/project" -msgstr "Аналитичко конто/проект" +msgstr "Аналитичка сметка/проект" #. module: project_timesheet #: model:ir.actions.act_window,name:project_timesheet.action_account_analytic_overdue msgid "Customer Projects" -msgstr "Проекти на клиент" +msgstr "Проекти на купувач" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:89 @@ -159,7 +160,7 @@ msgid "" "Fill in the timesheet tab of the employee form." msgstr "" "Дефинирајте дневник на поврзан вработен.\n" -"Пополнете во јазичето распоред од формуларот на вработениот." +"Пополнете во јазичето за временската таблица од формуларот на вработениот." #. module: project_timesheet #: model:ir.ui.menu,name:project_timesheet.menu_hr_timesheet_sign_in @@ -211,7 +212,7 @@ msgstr "Јули" #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_timesheettask0 msgid "Complete Your Timesheet." -msgstr "Комплетирајте го вашиот распоред." +msgstr "Комплетирајте ја вашата врменска таблица." #. module: project_timesheet #: field:report.timesheet.task.user,task_hrs:0 @@ -238,14 +239,14 @@ msgstr "" " Овде ќе пронајдете распореди и нарачки кои сте ги направиле " "за договори кои може повторно да бидат фактурирани на купувачот.\n" " Доколку сакате да ги снимите новите работи за да ги " -"фактурирате, треба да го употребите менито распоред.\n" +"фактурирате, треба да го употребите менито временска таблица.\n" "

\n" " " #. module: project_timesheet #: model:process.node,name:project_timesheet.process_node_timesheettask0 msgid "Timesheet task" -msgstr "Задача на распоред" +msgstr "Задача на временска таблица" #. module: project_timesheet #: model:process.transition,name:project_timesheet.process_transition_taskencoding0 @@ -255,7 +256,7 @@ msgstr "Кодирање на задача" #. module: project_timesheet #: model:process.transition,note:project_timesheet.process_transition_filltimesheet0 msgid "Task summary is comes into the timesheet line" -msgstr "" +msgstr "Резимето на задачата доаѓа во ставка на временската таблица" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 @@ -312,12 +313,12 @@ msgstr "Партнер" #: code:addons/project_timesheet/project_timesheet.py:294 #, python-format msgid "Invalid Analytic Account !" -msgstr "Погрешно аналитичко конто !" +msgstr "Погрешна аналитичка сметка !" #. module: project_timesheet #: view:report.timesheet.task.user:0 msgid "Timesheet/Task hours Report Per Month" -msgstr "Извештај за распоред/Часови на задача по месец" +msgstr "Извештај за временска таблица/Часови на задача по месец" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:84 @@ -415,7 +416,7 @@ msgstr "" #. module: project_timesheet #: field:report.timesheet.task.user,timesheet_hrs:0 msgid "Timesheet Hours" -msgstr "Часови на распоред" +msgstr "Часови на временска таблица" #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -426,4 +427,4 @@ msgstr "Година" #. module: project_timesheet #: model:process.transition,name:project_timesheet.process_transition_filltimesheet0 msgid "Fill Timesheet" -msgstr "Пополни распоред" +msgstr "Пополни временска таблица" diff --git a/addons/purchase/i18n/mk.po b/addons/purchase/i18n/mk.po index 933ea358408..b1f1d3bba77 100644 --- a/addons/purchase/i18n/mk.po +++ b/addons/purchase/i18n/mk.po @@ -3,18 +3,19 @@ # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2013. # Ivica Dimitrijev , 2013. +# Sofce Dimitrijeva , 2013. msgid "" 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-03-12 11:24+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: ЕСКОН-ИНЖЕНЕРИНГ\n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -158,9 +159,9 @@ msgid "" msgstr "" "

\n" " Овде може да ги следите сите приеми од набавката каде \n" -" фактурирањето е \"Врз База на дојдовните пратки\" и\n" +" фактурирањето е \"Врз основа на влезни пратки\" и\n" " за кои сеуште немате примено фактура. Може да генерирате\n" -" фактура врз база на овие приеми.\n" +" фактура врз основа на овие приеми.\n" "

\n" " " @@ -173,7 +174,7 @@ msgstr "Средна цена" #. module: purchase #: view:purchase.order:0 msgid "Purchase order which are in the exception state" -msgstr "Налог за нарачка кој е фо состојба на исклучување" +msgstr "Налог за нарачка кој е во состојба на исклучување" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_view_purchase_order_group @@ -207,7 +208,7 @@ msgstr "Потврди Нарачка" #. module: purchase #: field:purchase.config.settings,module_warning:0 msgid "Alerts by products or supplier" -msgstr "Предупредувања од производ или добавувач" +msgstr "Предупредувања по производ или добавувач" #. module: purchase #: field:purchase.order,name:0 @@ -261,12 +262,12 @@ msgstr "Одобрени налози за набавка" #. module: purchase #: model:email.template,subject:purchase.email_template_edi_purchase msgid "${object.company_id.name} Order (Ref ${object.name or 'n/a' })" -msgstr "${object.company_id.name} Order (Ref ${object.name or 'n/a' })" +msgstr "${object.company_id.name} Налог (Ref ${object.name or 'n/a' })" #. module: purchase #: view:purchase.order:0 msgid "Total Untaxed amount" -msgstr "Вкупно неоданочен износ" +msgstr "Вкупно даночна основа" #. module: purchase #: view:purchase.report:0 @@ -318,7 +319,7 @@ msgstr "Налози за набавка" #: help:account.config.settings,group_analytic_account_for_purchases:0 #: help:purchase.config.settings,group_analytic_account_for_purchases:0 msgid "Allows you to specify an analytic account on purchase orders." -msgstr "Овозможува определување на аналитичка сметка за набавки." +msgstr "Овозможува определување на аналитичка сметка за налози за набавка." #. module: purchase #: model:ir.actions.act_window,help:purchase.action_invoice_pending @@ -368,12 +369,12 @@ msgstr "" #. module: purchase #: view:product.product:0 msgid "When you sell this service to a customer," -msgstr "Кога ќе ја продадете оваа услуга на клиент," +msgstr "Кога ќе ја продадете оваа услуга на купувач," #. module: purchase #: model:process.transition,note:purchase.process_transition_createpackinglist0 msgid "A pick list is generated to track the incoming products." -msgstr "Листата за требување е генерирана за да ги слди влезните производи." +msgstr "Листата за требување е генерирана за да ги следи влезните производи." #. module: purchase #: model:ir.actions.act_window,name:purchase.purchase_rfq @@ -442,7 +443,7 @@ msgstr "" #: view:purchase.order:0 #: view:purchase.order.line:0 msgid "Search Purchase Order" -msgstr "Барај налог за нарачка" +msgstr "Барај налог за набавка" #. module: purchase #: report:purchase.order:0 @@ -453,7 +454,7 @@ msgstr "Датум на барање." #: view:purchase.order:0 #: view:purchase.order.line:0 msgid "Purchase Order Lines" -msgstr "Ставки на налогот за нарачка" +msgstr "Ставки на налогот за набавка" #. module: purchase #: help:purchase.order,dest_address_id:0 @@ -461,8 +462,9 @@ msgid "" "Put an address if you want to deliver directly from the supplier to the " "customer. Otherwise, keep empty to deliver to your own company." msgstr "" -"Внесете адреса доколку сакате да ја испорачате од добавувачот до клиентот. " -"Во спротивно оставете го празно за да се испорача до вашата компанија." +"Внесете адреса доколку сакате да испорачате директно од добавувачот до " +"клиентот. Во спротивно оставете го празно за да се испорача до вашата " +"компанија." #. module: purchase #: model:ir.actions.act_window,help:purchase.purchase_line_form_action2 @@ -500,7 +502,7 @@ msgstr "Валута" #. module: purchase #: field:purchase.order,journal_id:0 msgid "Journal" -msgstr "Запис" +msgstr "Дневник" #. module: purchase #: view:board.board:0 @@ -522,7 +524,7 @@ msgstr "Налози за набавка кои вклучуваат ставк #: view:product.product:0 #: field:product.template,purchase_ok:0 msgid "Can be Purchased" -msgstr "Може да се купи" +msgstr "Може да се набави" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_action_picking_tree_in_move @@ -543,7 +545,7 @@ msgid "" msgstr "" "Референца од нарачката или понудата пратена од добавувачот. Воглавно тоа се " "користи за споредба при добивањето на производите и референцата најчесто е " -"напишана на налогот за достава пратен од добавувачот." +"напишана на испратницата испратена од добавувачот." #. module: purchase #: view:purchase.config.settings:0 @@ -713,7 +715,7 @@ msgstr "" #: view:purchase.report:0 #: field:purchase.report,nbr:0 msgid "# of Lines" -msgstr "бр. на линии" +msgstr "бр. на ставки" #. module: purchase #: code:addons/purchase/wizard/purchase_line_invoice.py:106 @@ -724,7 +726,7 @@ msgstr "Дефинирање на сметка за трошоци за прои #. module: purchase #: view:purchase.order:0 msgid "(update)" -msgstr "(update)" +msgstr "(ажурирај)" #. module: purchase #: view:purchase.order:0 @@ -741,7 +743,7 @@ msgstr "Покажува дека требувањето е завршено" #: code:addons/purchase/purchase.py:586 #, python-format msgid "Unable to cancel this purchase order." -msgstr "Неможе да се откаже налогот за набавка." +msgstr "Не може да се откаже налогот за набавка." #. module: purchase #: model:ir.ui.menu,name:purchase.menu_procurement_management_invoice @@ -802,7 +804,7 @@ msgstr "Ценовник" #. module: purchase #: selection:purchase.order,state:0 msgid "Draft PO" -msgstr "Нацрт налог за купување" +msgstr "Нацрт налог за набавка" #. module: purchase #: code:addons/purchase/purchase.py:941 @@ -889,7 +891,7 @@ msgstr "Движење на залихи" #: code:addons/purchase/purchase.py:1156 #, python-format msgid "Draft Purchase Order created" -msgstr "Налогот за набавка е креиран" +msgstr "Нацрт налогот за набавка е креиран" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_product_category_config_purchase @@ -914,7 +916,7 @@ msgstr "Датум на кој документот е креиран." #. module: purchase #: field:purchase.order,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_purchase_order_report_graph @@ -1029,7 +1031,7 @@ msgstr "Единечна цена" #: field:purchase.order,date_approve:0 #: field:purchase.report,date_approve:0 msgid "Date Approved" -msgstr "Датум одобрување" +msgstr "Датум е одобрен" #. module: purchase #: view:product.product:0 @@ -1246,13 +1248,13 @@ msgstr "" #. module: purchase #: help:purchase.order,message_ids:0 msgid "Messages and communication history" -msgstr "Пораки и историја на комуникација" +msgstr "Историја на пораки и комуникација" #. module: purchase #: field:purchase.order,warehouse_id:0 #: field:stock.picking.in,warehouse_id:0 msgid "Destination Warehouse" -msgstr "Целно складиште" +msgstr "Одредишен магацин" #. module: purchase #: code:addons/purchase/purchase.py:941 @@ -1294,12 +1296,12 @@ msgstr "Најпрво откажете ги сите приемници пов #. module: purchase #: view:purchase.order:0 msgid "Approve Order" -msgstr "Налог за одобрување" +msgstr "Одобри налог" #. module: purchase #: help:purchase.report,date:0 msgid "Date on which this document has been created" -msgstr "Датум на кој овој документ е креиран" +msgstr "Датум на кој документот е креиран" #. module: purchase #: view:purchase.order:0 @@ -1473,8 +1475,8 @@ msgid "" " products." msgstr "" "за купување на бараната количина.\n" -" Налогот за достава ќе биде спремен кога ќе " -"пристигнат производите." +" Испратницата ќе биде спремна кога ќе пристигнат " +"производите." #. module: purchase #: view:product.product:0 @@ -1588,7 +1590,7 @@ msgstr "Направи фактура од ставка во налог за н #: code:addons/purchase/purchase.py:1141 #, python-format msgid "PO: %s" -msgstr "Налог за купување: %s" +msgstr "Налог за набавка: %s" #. module: purchase #: model:process.node,note:purchase.process_node_packinginvoice0 @@ -1889,12 +1891,12 @@ msgstr "" #: view:purchase.report:0 #: field:purchase.report,location_id:0 msgid "Destination" -msgstr "Дестинација" +msgstr "Одредиште" #. module: purchase #: field:purchase.order,dest_address_id:0 msgid "Customer Address (Direct Delivery)" -msgstr "Адреса на клиент (Директна достава)" +msgstr "Адреса на купувач (Директна достава)" #. module: purchase #: model:ir.actions.client,name:purchase.action_client_purchase_menu @@ -1905,7 +1907,7 @@ msgstr "Отвори го менито за набавки" #: code:addons/purchase/purchase.py:1028 #, python-format msgid "No address defined for the supplier" -msgstr "Нема дефинирано адреса(и) за овој добвавувач" +msgstr "Нема дефинирано адреса(и) за овој добавувач" #. module: purchase #: field:purchase.order,company_id:0 diff --git a/addons/purchase_requisition/i18n/mk.po b/addons/purchase_requisition/i18n/mk.po index 09303b5838d..daea0b97503 100644 --- a/addons/purchase_requisition/i18n/mk.po +++ b/addons/purchase_requisition/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-12 11:53+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: purchase_requisition #: view:purchase.requisition:0 @@ -25,7 +26,7 @@ msgstr "Барај понуда" #. module: purchase_requisition #: selection:purchase.requisition,exclusive:0 msgid "Multiple Requisitions" -msgstr "Повеќекратно требување" +msgstr "Повеќекратни требувања" #. module: purchase_requisition #: field:purchase.requisition.line,product_uom_id:0 diff --git a/addons/report_intrastat/i18n/mk.po b/addons/report_intrastat/i18n/mk.po index b23c3bd571d..2c165f7a8c7 100644 --- a/addons/report_intrastat/i18n/mk.po +++ b/addons/report_intrastat/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-12 11:59+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -297,7 +298,7 @@ msgstr "Година" #. module: report_intrastat #: report:account.invoice.intrastat:0 msgid "Supplier Refund" -msgstr "Поврати на добавувач" +msgstr "Поврат на добавувач" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_webkit/i18n/mk.po b/addons/report_webkit/i18n/mk.po index 53ff5e6d1da..02a057aa5d1 100644 --- a/addons/report_webkit/i18n/mk.po +++ b/addons/report_webkit/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-12 12:34+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:59+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: report_webkit #: view:ir.actions.report.xml:0 @@ -347,7 +348,7 @@ msgstr "Додади копче печати" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "A9 13 37 x 52 mm" -msgstr "Copy text \t A9 13 37 x 52 mm" +msgstr "A9 13 37 x 52 mm" #. module: report_webkit #: model:ir.model,name:report_webkit.model_res_company @@ -435,7 +436,7 @@ msgstr "Не беше обезбедена порака за дијагноза" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "A3 8 297 x 420 mm" -msgstr "Copy text \t A3 8 297 x 420 mm" +msgstr "A3 8 297 x 420 mm" #. module: report_webkit #: field:ir.actions.report.xml,report_webkit_data:0 @@ -471,7 +472,7 @@ msgstr "Име" #. module: report_webkit #: selection:ir.header_webkit,format:0 msgid "A5 9 148 x 210 mm" -msgstr "Copy text \t A5 9 148 x 210 mm" +msgstr "A5 9 148 x 210 mm" #. module: report_webkit #: selection:ir.header_webkit,format:0 diff --git a/addons/sale/i18n/ko.po b/addons/sale/i18n/ko.po index 19990126c7b..12e80234e45 100644 --- a/addons/sale/i18n/ko.po +++ b/addons/sale/i18n/ko.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-03-04 08:37+0000\n" +"PO-Revision-Date: 2013-03-29 04:08+0000\n" "Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 06:00+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: sale @@ -239,7 +239,7 @@ msgstr "올바르지 않은 데이터" #. module: sale #: view:sale.order.line:0 msgid "Cancel Line" -msgstr "" +msgstr "입력줄 취소" #. module: sale #: help:sale.config.settings,group_discount_per_so_line:0 @@ -387,7 +387,7 @@ msgstr "거짓" #. module: sale #: view:sale.order:0 msgid "Terms and conditions..." -msgstr "" +msgstr "약관..." #. module: sale #: help:sale.advance.payment.inv,advance_payment_method:0 @@ -445,7 +445,7 @@ msgstr "입력줄 개수" msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." -msgstr "" +msgstr "대화 요약 (메시지 개수, ...)을 내포함. 이 요약은 간판 화면에 삽입할 수 있도록 html 형식으로 직접 작성됩니다." #. module: sale #: help:sale.order.line,sequence:0 diff --git a/addons/sale/i18n/mk.po b/addons/sale/i18n/mk.po index 6c1599999ef..e08837eb8a6 100644 --- a/addons/sale/i18n/mk.po +++ b/addons/sale/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-12 12:47+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: OpenERP Macedonia \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -39,7 +38,7 @@ msgstr "Контролна табла за продажби" #: code:addons/sale/wizard/sale_make_invoice_advance.py:92 #, python-format msgid "There is no income account defined as global property." -msgstr "" +msgstr "Нема дефинирано сметка за приходи како општо својство." #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_tree2 @@ -87,7 +86,7 @@ msgid "" " It installs the account_analytic_analysis module." msgstr "" "Дозволува да ги дефинирате условите на договорот со вашиот клиент: метод на " -"фактурирање (фиксна цена, по распоред, авансна фактура), точна цена " +"фактурирање (фиксна цена, по временска таблица, авансна фактура), точна цена " "(650eur/дневно за програмер), времетраење (едногодишен договор за поддршка). " "Ќе може да го следите напредокот на договорот и фактурата автоматски. Тоа го " "инсталира модулот account_analytic_analysis." @@ -194,7 +193,7 @@ msgstr "Адреса на испорака" #: field:sale.report,analytic_account_id:0 #: field:sale.shop,project_id:0 msgid "Analytic Account" -msgstr "Аналитичко конто" +msgstr "Аналитичка сметка" #. module: sale #: field:sale.config.settings,module_sale_journal:0 @@ -283,7 +282,7 @@ msgstr "Даноци" #. module: sale #: field:sale.order,amount_untaxed:0 msgid "Untaxed Amount" -msgstr "Неоданочен износ" +msgstr "Даночна основа" #. module: sale #: field:sale.config.settings,module_project:0 @@ -329,10 +328,10 @@ msgid "" " This installs the module analytic_user_function." msgstr "" "Дозволува да се дефинира што е стандардна функција на конкретен корисник на " -"дадено конто. Ова најчесто се користи кога корисникот го кодира својот " -"распоред. Овие вредности се превземени и полињата се пополнети автоматски. " -"Но можноста за промена на овие вредности е сеуште достапна. Ова го инсталира " -"модулот функција на аналитички корисник." +"дадено конто. Ова најчесто се користи кога корисникот ја кодира својата " +"временска таблица. Овие вредности се превземени и полињата се пополнети " +"автоматски. Но можноста за промена на овие вредности е сеуште достапна. Ова " +"го инсталира модулот функција на аналитички корисник." #. module: sale #: selection:sale.order,state:0 @@ -463,7 +462,7 @@ msgstr "Датум на потврдување" #: view:sale.report:0 #: field:sale.report,nbr:0 msgid "# of Lines" -msgstr "# од линии" +msgstr "# од ставки" #. module: sale #: help:sale.order,message_summary:0 @@ -557,7 +556,7 @@ msgid "" "Allows to manage different prices based on rules per category of customers.\n" "Example: 10% for retailers, promotion of 5 EUR on this product, etc." msgstr "" -"Ви дозволува да ги менаџирате различните цени врз основа на правилата по " +"Ви дозволува да управувате со различните цени врз основа на правилата по " "категорија на клиенти. На пример: 10% за трговци на мало, промоција од 5 EUR " "за овој производ и др." @@ -679,8 +678,8 @@ msgid "" " This installs the module sale_journal." msgstr "" "Ви дозволува да ги категоризирате вашите продажби и испораки (требувања) " -"помеѓу различни картици, и да изведете групни операции на картиците. Ова го " -"инсталира модулот картица за продажба." +"помеѓу различни дневници, и да изведете групни операции врз дневниците. Ова " +"го инсталира модулот sale_journal." #. module: sale #: help:sale.make.invoice,grouped:0 @@ -803,9 +802,10 @@ msgstr "" "*Статусот 'Нацрт' е поставен кога поврзаниот налог за продажба е во состојба " "нацрт. *Статусот 'Потврдено' е поставен кога поврзаниот налог за продажба е " "потврден. *Статусот 'Исклучок' е поставен кога поврзаниот налог за продажба " -"е поставек како исклучок. *Статусот 'Завршено' е поставен кога ставката од " -"налогот за продажба е одбрана. *Статусот 'Откажано' е поставен кога " -"корисникот го откажува поврзаниот налог за продажба." +"е поставек како исклучок. \n" +"*Статусот 'Завршено' е поставен кога ставката од налогот за продажба е " +"одбрана. *Статусот 'Откажано' е поставен кога корисникот го откажува " +"поврзаниот налог за продажба." #. module: sale #: code:addons/sale/sale.py:510 @@ -990,7 +990,7 @@ msgstr "Декември" #. module: sale #: view:sale.config.settings:0 msgid "Contracts Management" -msgstr "Менаџирање со договори" +msgstr "Управување со договори" #. module: sale #: view:sale.order.line:0 @@ -1319,8 +1319,8 @@ msgid "" " This installs the module sale_stock." msgstr "" "Ви дозволува да направите барање за понуда, налог за продажба со користење " -"на различна политика за нарачки и менаџирање на поврзана залиха. Ова го " -"инсталира модулот продажба_залиха." +"на различна политика за нарачки и управување со поврзаната залиха. Ова го " +"инсталира модулот sale_stock." #. module: sale #: help:sale.advance.payment.inv,product_id:0 @@ -1649,7 +1649,7 @@ msgid "" " " msgstr "" "

\n" -" Ова е листа на секоја ставка од налогот за предажба која " +" Ова е листа на секоја ставка од налогот за продажба која " "треба да биде фактурирана. \n" " Може да ги фактурирате налозите за продажба парцијално, по " "ставки од налогот за продажба. \n" @@ -1667,7 +1667,7 @@ msgstr "Адреса на испорака :" #: code:addons/sale/sale.py:369 #, python-format msgid "Please define sales journal for this company: \"%s\" (id:%d)." -msgstr "Дефинирајте картица за продажби за оваа компанија: \"%s\" (id:%d)." +msgstr "Дефинирајте дневник за продажба за оваа компанија: \"%s\" (id:%d)." #. module: sale #: view:sale.advance.payment.inv:0 diff --git a/addons/sale_crm/i18n/ko.po b/addons/sale_crm/i18n/ko.po index f312debc935..f4e36c68750 100644 --- a/addons/sale_crm/i18n/ko.po +++ b/addons/sale_crm/i18n/ko.po @@ -8,67 +8,67 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-28 07:36+0000\n" +"Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "충분하지 않은 데이터!" #. module: sale_crm #: view:crm.lead:0 #: view:crm.make.sale:0 msgid "Convert to Quotation" -msgstr "" +msgstr "견적으로 전환" #. module: sale_crm #: model:ir.model,name:sale_crm.model_account_invoice_report msgid "Invoices Statistics" -msgstr "" +msgstr "송장 통계" #. module: sale_crm #: field:crm.make.sale,close:0 msgid "Mark Won" -msgstr "" +msgstr "수주 성공으로 표시" #. module: sale_crm #: field:res.users,default_section_id:0 msgid "Default Sales Team" -msgstr "" +msgstr "기본 영업팀" #. module: sale_crm #: view:sale.order:0 msgid "My Sales Team(s)" -msgstr "" +msgstr "내 영업팀" #. module: sale_crm #: model:ir.model,name:sale_crm.model_res_users msgid "Users" -msgstr "" +msgstr "사용자" #. module: sale_crm #: help:crm.make.sale,close:0 msgid "" "Check this to close the opportunity after having created the sales order." -msgstr "" +msgstr "판매 주문을 생성한 후 기회를 마감하기 위해 이것을 체크하십시오." #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_sent msgid "Quotation Send" -msgstr "" +msgstr "견적 보내기" #. module: sale_crm #: field:sale.order,categ_ids:0 msgid "Categories" -msgstr "" +msgstr "분류" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:124 @@ -85,45 +85,45 @@ msgstr "고객" #. module: sale_crm #: view:crm.make.sale:0 msgid "_Create" -msgstr "" +msgstr "_Create" #. module: sale_crm #: model:ir.model,name:sale_crm.model_crm_make_sale msgid "Make sales" -msgstr "" +msgstr "영업하기" #. module: sale_crm #: model:ir.model,name:sale_crm.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "송장" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:93 #, python-format msgid "Opportunity: %s" -msgstr "" +msgstr "기회: %s" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:110 #, python-format msgid "Opportunity has been converted to the quotation %s." -msgstr "" +msgstr "기회가 %s 견적으로 전환됨." #. module: sale_crm #: field:crm.make.sale,shop_id:0 msgid "Shop" -msgstr "샵" +msgstr "매장" #. module: sale_crm #: code:addons/sale_crm/wizard/crm_make_sale.py:90 #, python-format msgid "No addresse(s) defined for this customer." -msgstr "" +msgstr "이 고객의 주소가 정의되지 않았음." #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_confirmed msgid "Sales Order Confirmed" -msgstr "" +msgstr "판매 주문이 확정됨" #. module: sale_crm #: view:account.invoice:0 @@ -132,17 +132,17 @@ msgstr "" #: view:sale.order:0 #: field:sale.order,section_id:0 msgid "Sales Team" -msgstr "" +msgstr "영업팀" #. module: sale_crm #: view:crm.lead:0 msgid "Create Quotation" -msgstr "" +msgstr "견적 생성" #. module: sale_crm #: model:ir.actions.act_window,name:sale_crm.action_crm_make_sale msgid "Make Quotation" -msgstr "견적하기" +msgstr "견적 작성" #. module: sale_crm #: view:crm.make.sale:0 @@ -152,9 +152,9 @@ msgstr "취소" #. module: sale_crm #: model:ir.model,name:sale_crm.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "판매 주문" #. module: sale_crm #: view:crm.make.sale:0 msgid "or" -msgstr "" +msgstr "또는" diff --git a/addons/sale_crm/i18n/mk.po b/addons/sale_crm/i18n/mk.po index 524a4c260eb..7fb32755083 100644 --- a/addons/sale_crm/i18n/mk.po +++ b/addons/sale_crm/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:39+0000\n" -"PO-Revision-Date: 2013-03-02 10:17+0000\n" -"Last-Translator: Ivica Dimitrijev \n" -"Language-Team: OpenERP Macedonia \n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -61,12 +60,13 @@ msgstr "Корисници" #: help:crm.make.sale,close:0 msgid "" "Check this to close the opportunity after having created the sales order." -msgstr "Штиклирај за затварање на можностите по завршувањето на нарачката." +msgstr "" +"Штиклирај за затварање на можностите по креирањето на налогот за продажба." #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_sent msgid "Quotation Send" -msgstr "Испраќање на цитат" +msgstr "Цитатот е испратен" #. module: sale_crm #: field:sale.order,categ_ids:0 @@ -88,7 +88,7 @@ msgstr "Купувач" #. module: sale_crm #: view:crm.make.sale:0 msgid "_Create" -msgstr "_Create" +msgstr "_Креирај" #. module: sale_crm #: model:ir.model,name:sale_crm.model_crm_make_sale @@ -121,12 +121,12 @@ msgstr "Продавница" #: code:addons/sale_crm/wizard/crm_make_sale.py:90 #, python-format msgid "No addresse(s) defined for this customer." -msgstr "Нема дефинирано адреса(и) за овој клиент." +msgstr "Нема дефинирано адреса(и) за овој купувач." #. module: sale_crm #: model:mail.message.subtype,name:sale_crm.mt_salesteam_order_confirmed msgid "Sales Order Confirmed" -msgstr "Потврдена е нарачката за продажба" +msgstr "Потврден е налогот за продажба" #. module: sale_crm #: view:account.invoice:0 @@ -160,4 +160,4 @@ msgstr "Налог за продажба" #. module: sale_crm #: view:crm.make.sale:0 msgid "or" -msgstr "or" +msgstr "или" diff --git a/addons/sale_journal/i18n/ko.po b/addons/sale_journal/i18n/ko.po index f139d7a7650..2ef6473c3f8 100644 --- a/addons/sale_journal/i18n/ko.po +++ b/addons/sale_journal/i18n/ko.po @@ -8,24 +8,24 @@ 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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-28 07:38+0000\n" +"Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 msgid "Note" -msgstr "노트" +msgstr "메모" #. module: sale_journal #: field:res.partner,property_invoice_type:0 msgid "Invoicing Type" -msgstr "" +msgstr "송장 발행 유형" #. module: sale_journal #: help:res.partner,property_invoice_type:0 @@ -41,7 +41,7 @@ msgstr "판매 & 구매" #. module: sale_journal #: view:res.partner:0 msgid "Invoicing" -msgstr "" +msgstr "송장 발행" #. module: sale_journal #: model:ir.model,name:sale_journal.model_stock_picking_in @@ -58,34 +58,34 @@ msgstr "" #. module: sale_journal #: view:sale_journal.invoice.type:0 msgid "Notes" -msgstr "노트" +msgstr "메모" #. module: sale_journal #: field:sale_journal.invoice.type,invoicing_method:0 msgid "Invoicing method" -msgstr "인보이싱 방식" +msgstr "송장 발행 방식" #. module: sale_journal #: model:ir.model,name:sale_journal.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "피킹 리스트" #. module: sale_journal #: model:ir.actions.act_window,name:sale_journal.action_definition_journal_invoice_type #: model:ir.model,name:sale_journal.model_sale_journal_invoice_type #: model:ir.ui.menu,name:sale_journal.menu_definition_journal_invoice_type msgid "Invoice Types" -msgstr "인보이스 타입" +msgstr "송장 유형" #. module: sale_journal #: selection:sale_journal.invoice.type,invoicing_method:0 msgid "Non grouped" -msgstr "그룹화 안됨" +msgstr "분류되지 않음" #. module: sale_journal #: selection:sale_journal.invoice.type,invoicing_method:0 msgid "Grouped" -msgstr "" +msgstr "분류됨" #. module: sale_journal #: model:ir.actions.act_window,help:sale_journal.action_definition_journal_invoice_type @@ -98,7 +98,7 @@ msgstr "" #. module: sale_journal #: help:sale.order,invoice_type_id:0 msgid "Generate invoice based on the selected option." -msgstr "" +msgstr "선택한 옵션에 근거하여 송장을 생성" #. module: sale_journal #: view:sale.order:0 @@ -112,7 +112,7 @@ msgstr "" #: view:stock.picking.out:0 #: field:stock.picking.out,invoice_type_id:0 msgid "Invoice Type" -msgstr "인보이스 타입" +msgstr "송장 유형" #. module: sale_journal #: field:sale_journal.invoice.type,active:0 @@ -122,14 +122,14 @@ msgstr "활성" #. module: sale_journal #: model:ir.model,name:sale_journal.model_res_partner msgid "Partner" -msgstr "" +msgstr "협력업체" #. module: sale_journal #: model:ir.model,name:sale_journal.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "판매 주문" #. module: sale_journal #: model:ir.model,name:sale_journal.model_stock_picking_out msgid "Delivery Orders" -msgstr "" +msgstr "배송 주문" diff --git a/addons/sale_journal/i18n/mk.po b/addons/sale_journal/i18n/mk.po index 197237926a2..739ef357694 100644 --- a/addons/sale_journal/i18n/mk.po +++ b/addons/sale_journal/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-01 14:34+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: sale_journal #: field:sale_journal.invoice.type,note:0 @@ -38,7 +39,7 @@ msgstr "" #. module: sale_journal #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "Продажба и набавки" +msgstr "Продажби и набавки" #. module: sale_journal #: view:res.partner:0 @@ -99,7 +100,7 @@ msgid "" "your customer's needs: daily, each Wednesday, monthly, etc." msgstr "" "Типовите на фактура за користат за партнерите, налозите за продажба и " -"налозите за испорака. Може да креирате специфичен дневник за фактурирање во " +"испратниците. Може да креирате специфичен дневник за фактурирање во " "согласност со потребите на клиентот: дневно, секоја Среда, месечно и.т.н." #. module: sale_journal @@ -139,4 +140,4 @@ msgstr "Налог за продажба" #. module: sale_journal #: model:ir.model,name:sale_journal.model_stock_picking_out msgid "Delivery Orders" -msgstr "Налози за испорака" +msgstr "Испратници" diff --git a/addons/sale_order_dates/i18n/mk.po b/addons/sale_order_dates/i18n/mk.po index 7c1a88ab7ce..0f1cca20d7a 100644 --- a/addons/sale_order_dates/i18n/mk.po +++ b/addons/sale_order_dates/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-01 15:03+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: sale_order_dates #: view:sale.order:0 @@ -40,7 +41,7 @@ msgstr "Датум на кој е креирано требувањето." #. module: sale_order_dates #: help:sale.order,requested_date:0 msgid "Date requested by the customer for the sale." -msgstr "Датум кој се бара од клиентот за продажба." +msgstr "Датум кој се бара од купувачот за продажбата." #. module: sale_order_dates #: field:sale.order,requested_date:0 @@ -55,4 +56,4 @@ msgstr "Налог за продажба" #. module: sale_order_dates #: help:sale.order,commitment_date:0 msgid "Committed date for delivery." -msgstr "" +msgstr "Закажан датум за испорака." diff --git a/addons/sale_stock/i18n/ko.po b/addons/sale_stock/i18n/ko.po index 07fff8b3b47..a6aaf9ed9c9 100644 --- a/addons/sale_stock/i18n/ko.po +++ b/addons/sale_stock/i18n/ko.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:39+0000\n" -"PO-Revision-Date: 2013-02-27 09:06+0000\n" +"PO-Revision-Date: 2013-03-28 07:49+0000\n" "Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 06:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: sale_stock @@ -74,14 +74,14 @@ msgstr "검증" #. module: sale_stock #: view:sale.order:0 msgid "Cancel Order" -msgstr "" +msgstr "주문 취소" #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:207 #, python-format msgid "" "You must first cancel all delivery order(s) attached to this sales order." -msgstr "" +msgstr "먼저 이 판매 주문에 첨부된 모든 배송 주문을 취소해야 합니다." #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_saleprocurement0 @@ -109,7 +109,7 @@ msgstr "오류!" #. module: sale_stock #: field:sale.order,picking_policy:0 msgid "Shipping Policy" -msgstr "선적 정책" +msgstr "배송 정책" #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:616 @@ -122,7 +122,7 @@ msgstr "" #. module: sale_stock #: model:ir.ui.menu,name:sale_stock.menu_action_shop_form msgid "Shop" -msgstr "샵" +msgstr "매장" #. module: sale_stock #: model:process.node,note:sale_stock.process_node_saleorderprocurement0 @@ -148,14 +148,14 @@ msgstr "프로젝트 타임시트" #. module: sale_stock #: field:sale.config.settings,group_sale_delivery_address:0 msgid "Allow a different address for delivery and invoicing " -msgstr "" +msgstr "배송 및 송장 발행에 다른 주소를 허용 " #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:546 #: code:addons/sale_stock/sale_stock.py:597 #, python-format msgid "Configuration Error!" -msgstr "구성 오류!" +msgstr "설정 오류!" #. module: sale_stock #: model:process.node,name:sale_stock.process_node_saleprocurement0 @@ -165,12 +165,12 @@ msgstr "조달 주문" #. module: sale_stock #: model:ir.actions.act_window,name:sale_stock.res_partner_rule_children msgid "Contact Details" -msgstr "" +msgstr "연락처 상세 내용" #. module: sale_stock #: selection:sale.config.settings,default_order_policy:0 msgid "Invoice based on deliveries" -msgstr "배송 기준으로 송장 발행" +msgstr "배송 기준으로 발행된 송장" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_order @@ -222,7 +222,7 @@ msgstr "할당" #. module: sale_stock #: field:sale.config.settings,default_order_policy:0 msgid "The default invoicing method is" -msgstr "기본 송장 발행 방식:" +msgstr "기본 송장의 발행 방식:" #. module: sale_stock #: field:sale.order.line,delay:0 @@ -271,7 +271,7 @@ msgstr "조달" #: field:sale.report,shipped:0 #: field:sale.report,shipped_qty_1:0 msgid "Shipped" -msgstr "배송 완료" +msgstr "배송됨" #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:240 @@ -291,17 +291,17 @@ msgstr "" #. module: sale_stock #: help:sale.config.settings,group_mrp_properties:0 msgid "Allows you to tag sales order lines with properties." -msgstr "" +msgstr "판매 주문 입력줄을 속성과 함께 태그할 수 있도록 허용함." #. module: sale_stock #: field:sale.config.settings,group_invoice_deli_orders:0 msgid "Generate invoices after and based on delivery orders" -msgstr "" +msgstr "배송 주문 이후 또는 기준으로 송장 생성" #. module: sale_stock #: field:sale.config.settings,module_delivery:0 msgid "Allow adding shipping costs" -msgstr "배송비를 추가할 수 있도록 함" +msgstr "배송비를 추가할 수 있도록 허용" #. module: sale_stock #: view:sale.order:0 @@ -337,7 +337,7 @@ msgstr "" #. module: sale_stock #: model:res.groups,name:sale_stock.group_invoice_deli_orders msgid "Enable Invoicing Delivery orders" -msgstr "" +msgstr "배송 주문에 대한 송장 발행을 활성화" #. module: sale_stock #: field:res.company,security_lead:0 @@ -347,31 +347,31 @@ msgstr "" #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_saleorderprocurement0 msgid "Procurement of sold material" -msgstr "" +msgstr "고체 물질의 조달" #. module: sale_stock #: help:sale.order,picking_policy:0 msgid "" "Pick 'Deliver each product when available' if you allow partial delivery." -msgstr "" +msgstr "일부 배송을 허용할 경우, '가용여부에 따라 각각의 상품을 배송'을 선택하십시오." #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:206 #, python-format msgid "Cannot cancel sales order!" -msgstr "" +msgstr "판매 주문을 취소할 수 없음!" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_shop msgid "Sales Shop" -msgstr "" +msgstr "판매 매장" #. module: sale_stock #: help:sale.order,shipped:0 msgid "" "It indicates that the sales order has been delivered. This field is updated " "only after the scheduler(s) have been launched." -msgstr "" +msgstr "판매 주문이 배송되었음을 표시합니다. 해당 필드는 스케줄러가 시작된 이후에만 업데이트됩니다." #. module: sale_stock #: field:sale.order.line,property_ids:0 @@ -381,23 +381,23 @@ msgstr "속성" #. module: sale_stock #: field:sale.config.settings,group_mrp_properties:0 msgid "Product properties on order lines" -msgstr "" +msgstr "주문 입력줄의 상품 속성" #. module: sale_stock #: help:sale.config.settings,default_order_policy:0 msgid "" "You can generate invoices based on sales orders or based on shippings." -msgstr "" +msgstr "판매 주문 또는 배송 기준으로 송장을 생성할 수 있습니다." #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_report msgid "Sales Orders Statistics" -msgstr "" +msgstr "판매 주문 통계" #. module: sale_stock #: model:ir.model,name:sale_stock.model_res_company msgid "Companies" -msgstr "" +msgstr "업체" #. module: sale_stock #: help:sale.config.settings,task_work:0 @@ -416,14 +416,14 @@ msgstr "" msgid "" "Allows you to specify different delivery and invoice addresses on a sales " "order." -msgstr "" +msgstr "판매 주문에 각기 다른 배송 및 송장 발행 주소를 지정할 수 있도록 허용." #. module: sale_stock #: model:process.node,note:sale_stock.process_node_saleprocurement0 msgid "" "One Procurement order for each sales order line and for each of the " "components." -msgstr "" +msgstr "각 판매 주문 입력줄 및 각 부품마다 하나의 조달 주문이 생성됨." #. module: sale_stock #: model:process.transition.action,name:sale_stock.process_transition_action_assign0 @@ -434,7 +434,7 @@ msgstr "할당" #: code:addons/sale_stock/sale_stock.py:592 #, python-format msgid "Not enough stock ! : " -msgstr "" +msgstr "재고가 부족함 ! : " #. module: sale_stock #: help:sale.order.line,delay:0 @@ -454,12 +454,12 @@ msgstr "" #. module: sale_stock #: selection:sale.config.settings,default_order_policy:0 msgid "Invoice based on sales orders" -msgstr "" +msgstr "판매 주문 기준으로 발행된 송장" #. module: sale_stock #: model:process.node,name:sale_stock.process_node_invoiceafterdelivery0 msgid "Invoice" -msgstr "인보이스" +msgstr "송장" #. module: sale_stock #: model:process.transition.action,name:sale_stock.process_transition_action_cancel1 @@ -478,12 +478,12 @@ msgstr "" #. module: sale_stock #: field:sale.order.line,number_packages:0 msgid "Number Packages" -msgstr "" +msgstr "포장 번호 부여" #. module: sale_stock #: field:sale.order,shipped:0 msgid "Delivered" -msgstr "" +msgstr "배송됨" #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_invoiceafterdelivery0 diff --git a/addons/sale_stock/i18n/mk.po b/addons/sale_stock/i18n/mk.po index 13be3f4bbcf..a51ba7c9e69 100644 --- a/addons/sale_stock/i18n/mk.po +++ b/addons/sale_stock/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:39+0000\n" -"PO-Revision-Date: 2013-03-12 13:02+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: OpenERP Macedonia \n" +"Language-Team: ESKON-INZENERING\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:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -26,19 +25,19 @@ msgid "" "To allow your salesman to make invoices for Delivery Orders using the menu " "'Deliveries to Invoice'." msgstr "" -"Да се дозволи продавачот да прави фактури за испорачаните нарачки користејќи " -"го менито 'Фактури од испораките'" +"Да се дозволи продавачот да прави фактури за испратниците користејќи го " +"менито 'Испораки за фактурирање'" #. module: sale_stock #: model:process.node,name:sale_stock.process_node_deliveryorder0 msgid "Delivery Order" -msgstr "Испорачана нарачка" +msgstr "Испратница" #. module: sale_stock #: model:ir.actions.act_window,name:sale_stock.outgoing_picking_list_to_invoice #: model:ir.ui.menu,name:sale_stock.menu_action_picking_list_to_invoice msgid "Deliveries to Invoice" -msgstr "Фактури од испораки" +msgstr "Испораки за фактурирање" #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:544 @@ -68,7 +67,7 @@ msgstr "" #. module: sale_stock #: model:process.node,note:sale_stock.process_node_packinglist0 msgid "Document of the move to the output or to the customer." -msgstr "" +msgstr "Документ за движењето кон излезот или кон купувачот." #. module: sale_stock #: field:sale.config.settings,group_multiple_shops:0 @@ -90,7 +89,8 @@ msgstr "Откажи налог" #, python-format msgid "" "You must first cancel all delivery order(s) attached to this sales order." -msgstr "Морате прво да ги откажете порачките прикачани на овааа нарачка." +msgstr "" +"Морате прво да ги откажете испратниците прикачани на овој налог за продажба." #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_saleprocurement0 @@ -129,7 +129,7 @@ msgid "" "You cannot make an advance on a sales order that is " "defined as 'Automatic Invoice after delivery'." msgstr "" -"Неможе да се промени нарачката тоа е дефинирано како " +"Не може да се промени нарачката тоа е дефинирано како " "'Автоматско креирање фактура по испорака'." #. module: sale_stock @@ -173,7 +173,7 @@ msgstr "Грешка во конфигурацијата!" #. module: sale_stock #: model:process.node,name:sale_stock.process_node_saleprocurement0 msgid "Procurement Order" -msgstr "Ред за набавка" +msgstr "Налог за набавка" #. module: sale_stock #: model:ir.actions.act_window,name:sale_stock.res_partner_rule_children @@ -183,7 +183,7 @@ msgstr "Детали за контакт" #. module: sale_stock #: selection:sale.config.settings,default_order_policy:0 msgid "Invoice based on deliveries" -msgstr "Фактура врз база на испорака" +msgstr "Фактура врз база на испораки" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_order @@ -194,13 +194,13 @@ msgstr "Налог за продажба" #. module: sale_stock #: model:ir.model,name:sale_stock.model_stock_picking_out msgid "Delivery Orders" -msgstr "Испорачана нарачка" +msgstr "Испратници" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_order_line #: field:stock.move,sale_line_id:0 msgid "Sales Order Line" -msgstr "Ставка од налог за нарачка" +msgstr "Ставка од налог за продажба" #. module: sale_stock #: model:process.transition,note:sale_stock.process_transition_packing0 @@ -219,7 +219,7 @@ msgstr "" msgid "" "This is the days added to what you promise to customers for security purpose" msgstr "" -"Ова се денови додадени на она што сте му ватиле на купувачот заради " +"Ова се денови додадени на она што сте му ветиле на купувачот заради " "безбедносна цел" #. module: sale_stock @@ -255,7 +255,7 @@ msgstr "Документ за движењето до купувачот." #. module: sale_stock #: view:sale.order:0 msgid "View Delivery Order" -msgstr "Види ја испорачаната нарачка" +msgstr "Види ја испратницата" #. module: sale_stock #: field:sale.order.line,move_ids:0 @@ -279,7 +279,7 @@ msgid "" "pick' or 'Invoice on order after delivery'." msgstr "" "Фактурата се креира автоматски доколку политиката за испорака е 'Фактура од " -"избирање' или 'Фактурирај нарачка по достава'." +"требување' или 'Фактурирај по налог после испорака'." #. module: sale_stock #: field:sale.order.line,procurement_id:0 @@ -314,12 +314,12 @@ msgstr "" #. module: sale_stock #: help:sale.config.settings,group_mrp_properties:0 msgid "Allows you to tag sales order lines with properties." -msgstr "Овозможува означување на нарачката со својства." +msgstr "Овозможува означување на нарачката со својствата." #. module: sale_stock #: field:sale.config.settings,group_invoice_deli_orders:0 msgid "Generate invoices after and based on delivery orders" -msgstr "Креирај фактури по и врз база на нарачките" +msgstr "Креирај фактури по и врз база на испратниците" #. module: sale_stock #: field:sale.config.settings,module_delivery:0 @@ -342,8 +342,8 @@ msgid "" "International Commercial Terms are a series of predefined commercial terms " "used in international transactions." msgstr "" -"Интернационалните Економски Услови претставуваат низа от предефинирани " -"економски услови што се користат при интернационални трансакции." +"Интернационалните Економски Термини претставуваат низа от предефинирани " +"комерцијални термини што се користат при интернационални трансакции." #. module: sale_stock #: help:sale.config.settings,module_delivery:0 @@ -353,10 +353,9 @@ msgid "" "prices.\n" " This installs the module delivery." msgstr "" -"Овозможува додавање на начини на достава во нарачките за продажба и " -"испорака.\n" -" Може да дефинирате сопствен ценовник за превозник и " -"достава.\n" +"Овозможува додавање на начини на испорака во нарачките за продажба и " +"испратниците.\n" +" Може да дефинирате сопствен ценовник за превоз и испорака.\n" " Со ова се инсталира модулот delivery." #. module: sale_stock @@ -367,12 +366,12 @@ msgstr "Испорачај одеднаш кога ќе бидат достап #. module: sale_stock #: model:res.groups,name:sale_stock.group_invoice_deli_orders msgid "Enable Invoicing Delivery orders" -msgstr "Овозможи порачки со испорака на фактура" +msgstr "Овозможи фактурирање на испратници" #. module: sale_stock #: field:res.company,security_lead:0 msgid "Security Days" -msgstr "Денови на безбедност" +msgstr "Сигурносни денови" #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_saleorderprocurement0 @@ -391,12 +390,12 @@ msgstr "" #: code:addons/sale_stock/sale_stock.py:206 #, python-format msgid "Cannot cancel sales order!" -msgstr "Неможе да се откаже нарачката!" +msgstr "Не може да се откаже налогот за продажба!" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_shop msgid "Sales Shop" -msgstr "Продавница за продажба" +msgstr "Продавница" #. module: sale_stock #: help:sale.order,shipped:0 @@ -404,8 +403,8 @@ msgid "" "It indicates that the sales order has been delivered. This field is updated " "only after the scheduler(s) have been launched." msgstr "" -"Тоа означува дека нарачката е испорачана. Ова поле се ажурира само со " -"започнувањето на планерот." +"Тоа означува дека наогот за продажба е испорачан. Ова поле се ажурира само " +"единствено откако распоредот е лансиран." #. module: sale_stock #: field:sale.order.line,property_ids:0 @@ -415,13 +414,14 @@ msgstr "Својства" #. module: sale_stock #: field:sale.config.settings,group_mrp_properties:0 msgid "Product properties on order lines" -msgstr "Својства на производот на нарачката" +msgstr "Својства на производот на ставките од налогот" #. module: sale_stock #: help:sale.config.settings,default_order_policy:0 msgid "" "You can generate invoices based on sales orders or based on shippings." -msgstr "Може да креирате фактури врз база на нарачки или испорачки." +msgstr "" +"Може да креирате фактури врз база на налози за продажба или испораки." #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_report @@ -444,10 +444,11 @@ msgid "" "lines.\n" " This installs the modules project_timesheet and project_mrp." msgstr "" -"Ви овозможува префрлување на записите под задачи дефинирани за проектен " -"менаџмент во\n" -" записите на налозите за датум и корисник со можност за " -"креирање, измени и бришење и автоматско креирање на задачи од набавките \n" +"Ви овозможува префрлување на внесовите под задачи дефинирани за проектен " +"менаџмент во внесовите на ставките на временската таблица за одреден датум и " +"корисник со\n" +" можност за креирање, измени и бришење и автоматско креирање " +"на проектни задачи од ставките за набавка. \n" " Ова го инсталира модулот project_timesheet и project_mrp." #. module: sale_stock @@ -456,8 +457,8 @@ msgid "" "Allows you to specify different delivery and invoice addresses on a sales " "order." msgstr "" -"Овозможува назначување на различна адреса за достава и фактурирање на " -"нарачката." +"Овозможува назначување на различна адреса за испорака и фактурирање на " +"налогот за продажба." #. module: sale_stock #: model:process.node,note:sale_stock.process_node_saleprocurement0 @@ -477,7 +478,7 @@ msgstr "Додели" #: code:addons/sale_stock/sale_stock.py:592 #, python-format msgid "Not enough stock ! : " -msgstr "Нема доволно на залиха ! : " +msgstr "Нема доволно залиха ! : " #. module: sale_stock #: help:sale.order.line,delay:0 @@ -485,8 +486,8 @@ msgid "" "Number of days between the order confirmation and the shipping of the " "products to the customer" msgstr "" -"Број на денови помеѓу потврдување на нарачката и испораката на производите " -"на клиентот" +"Број на денови помеѓу потврдување на налогот и испораката на производите до " +"купувачот" #. module: sale_stock #: help:sale.config.settings,default_picking_policy:0 @@ -495,14 +496,14 @@ msgid "" "instead of delivering each product when it is available. This may have an " "impact on the shipping price." msgstr "" -"Нарачката стандардно е конфигурирана да ги испорачува сите производи наеднаш " -"наместо секој производ кога ќе биде достапен. Ова може да влијае на цената " -"на испорака." +"Налогот за продажба стандардно ќе биде конфигуриран да ги испорачува сите " +"производи наеднаш наместо секој производ кога ќе биде достапен. Ова може да " +"влијае на цената на испорака." #. module: sale_stock #: selection:sale.config.settings,default_order_policy:0 msgid "Invoice based on sales orders" -msgstr "Фактура врз база на порачки" +msgstr "Фактура врз база на налози за продажба" #. module: sale_stock #: model:process.node,name:sale_stock.process_node_invoiceafterdelivery0 @@ -522,8 +523,9 @@ msgid "" "In order to delete a confirmed sales order, you must cancel it.\n" "To do so, you must first cancel related picking for delivery orders." msgstr "" -"За да избришете потврдена нарачка, мора прво да ја откажете.\n" -"За да го направите тоа најпрво мора да го откажете подигањето за таа нарачка." +"За да избришете потврден налог за продажба, мора прво да го откажете.\n" +"За да го направите тоа најпрво мора да го откажете требувањето за таа " +"испратница." #. module: sale_stock #: field:sale.order.line,number_packages:0 @@ -543,7 +545,7 @@ msgstr "Креирај фактура" #. module: sale_stock #: field:sale.config.settings,task_work:0 msgid "Prepare invoices based on task's activities" -msgstr "Подготви фактура врз база на активностите на задачата" +msgstr "Подготви фактура врз основа на активностите на задачата" #. module: sale_stock #: model:ir.model,name:sale_stock.model_sale_advance_payment_inv @@ -555,7 +557,8 @@ msgstr "Авансно плаќање по фактура за продажба" #, python-format msgid "You must first cancel stock moves attached to this sales order line." msgstr "" -"Морате прво да го откажете преместувањето на залихите за оваа нарачка." +"Морате прво да го откажете преместувањето на залихите за овој налог за " +"продажба." #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:535 @@ -566,13 +569,13 @@ msgstr "(n/a)" #. module: sale_stock #: field:sale.order,incoterm:0 msgid "Incoterm" -msgstr "Интернационални Економски Услови" +msgstr "Incoterm" #. module: sale_stock #: code:addons/sale_stock/sale_stock.py:496 #, python-format msgid "Cannot cancel sales order line!" -msgstr "Неможе да се откаже нарачката!" +msgstr "Не може да се откаже налогот за продажба!" #. module: sale_stock #: model:process.transition.action,name:sale_stock.process_transition_action_cancelassignation0 @@ -582,7 +585,7 @@ msgstr "Откажи доделување" #. module: sale_stock #: model:process.node,note:sale_stock.process_node_invoiceafterdelivery0 msgid "Based on the shipped or on the ordered quantities." -msgstr "врз база на испорачани или порачани количини." +msgstr "Засновано на испорачани или нарачани количини." #. module: sale_stock #: selection:sale.order,picking_policy:0 @@ -604,17 +607,17 @@ msgstr "sale.config.settings" msgid "" "This is a list of delivery orders that has been generated for this sales " "order." -msgstr "Ова е листа на порачки генерирана за оваа нарачка." +msgstr "Ова е листа на испратници генерирана за овој налог за продажба." #. module: sale_stock #: model:process.node,name:sale_stock.process_node_saleorderprocurement0 msgid "Sales Order Requisition" -msgstr "Официјално барање за нарачка" +msgstr "Барање за налог за продажба" #. module: sale_stock #: model:process.transition,name:sale_stock.process_transition_deliver0 msgid "Create Delivery Order" -msgstr "Креирај нарачка за испорака" +msgstr "Креирај испратница" #. module: sale_stock #: view:sale.order:0 @@ -629,12 +632,12 @@ msgid "" "The real stock is %.2f %s. (without reservations)" msgstr "" "Сакаш да продадеш %.2f %s но на залиха имаш само %.2f %s !\n" -"Вистинската залиха е %.2f %s. (без резерви)" +"Вистинската залиха е %.2f %s. (без резервации)" #. module: sale_stock #: view:sale.order:0 msgid "Recreate Delivery Order" -msgstr "Повторно креирај нарачка за испорака" +msgstr "Повторно креирај испратница" #. module: sale_stock #: help:sale.config.settings,group_multiple_shops:0 @@ -664,5 +667,4 @@ msgid "" "automatically." msgstr "" "Во зависност од конфигурацијата на излезот за локација, преносот помеѓу " -"излезната област и клиентот се врши рачно или автоматски преку испорачаната " -"нарачка." +"излезната област и купувачот се врши рачно или автоматски преку Испратницата." diff --git a/addons/share/i18n/mk.po b/addons/share/i18n/mk.po index 7889fc89d3d..eb364825acb 100644 --- a/addons/share/i18n/mk.po +++ b/addons/share/i18n/mk.po @@ -9,14 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:39+0000\n" -"PO-Revision-Date: 2013-03-12 13:13+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: OpenERP Macedonia \n" +"Language-Team: ESKON-INZENERING\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:01+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -32,6 +31,7 @@ msgstr "Покана за соработка за %s" msgid "" "The share engine has not been able to fetch a record_id for your invitation." msgstr "" +"Моторот за споделување не можеше да го пренесе record_id за вашата покана." #. module: share #: view:share.wizard:0 @@ -185,7 +185,7 @@ msgstr "(Дуплирано за изменети дозволи за споде msgid "" "Please indicate the emails of the persons to share with, one per line." msgstr "" -"Наведете ги мејловите на лицата со кои сакате да споделувате, по еден во " +"Наведете ги е-поштите на лицата со кои сакате да споделувате, по еден во " "линија." #. module: share @@ -203,6 +203,7 @@ msgstr "Следно" #, python-format msgid "Action and Access Mode are required to create a shared access." msgstr "" +"Режимите Акција и Пристап се потребни за да се креира споделен пристап." #. module: share #: code:addons/share/wizard/share_wizard.py:849 @@ -252,7 +253,7 @@ msgstr "Група за споделување" #: code:addons/share/wizard/share_wizard.py:865 #, python-format msgid "Email required" -msgstr "Потребен е емаил" +msgstr "Потребна е е-пошта" #. module: share #: view:share.wizard:0 @@ -273,7 +274,8 @@ msgstr "Групи кои не споделуваат" msgid "" "An email notification with instructions has been sent to the following " "people:" -msgstr "Известување за емаил со инструкции беше испратено на следниве лица:" +msgstr "" +"Известување за е-пошта со инструкции беше испратено на следниве лица:" #. module: share #: code:addons/share/wizard/share_wizard.py:77 @@ -515,7 +517,7 @@ msgstr "Може да се гледа" #. module: share #: selection:share.wizard,access_mode:0 msgid "Can edit" -msgstr "Може да се менува" +msgstr "Може да се уредува" #. module: share #: view:share.wizard:0 @@ -604,7 +606,7 @@ msgstr "Лозинка" #: field:share.wizard,new_users:0 #, python-format msgid "Emails" -msgstr "Мејлови" +msgstr "Е-пошти" #. module: share #: field:share.wizard,embed_option_search:0 diff --git a/addons/stock/i18n/ko.po b/addons/stock/i18n/ko.po index a1ee47b6f83..2face65ad2f 100644 --- a/addons/stock/i18n/ko.po +++ b/addons/stock/i18n/ko.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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-28 07:24+0000\n" +"Last-Translator: Josh Kim \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 06:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: stock @@ -24,7 +24,7 @@ msgstr "" #: field:stock.move.split,line_exist_ids:0 #: field:stock.move.split,line_ids:0 msgid "Serial Numbers" -msgstr "" +msgstr "일련번호" #. module: stock #: help:stock.config.settings,group_product_variant:0 @@ -37,7 +37,7 @@ msgstr "" #. module: stock #: model:ir.model,name:stock.model_stock_move_split_lines msgid "Stock move Split lines" -msgstr "" +msgstr "재고 이동 분할 입력줄" #. module: stock #: help:product.category,property_stock_account_input_categ:0 @@ -52,24 +52,24 @@ msgstr "" #. module: stock #: view:stock.picking.out:0 msgid "Confirm & Deliver" -msgstr "" +msgstr "확인 & 배송" #. module: stock #: model:ir.actions.act_window,name:stock.action_view_change_product_quantity #: view:stock.change.product.qty:0 msgid "Update Product Quantity" -msgstr "" +msgstr "상품 수량 갱신" #. module: stock #: field:stock.location,chained_location_id:0 msgid "Chained Location If Fixed" -msgstr "고정된 경우, 위치 체인" +msgstr "고정된 경우, 연결된 장소임" #. module: stock #: view:stock.inventory:0 #: view:stock.move:0 msgid "Put in a new pack" -msgstr "" +msgstr "새 팩에 넣기" #. module: stock #: code:addons/stock/wizard/stock_traceability.py:54 @@ -77,40 +77,40 @@ msgstr "" #: view:stock.tracking:0 #, python-format msgid "Upstream Traceability" -msgstr "" +msgstr "상류 추적 가능성" #. module: stock #: field:stock.picking,date_done:0 #: field:stock.picking.in,date_done:0 #: field:stock.picking.out,date_done:0 msgid "Date of Transfer" -msgstr "" +msgstr "이동일" #. module: stock #: field:product.product,track_outgoing:0 msgid "Track Outgoing Lots" -msgstr "" +msgstr "출고 로트를 추적" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_line_date #: model:ir.ui.menu,name:stock.menu_report_stock_line_date msgid "Last Product Inventories" -msgstr "" +msgstr "최근 상품 재고조사" #. module: stock #: view:stock.move:0 msgid "Today" -msgstr "" +msgstr "오늘" #. module: stock #: field:stock.production.lot.revision,indice:0 msgid "Revision Number" -msgstr "" +msgstr "개정번호" #. module: stock #: view:stock.move:0 msgid "Orders processed Today or planned for Today" -msgstr "" +msgstr "오늘 처리되거나 계획된 주문" #. module: stock #: view:stock.partial.move.line:0 @@ -119,19 +119,19 @@ msgstr "" #: view:stock.partial.picking.line:0 #: view:stock.return.picking.memory:0 msgid "Product Moves" -msgstr "" +msgstr "상품이동" #. module: stock #: code:addons/stock/stock.py:2519 #: code:addons/stock/stock.py:2580 #, python-format msgid "Please provide proper quantity." -msgstr "" +msgstr "적절한 수량을 제공하십시오." #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_inventory_control msgid "Inventory Control" -msgstr "" +msgstr "재고 관리" #. module: stock #: help:stock.production.lot,ref:0 @@ -144,24 +144,24 @@ msgstr "" #: code:addons/stock/wizard/stock_fill_inventory.py:59 #, python-format msgid "You cannot perform this operation on more than one Stock Inventories." -msgstr "" +msgstr "이 작업을 하나 이상의 재고 조사에 수행할 수 없습니다." #. module: stock #: code:addons/stock/wizard/stock_change_product_qty.py:91 #, python-format msgid "Quantity cannot be negative." -msgstr "" +msgstr "수량은 음수가 될 수 없습니다." #. module: stock #: view:stock.picking:0 #: view:stock.picking.in:0 msgid "Picking list" -msgstr "" +msgstr "피킹 리스트" #. module: stock #: view:stock.inventory:0 msgid "e.g. Annual inventory" -msgstr "" +msgstr "예: 연간 재고 조사" #. module: stock #: report:lot.stock.overview:0 @@ -191,35 +191,35 @@ msgstr "수량" #: view:report.stock.move:0 #: field:report.stock.move,day:0 msgid "Day" -msgstr "" +msgstr "일" #. module: stock #: model:ir.actions.act_window,name:stock.action_inventory_form #: model:ir.ui.menu,name:stock.menu_action_inventory_form msgid "Physical Inventories" -msgstr "" +msgstr "물리적 재고" #. module: stock #: selection:stock.location.product,type:0 msgid "Analyse a Period" -msgstr "" +msgstr "기간을 분석" #. module: stock #: view:report.stock.move:0 #: field:stock.change.standard.price,stock_journal:0 msgid "Stock journal" -msgstr "재고 저널" +msgstr "재고일지" #. module: stock #: view:report.stock.move:0 msgid "Incoming" -msgstr "" +msgstr "입고" #. module: stock #: code:addons/stock/wizard/stock_move.py:223 #, python-format msgid "Unable to assign all lots to this move!" -msgstr "" +msgstr "이 이동에 모든 로트를 할당할 수 없음!" #. module: stock #: help:stock.move,partner_id:0 @@ -231,49 +231,49 @@ msgstr "" #. module: stock #: model:ir.actions.server,name:stock.action_partial_move_server msgid "Deliver/Receive Products" -msgstr "" +msgstr "상품 배송/수령" #. module: stock #: code:addons/stock/report/report_stock.py:78 #: code:addons/stock/report/report_stock.py:134 #, python-format msgid "You cannot delete any record!" -msgstr "귀하는 레코드를 삭제할 수 없습니다!" +msgstr "모든 기록을 삭제할 수 없습니다!" #. module: stock #: view:stock.picking:0 msgid "Delivery orders to invoice" -msgstr "" +msgstr "송장이 발행 대상의 배송 주문서" #. module: stock #: view:stock.picking:0 msgid "Assigned Delivery Orders" -msgstr "" +msgstr "할당된 배송 주문서" #. module: stock #: code:addons/stock/wizard/stock_change_standard_price.py:107 #, python-format msgid "Active ID is not set in Context." -msgstr "" +msgstr "활성 ID가 Context에 설정되지 않았습니다." #. module: stock #: selection:stock.picking,invoice_state:0 #: selection:stock.picking.in,invoice_state:0 #: selection:stock.picking.out,invoice_state:0 msgid "Not Applicable" -msgstr "" +msgstr "해당 없음" #. module: stock #: help:stock.picking,message_unread:0 #: help:stock.picking.in,message_unread:0 #: help:stock.picking.out,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "체크할 경우, 새로운 메시지를 주목할 필요가 있습니다." #. module: stock #: help:stock.tracking,serial:0 msgid "Other reference or serial number" -msgstr "" +msgstr "기타 참조 또는 일련번호" #. module: stock #: view:stock.move:0 @@ -298,7 +298,7 @@ msgstr "" #: view:stock.tracking:0 #, python-format msgid "Downstream Traceability" -msgstr "" +msgstr "하류 추적 가능성" #. module: stock #: view:stock.move:0 @@ -314,12 +314,12 @@ msgstr "참조" #: code:addons/stock/stock.py:1548 #, python-format msgid "Products to Process" -msgstr "" +msgstr "처리 대상 상품" #. module: stock #: view:stock.move:0 msgid "New Pack" -msgstr "" +msgstr "새로운 포장" #. module: stock #: help:stock.fill.inventory,set_stock_zero:0 @@ -331,12 +331,12 @@ msgstr "" #. module: stock #: view:product.product:0 msgid "Forecasted:" -msgstr "" +msgstr "예상:" #. module: stock #: view:stock.partial.move:0 msgid "_Validate" -msgstr "" +msgstr "_Validate" #. module: stock #: help:stock.picking,message_summary:0 @@ -345,7 +345,7 @@ msgstr "" msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." -msgstr "" +msgstr "대화 요약 (메시지 개수, ...)을 내포함. 이 요약은 간판 화면에 삽입할 수 있도록 html 형식으로 직접 작성됩니다." #. module: stock #: code:addons/stock/stock.py:768 @@ -366,19 +366,19 @@ msgstr "" #: code:addons/stock/wizard/stock_return_picking.py:208 #, python-format msgid "Warning!" -msgstr "" +msgstr "경고!" #. module: stock #: field:stock.invoice.onshipping,group:0 msgid "Group by partner" -msgstr "파트너별 그룹" +msgstr "협력업체별로 분류" #. module: stock #: help:stock.picking,move_type:0 #: help:stock.picking.in,move_type:0 #: help:stock.picking.out,move_type:0 msgid "It specifies goods to be deliver partially or all at once" -msgstr "" +msgstr "일부 또는 일괄 배송여부를 지정합니다" #. module: stock #: model:ir.model,name:stock.model_res_partner @@ -391,12 +391,12 @@ msgstr "" #: field:stock.picking.in,partner_id:0 #: field:stock.picking.out,partner_id:0 msgid "Partner" -msgstr "파트너" +msgstr "협력업체" #. module: stock #: field:stock.config.settings,module_claim_from_delivery:0 msgid "Allow claim on deliveries" -msgstr "" +msgstr "배송에 대한 클레임을 허용" #. module: stock #: selection:stock.return.picking,invoice_state:0 @@ -406,23 +406,23 @@ msgstr "" #. module: stock #: view:stock.move:0 msgid "Stock moves that have been processed" -msgstr "" +msgstr "처리된 재고 이동" #. module: stock #: field:stock.inventory.line.split,use_exist:0 #: field:stock.move.split,use_exist:0 msgid "Existing Serial Numbers" -msgstr "" +msgstr "기존 일련번호" #. module: stock #: model:res.groups,name:stock.group_inventory_valuation msgid "Manage Inventory valuation" -msgstr "" +msgstr "재고 가치 관리" #. module: stock #: model:stock.location,name:stock.stock_location_suppliers msgid "Suppliers" -msgstr "공급자" +msgstr "공급업체" #. module: stock #: help:stock.incoterms,code:0 diff --git a/addons/stock/i18n/mk.po b/addons/stock/i18n/mk.po index 56d23546533..a2938c3138e 100644 --- a/addons/stock/i18n/mk.po +++ b/addons/stock/i18n/mk.po @@ -4,19 +4,20 @@ # FIRST AUTHOR , 2013. # Ivica Dimitrijev , 2013. # Aleksandar , 2013. +# Sofce Dimitrijeva , 2013. msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-12 14:44+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: ESKON Inzenering\n" +"Language-Team: ESKON-INZENERING\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:02+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -88,7 +89,7 @@ msgstr "Стави во нов пакет" #: view:stock.tracking:0 #, python-format msgid "Upstream Traceability" -msgstr "Нагорна штедливост" +msgstr "Нагорна следивост" #. module: stock #: field:stock.picking,date_done:0 @@ -240,7 +241,8 @@ msgstr "Не е можно да се доделат сите лотови на msgid "" "Optional address where goods are to be delivered, specifically used for " "allotment" -msgstr "Изборна адреса за испорака на добрата, посебно за квота." +msgstr "" +"Изборна адреса за испорака на добрата, особено се користи за распределба" #. module: stock #: model:ir.actions.server,name:stock.action_partial_move_server @@ -268,7 +270,7 @@ msgstr "Доделени налози за испорака" #: code:addons/stock/wizard/stock_change_standard_price.py:107 #, python-format msgid "Active ID is not set in Context." -msgstr "Активен идентификациски број не е сетиран во Контекстот." +msgstr "Активниот идентификациски број не е подесен во Контекстот." #. module: stock #: selection:stock.picking,invoice_state:0 @@ -312,7 +314,7 @@ msgstr "" #: view:stock.tracking:0 #, python-format msgid "Downstream Traceability" -msgstr "Надолна штедливост" +msgstr "Надолна следивост" #. module: stock #: view:stock.move:0 @@ -341,7 +343,7 @@ msgid "" "If checked, all product quantities will be set to zero to help ensure a real " "physical inventory is done" msgstr "" -"Доколку е означено, количините на сите производи ќе бидат подесени на нуло " +"Доколку е означено, количините на сите производи ќе бидат подесени на нула " "за да ви помогне да се осигурате дека е направена реална физичка залиха" #. module: stock @@ -499,7 +501,7 @@ msgstr "Следивост на акција " #: selection:stock.picking.in,state:0 #: selection:stock.picking.out,state:0 msgid "Waiting Availability" -msgstr "Чекање на достапност" +msgstr "Чекам достапност" #. module: stock #: selection:report.stock.inventory,state:0 @@ -524,7 +526,7 @@ msgstr "Во количина" #. module: stock #: model:ir.actions.client,name:stock.action_client_warehouse_menu msgid "Open Warehouse Menu" -msgstr "Мени за магацини" +msgstr "Мени Отвори магацин" #. module: stock #: field:stock.warehouse,lot_output_id:0 @@ -540,7 +542,7 @@ msgstr "Подели во" #. module: stock #: field:stock.config.settings,module_product_expiry:0 msgid "Expiry date on serial numbers" -msgstr "Дата на истекување на сериските броеви" +msgstr "Датум на истекување на сериските броеви" #. module: stock #: field:stock.move,price_currency_id:0 @@ -564,7 +566,7 @@ msgstr "" #. module: stock #: field:stock.config.settings,group_stock_tracking_lot:0 msgid "Track serial number on logistic units (pallets)" -msgstr "Следи ги сериските броеви на логистичките единици(палети)" +msgstr "Следи ги сериските броеви на логистичките единици (палети)" #. module: stock #: help:product.template,sale_delay:0 @@ -573,8 +575,8 @@ msgid "" "the delivery of the finished products. It's the time you promise to your " "customers." msgstr "" -"Просечниот број на денови на доцнење помеѓу потврдувањето на нарачката и " -"испораката на готовите производи. Тоа е времето што им го кажувате ка " +"Просечен број на денови на доцнење помеѓу потврдувањето на нарачката и " +"испораката на готовите производи. Тоа е времето што им го кажувате на " "клиентите." #. module: stock @@ -602,7 +604,7 @@ msgid "" "stock moves that have already been processed (except by the Administrator)." msgstr "" "Количини, Мерни единици, Производи и Локации за стоката што веќе се " -"обработени неможат да се менуваат (освен од страна на Администраторот)." +"обработени не можат да се менуваат (освен од страна на Администраторот)." #. module: stock #: help:report.stock.move,type:0 @@ -627,13 +629,13 @@ msgid "" " " msgstr "" "

\n" -" Кликнете за да креирате барање за внатрешен потег.\n" +" Кликнете за да креирате барање за внатрешно движење.\n" "

\n" " Повеќето операции се подготвуваат автоматски од страна на " -"OpenERP according\n" -" to your preconfigured logistics rules, but you can also " -"record\n" -" manual stock movements.\n" +"OpenERP според\n" +" вашите логистички правила за предконфигурација, но исто така " +"можете да ги снимите\n" +" рачните движења на залихата.\n" "

\n" " " @@ -646,7 +648,7 @@ msgstr "Белешки на предметите" #: code:addons/stock/stock.py:1356 #, python-format msgid "Back order %s has been created." -msgstr "Креирана е заостаната обврска %s." +msgstr "Креирано е враќање на налог %s." #. module: stock #: model:ir.model,name:stock.model_report_stock_move @@ -672,7 +674,7 @@ msgid "" "going to a Customer Location" msgstr "" "Принудно определување на сериски број на сите движења што го содржат овој " -"производ и о дат на локација на клиентот." +"производ и одат на локација на клиентот." #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_products_moves @@ -696,7 +698,7 @@ msgstr "Внатрешни движења" #. module: stock #: field:stock.move,location_dest_id:0 msgid "Destination Location" -msgstr "Локација на дестинацијата" +msgstr "Локација на одредиште" #. module: stock #: model:ir.model,name:stock.model_stock_partial_move_line @@ -736,7 +738,7 @@ msgstr "Категории на единица мерка" #: report:lot.stock.overview:0 #: report:lot.stock.overview_all:0 msgid "Grand Total:" -msgstr "Вкупен износ" +msgstr "Вкупен износ:" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_move_report @@ -786,7 +788,7 @@ msgstr "Име на локација" #. module: stock #: view:stock.inventory:0 msgid "Posted Inventory" -msgstr "Објавена залиха" +msgstr "Објавен попис" #. module: stock #: field:stock.move.split.lines,wizard_exist_id:0 @@ -820,7 +822,7 @@ msgstr "Статус" #. module: stock #: model:stock.location,name:stock.stock_location_customers msgid "Customers" -msgstr "Клиенти" +msgstr "Купувачи" #. module: stock #: selection:report.stock.inventory,month:0 @@ -839,7 +841,7 @@ msgstr "Пакети" #. module: stock #: selection:stock.location.product,type:0 msgid "Analyse Current Inventory" -msgstr "Анализа на моментална залиха" +msgstr "Анализа на моментален попис" #. module: stock #: view:stock.move:0 @@ -898,7 +900,7 @@ msgstr "Содржи" #. module: stock #: model:ir.model,name:stock.model_stock_inventory_line msgid "Inventory Line" -msgstr "Ставка за залиха" +msgstr "Ставка за попис" #. module: stock #: help:product.category,property_stock_journal:0 @@ -964,7 +966,7 @@ msgstr "Испорачано" #. module: stock #: field:stock.move,move_dest_id:0 msgid "Destination Move" -msgstr "Цел на поместување" +msgstr "Поместување на одредиште" #. module: stock #: field:stock.location,partner_id:0 @@ -1021,7 +1023,7 @@ msgstr "Добавувачи на IT опрема" #. module: stock #: view:stock.config.settings:0 msgid "Location & Warehouse" -msgstr "Локација и Складиште" +msgstr "Локација и Магацин" #. module: stock #: selection:report.stock.inventory,location_type:0 @@ -1036,7 +1038,7 @@ msgid "" "You cannot cancel the picking as some moves have been done. You should " "cancel the picking lines." msgstr "" -"Неможете да го откажете требувањето бидејќи направени се некои движења. " +"Не можете да го откажете требувањето бидејќи направени се некои движења. " "Треба да ги откажете ставките во требувањето." #. module: stock @@ -1134,7 +1136,7 @@ msgstr "Валута" #: view:stock.picking.in:0 #: report:stock.picking.list:0 msgid "Journal" -msgstr "Картица" +msgstr "Дневник" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_invoice_onshipping @@ -1163,7 +1165,7 @@ msgstr "Подготвено за Прием" #. module: stock #: field:report.stock.move,day_diff:0 msgid "Execution Lead Time (Days)" -msgstr "Водечко време за извршување (денови)" +msgstr "Потребно време за извршување (денови)" #. module: stock #: model:ir.model,name:stock.model_stock_partial_move @@ -1268,7 +1270,7 @@ msgstr "Локација на производството" #, python-format msgid "Please define journal on the product category: \"%s\" (id: %d)." msgstr "" -"Ве молиме дефинирајте запис за категоријата на производот: \"%s\" (id: %d)" +"Ве молиме дефинирајте дневник за категоријата на производот: \"%s\" (id: %d)" #. module: stock #: field:report.stock.lines.date,date:0 @@ -1381,7 +1383,8 @@ msgid "" "In order to cancel this inventory, you must first unpost related journal " "entries." msgstr "" -"За да се откаже оваа залиха, мора прво да се скријат поврзаните записи." +"За да се откаже оваа залиха, мора прво да се скријат поврзаните внесови во " +"дневникот." #. module: stock #: code:addons/stock/product.py:113 @@ -1536,11 +1539,16 @@ msgid "" "move has to be validated by a worker. With 'Automatic No Step Added', the " "location is replaced in the original move." msgstr "" +"Ова се користи единствено доколку изберете тип на поврзана локација.\n" +"Вредноста на 'Автоматско движење' ќе креира движење на залихата после " +"тековното кое ќе биде автоматски валидирано. Со 'Рачна операција' движењето " +"на залихата треба да биде потврдено од страна на работникот. With 'Automatic " +"No Step Added', the location is replaced in the original move." #. module: stock #: view:stock.split.into:0 msgid "Quantity to Leave in the Current Pack" -msgstr "Количина за заминување во моменталното пакување" +msgstr "Количина за ставање во моменталното пакување" #. module: stock #: view:stock.tracking:0 @@ -1589,7 +1597,7 @@ msgstr "Движење на залиха" #. module: stock #: view:stock.inventory.merge:0 msgid "Merge Inventories" -msgstr "Спојување на залихи" +msgstr "Спој залихи" #. module: stock #: selection:stock.return.picking,invoice_state:0 @@ -1600,7 +1608,7 @@ msgstr "Да биде повлечено/фактурирано" #: code:addons/stock/stock.py:2450 #, python-format msgid "You can only delete draft moves." -msgstr "Може да избришете единствено нацрт движења" +msgstr "Може да избришете единствено нацрт движења." #. module: stock #: code:addons/stock/stock.py:1665 @@ -1659,7 +1667,8 @@ msgstr "Дојдовните пратки се веќе обработени" #: code:addons/stock/wizard/stock_return_picking.py:102 #, python-format msgid "You may only return pickings that are Confirmed, Available or Done!" -msgstr "Може да вратите требувања што се Потврдени, Достапни или Завршени!" +msgstr "" +"Може да вратите единствено требувања што се Потврдени, Достапни или Завршени!" #. module: stock #: view:stock.location:0 @@ -1750,14 +1759,14 @@ msgstr "Идентификациски број на ставка на зали #. module: stock #: help:stock.location,partner_id:0 msgid "Address of customer or supplier." -msgstr "Адреса на клиент или добавувач." +msgstr "Адреса на купувач или добавувач." #. module: stock #: selection:report.stock.inventory,location_type:0 #: field:res.partner,property_stock_customer:0 #: selection:stock.location,usage:0 msgid "Customer Location" -msgstr "Локација на клиент" +msgstr "Локација на купувач" #. module: stock #: model:ir.model,name:stock.model_stock_inventory_line_split_lines @@ -1773,12 +1782,12 @@ msgstr "Преглед на локацијата на залихата" #. module: stock #: view:report.stock.inventory:0 msgid "Analysis including future moves (similar to virtual stock)" -msgstr "Анализи вклучувајќи идни движења (слично на виртуелна залиха)" +msgstr "Анализи кои вклучуваат идни движења (слично на виртуелна залиха)" #. module: stock #: model:ir.actions.act_window,name:stock.action3 msgid "Downstream traceability" -msgstr "Надолна штедливост" +msgstr "Надолна следивост" #. module: stock #: view:stock.picking.in:0 @@ -1804,7 +1813,7 @@ msgstr "" "\n" "Нашите записи покажуваат дека некои плаќања на вашата сметка се сеуште " "неподмирени. Ве молиме видете ги деталите подолу.\n" -"Доколку сумата е веќе платена, ве молиме занемарете ја оваа забелешка. Во " +"Доколку сумата е веќе платена, ве молиме занемарете го ова известување. Во " "спротивно, Ве молиме препратете ја целосната сума наведена подолу.\n" "Доколку имате некои прашања во врска со вашата сметка, Ве молиме " "контактирајте не.\n" @@ -1836,7 +1845,7 @@ msgstr "Фактура: %s" #: view:stock.location:0 #: field:stock.location,location_id:0 msgid "Parent Location" -msgstr "Локација на партнер" +msgstr "Локација на родител" #. module: stock #: code:addons/stock/product.py:168 @@ -1861,7 +1870,7 @@ msgstr "" #. module: stock #: field:stock.config.settings,group_uom:0 msgid "Manage different units of measure for products" -msgstr "Управување на различни мерни единици за производите" +msgstr "Управување со различни мерни единици за производите" #. module: stock #: model:ir.model,name:stock.model_stock_invoice_onshipping @@ -1872,7 +1881,7 @@ msgstr "" #: code:addons/stock/stock.py:2475 #, python-format msgid "Please provide a positive quantity to scrap." -msgstr "Ве молиме обезбедете позитивна количина отпадоци." +msgstr "Ве молиме обезбедете позитивна количина за отпад." #. module: stock #: model:stock.location,name:stock.stock_location_shop1 @@ -1945,7 +1954,7 @@ msgstr "Сметка за вреднување на залихата (Излез #. module: stock #: view:stock.return.picking.memory:0 msgid "Return Picking Memory" -msgstr "" +msgstr "Врати меморија за требување" #. module: stock #: model:ir.actions.act_window,name:stock.action_move_form2 @@ -2026,7 +2035,7 @@ msgstr "Полица 2" #: code:addons/stock/stock.py:529 #, python-format msgid "You cannot remove a lot line." -msgstr "Неможе да отстраните ставка од група." +msgstr "Не може да отстраните ставка од група." #. module: stock #: help:stock.location,posx:0 @@ -2140,7 +2149,7 @@ msgstr "Датум" #: field:stock.picking.in,message_is_follower:0 #: field:stock.picking.out,message_is_follower:0 msgid "Is a Follower" -msgstr "Е следбеник" +msgstr "Е пратител" #. module: stock #: view:report.stock.inventory:0 @@ -2235,7 +2244,7 @@ msgid "" " " msgstr "" "

\n" -" Клик за регистрирање на прием на производ.\n" +" Клик за регистрирање на приемница.\n" "

\n" " Овде може да примате индивидуални производи, без разлика од " "кој\n" @@ -2374,8 +2383,7 @@ msgstr "Цена" #: field:stock.config.settings,module_stock_invoice_directly:0 msgid "Create and open the invoice when the user finish a delivery order" msgstr "" -"Креирај и отвори ја фактурата кога корисникот ќе го заврши налогот за " -"испорака" +"Креирај и отвори ја фактурата кога корисникот ќе ја заврши испратницата" #. module: stock #: model:ir.model,name:stock.model_stock_return_picking_memory @@ -2385,7 +2393,7 @@ msgstr "stock.return.picking.memory" #. module: stock #: field:stock.config.settings,group_stock_inventory_valuation:0 msgid "Generate accounting entries per stock movement" -msgstr "Генерирај сметковни записи за движење на залихата" +msgstr "Генерирај сметководствени записи по движење на залихата" #. module: stock #: code:addons/stock/product.py:449 @@ -2557,7 +2565,7 @@ msgstr "Сметководство" #. module: stock #: model:ir.ui.menu,name:stock.menu_warehouse_config msgid "Warehouse Management" -msgstr "Менаџмент на магацин" +msgstr "Управуавње со магацини" #. module: stock #: selection:stock.location,chained_auto_packing:0 @@ -2598,7 +2606,7 @@ msgid "" " " msgstr "" "

\n" -" Кликни за да креираш движење на стоката.\n" +" Кликни за да креираш движење на залиха.\n" "

\n" " Ова мени ви овозможува целосно следење на операциите со " "залихата\n" @@ -2654,7 +2662,7 @@ msgid "" "warehouses" msgstr "" "Моментална количина на производи со овој сериски број достапна низ " -"складовите на компанијата." +"магацините на компанијата." #. module: stock #: view:stock.inventory:0 @@ -2665,7 +2673,7 @@ msgstr "Постави во нацрт" #: model:ir.actions.act_window,name:stock.action_stock_journal_form #: model:ir.ui.menu,name:stock.menu_action_stock_journal_form msgid "Stock Journals" -msgstr "Картици за залихи" +msgstr "Дневник залиха" #. module: stock #: view:product.product:0 @@ -2713,7 +2721,7 @@ msgstr "Идна количина" #. module: stock #: model:res.groups,name:stock.group_production_lot msgid "Manage Serial Numbers" -msgstr "Управување на сериските броеви" +msgstr "Управување со сериските броеви" #. module: stock #: field:stock.move,note:0 @@ -2773,7 +2781,7 @@ msgid "" "Cannot create Journal Entry, Output Account of this product and Valuation " "account on category of this product are same." msgstr "" -"Неможе да се креира запис во дневникот, Излезната сметка на овој производ и " +"Не може да се креира внес во дневникот, Излезната сметка на овој производ и " "сметката за вреднување на категоријата на овој производ се исти." #. module: stock @@ -2871,7 +2879,7 @@ msgid "" msgstr "" "Анализите на залихата ви дозволуваат полесна проверка и анализа на нивоата " "на залихите на вашата компанија. Сортирајте и групирајте по критериум за " -"селекција со цел подобро да ги анализирате и менаџирате активностите на " +"селекција со цел подобро да ги анализирате и управувате со активностите на " "вашата компанија." #. module: stock @@ -2882,7 +2890,7 @@ msgid "" "location if you subcontract the manufacturing operations." msgstr "" "Ја подесува локацијата доколку произведувате на фиксна локација. Тоа може да " -"биде локацијата на партнерот доколку имате поддоговор за производствени " +"биде локацијата на партнерот доколку имате под договор за производствени " "операции." #. module: stock @@ -2952,7 +2960,7 @@ msgid "" "Cannot create Journal Entry, Input Account of this product and Valuation " "account on category of this product are same." msgstr "" -"Неможе да се креира запис во записникот, Влезната сметка на овој производ и " +"Не може да се креира внес во дневникот, Влезната сметка на овој производ и " "сметката за вреднување на категоријата на овој производ се исти." #. module: stock @@ -3071,7 +3079,7 @@ msgstr "Предвидување за нивото на залиха" #: field:stock.picking.in,stock_journal_id:0 #: field:stock.picking.out,stock_journal_id:0 msgid "Stock Journal" -msgstr "Картица за залихи" +msgstr "Дневник залиха" #. module: stock #: code:addons/stock/wizard/stock_return_picking.py:174 @@ -3083,7 +3091,7 @@ msgstr "%s-%s врати" #: code:addons/stock/wizard/stock_change_product_qty.py:82 #, python-format msgid "Active ID is not set in Context" -msgstr "Активен идентификациски број не е сетиран во Контекстот." +msgstr "Активниот идентификациски број не е подесен во Контекстот." #. module: stock #: view:stock.move:0 @@ -3105,7 +3113,8 @@ msgstr "Движење на отпад" #. module: stock #: help:stock.move,prodlot_id:0 msgid "Serial number is used to put a serial number on the production" -msgstr "Серискиот број е искористен за сериски број на призводството" +msgstr "" +"Серискиот број е искористен за да се стави сериски број на призводството" #. module: stock #: code:addons/stock/wizard/stock_partial_picking.py:100 @@ -3130,7 +3139,7 @@ msgstr "Испорка на производи" #. module: stock #: view:stock.location.product:0 msgid "View Stock of Products" -msgstr "Преглед на лагер на производи" +msgstr "Преглед на залиха на производи" #. module: stock #: view:report.stock.inventory:0 @@ -3209,7 +3218,7 @@ msgstr "" "

\n" " Кликни за додавање на локација.\n" "

\n" -" Оваа е структурата на складовите и локациите на вашата " +" Оваа е структурата на магацините и локациите на вашата " "компанија.\n" " Може да кликнете на одредена локација за да ја видите " "листата\n" @@ -3259,7 +3268,7 @@ msgstr "Ставка за делумно движење на залиха" #. module: stock #: field:stock.move,product_uos_qty:0 msgid "Quantity (UOS)" -msgstr "Количина (UOS)" +msgstr "Количина (ЕП)" #. module: stock #: view:stock.move:0 @@ -3425,7 +3434,7 @@ msgstr "" " испорачате на вашите клиенти. Може да ги обработувате " "испораките\n" " директно од оваа листа со користење на копчињата од десната " -"страна. You can\n" +"страна\n" " на линијата. Може да ги филтрирате производите за испорака " "според\n" " клиент, производ или налог за продажба.\n" @@ -3445,7 +3454,7 @@ msgstr "Име на ревизија" #. module: stock #: model:res.groups,name:stock.group_tracking_lot msgid "Manage Logistic Serial Numbers" -msgstr "Управување на логистички сериските броеви" +msgstr "Управување на логистички сериски броеви" #. module: stock #: view:stock.inventory:0 @@ -3485,7 +3494,7 @@ msgstr "%s %s %s е преместено во отпад." #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree_out msgid "Customers Packings" -msgstr "Пакувања за клиентите" +msgstr "Пакувања за купувачите" #. module: stock #: selection:report.stock.inventory,state:0 @@ -3594,7 +3603,7 @@ msgstr "Анализи на залихи" #. module: stock #: field:stock.invoice.onshipping,journal_id:0 msgid "Destination Journal" -msgstr "Одредишен дневник" +msgstr "Дневник на одредштето" #. module: stock #: model:ir.actions.act_window,name:stock.act_stock_tracking_lot_2_stock_report_tracklots @@ -3653,13 +3662,12 @@ msgid "" " " msgstr "" "

\n" -" Клик за започнување на залиха.\n" +" Кликнете за започнување на попис.\n" "

\n" -" Периодичните залихи се користат за броење на производите " +" Периодичните пописи се користат за броење на производите " "достапни\n" -" на секоја локација. Може да се користат еднаш годишно при " -"правење\n" -" на генерална залиха или по потреба, за прилагодување на " +" по локација. Може да се користат еднаш годишно при правење\n" +" на генерален попис или по потреба, за прилагодување на " "моменталната\n" " залиха на одреден производ.\n" "

\n" @@ -3731,7 +3739,7 @@ msgstr "Овозможи дефинирање на неколку методи #. module: stock #: model:stock.location,name:stock.stock_location_7 msgid "European Customers" -msgstr "Европски клиенти" +msgstr "Европски купувачи" #. module: stock #: field:report.stock.inventory,value:0 @@ -3766,7 +3774,7 @@ msgstr "Волшебник" #. module: stock #: view:report.stock.move:0 msgid "Completed Stock-Moves" -msgstr "Завршено движење на залиха" +msgstr "Комплетирана залиха-Движења" #. module: stock #: model:ir.actions.act_window,name:stock.action_view_stock_location_product @@ -3867,7 +3875,7 @@ msgstr "Локација на изворот" #. module: stock #: view:product.template:0 msgid "Accounting Entries" -msgstr "Сметководствени записи" +msgstr "Сметководствени внесови" #. module: stock #: model:res.groups,name:stock.group_stock_manager @@ -3918,7 +3926,7 @@ msgstr "" #. module: stock #: view:stock.move:0 msgid "Destination" -msgstr "Дестинација" +msgstr "Одредиште" #. module: stock #: selection:stock.picking,move_type:0 @@ -3976,7 +3984,7 @@ msgstr "" #: model:ir.actions.act_window,name:stock.action_stock_config_settings #: view:stock.config.settings:0 msgid "Configure Warehouse" -msgstr "Конфигурирање на склад" +msgstr "Конфигурирање на магацин" #. module: stock #: view:stock.picking:0 @@ -3992,7 +4000,7 @@ msgstr "Врати ставки" #. module: stock #: view:stock.inventory:0 msgid "Search Inventory" -msgstr "Барај залиха" +msgstr "Барај попис" #. module: stock #: model:ir.model,name:stock.model_report_stock_lines_date @@ -4126,7 +4134,7 @@ msgstr "Пораки" #. module: stock #: model:stock.location,name:stock.stock_location_8 msgid "Non European Customers" -msgstr "Не Европски клиенти" +msgstr "Не Европски купувачи" #. module: stock #: code:addons/stock/product.py:96 @@ -4164,7 +4172,7 @@ msgid "" " " msgstr "" "

\n" -" Клик за дефинирање на нов склад.\n" +" Кликнете за дефинирање на нов магацин.\n" "

\n" " " @@ -4182,7 +4190,7 @@ msgstr "Откажано" #. module: stock #: view:stock.picking:0 msgid "Confirmed Delivery Orders" -msgstr "Потврдени налози за испорака" +msgstr "Потврдени испратници" #. module: stock #: view:stock.move:0 @@ -4268,17 +4276,17 @@ msgstr "Ревизија на сериски броеви" #: model:ir.ui.menu,name:stock.menu_action_picking_tree #: view:stock.picking.out:0 msgid "Delivery Orders" -msgstr "Налози за испорака" +msgstr "Испратници" #. module: stock #: view:stock.picking:0 msgid "Delivery orders already processed" -msgstr "Налозите за испорака се веќе обработени" +msgstr "Испратниците се веќе обработени" #. module: stock #: field:product.template,loc_case:0 msgid "Case" -msgstr "Случај" +msgstr "Предмет" #. module: stock #: selection:report.stock.inventory,state:0 @@ -4296,12 +4304,12 @@ msgstr "Потврди" #. module: stock #: help:stock.location,icon:0 msgid "Icon show in hierarchical tree view" -msgstr "" +msgstr "Икона прикажана во прегледот на хиерархиското дрво" #. module: stock #: model:ir.actions.act_window,name:stock.action_view_stock_merge_inventories msgid "Merge inventories" -msgstr "Спојување на залихи" +msgstr "Спој залихи" #. module: stock #: view:stock.location:0 @@ -4321,7 +4329,7 @@ msgstr "" #: field:stock.picking.in,message_follower_ids:0 #: field:stock.picking.out,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: stock #: code:addons/stock/stock.py:2585 @@ -4341,7 +4349,7 @@ msgstr "" #. module: stock #: view:report.stock.move:0 msgid "Total outgoing quantity" -msgstr "Вкупно излезна колич" +msgstr "Вкупно излезна количина" #. module: stock #: field:stock.move,backorder_id:0 @@ -4379,7 +4387,7 @@ msgstr "Креирај фактура" #. module: stock #: view:stock.picking:0 msgid "Confirmed Internal Moves" -msgstr "Потврдени внатрешни белешки" +msgstr "Потврдени внатрешни движења" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_configuration @@ -4389,7 +4397,7 @@ msgstr "Конфигурација" #. module: stock #: model:res.groups,name:stock.group_locations msgid "Manage Multiple Locations and Warehouses" -msgstr "Управување со повеќе локации и складови" +msgstr "Управување со повеќе локации и магацини" #. module: stock #: help:stock.change.standard.price,new_price:0 @@ -4466,6 +4474,11 @@ msgid "" "generic Stock Output Account set on the product. This has no effect for " "internal locations." msgstr "" +"Се користи за вреднување на залихата во реално време. Кога е поставено на " +"виртуелна локација (не внатрешен тип), оваа сметка ќе се користи за " +"зачувување на вредноста на производите што се преместуваат од внатрешна " +"локација на оваа локација, наместо во стандардната Сметка за Излез на Залиха " +"поставена на производот. Ова нема влијание за внатрешните локации." #. module: stock #: code:addons/stock/product.py:457 @@ -4488,7 +4501,7 @@ msgstr "Очекуван датум" #. module: stock #: field:stock.move,auto_validate:0 msgid "Auto Validate" -msgstr "Автоматско потврдување" +msgstr "Автоматско валидирање" #. module: stock #: code:addons/stock/stock.py:1821 @@ -4526,7 +4539,7 @@ msgstr "Враќање на производи" #. module: stock #: view:stock.inventory:0 msgid "Validate Inventory" -msgstr "Потврди залиха" +msgstr "Потврди попис" #. module: stock #: help:stock.move,price_currency_id:0 @@ -4634,7 +4647,7 @@ msgstr "Автоматско требување" #. module: stock #: report:stock.picking.list:0 msgid "Customer Address :" -msgstr "Адреса на клиент :" +msgstr "Адреса на купувач :" #. module: stock #: field:stock.location,chained_auto_packing:0 @@ -4716,7 +4729,7 @@ msgstr "Ревизија на сериски број" #: code:addons/stock/product.py:96 #, python-format msgid "Specify valuation Account for Product Category: %s." -msgstr "" +msgstr "Одреди сметка за вреднување за категоријата производ: %s." #. module: stock #: help:stock.config.settings,module_claim_from_delivery:0 @@ -4724,6 +4737,8 @@ msgid "" "Adds a Claim link to the delivery order.\n" " This installs the module claim_from_delivery." msgstr "" +"Додава линк Рекламација на испратницата.\n" +" Ова го инсталира модулот claim_from_delivery." #. module: stock #: code:addons/stock/wizard/stock_return_picking.py:208 @@ -4750,7 +4765,7 @@ msgstr "Креирај притисни/повлечи логистички пр #: code:addons/stock/wizard/stock_invoice_onshipping.py:98 #, python-format msgid "None of these picking lists require invoicing." -msgstr "Ниту една од овие листи за требувања немаат потреба од фактурирање." +msgstr "Ниту една од овие листи за требување немаат потреба од фактурирање." #. module: stock #: selection:report.stock.inventory,month:0 @@ -4792,6 +4807,9 @@ msgid "" "a serial number on product moves, you can get the upstream or downstream " "traceability of that product." msgstr "" +"Ова ви овозможува да ги управувате производите со користење на сериски " +"броеви. Кога селектирате сериски број на движења на производ, може да " +"добиете нагорна или надолна следивост на тој производ." #. module: stock #: code:addons/stock/wizard/stock_fill_inventory.py:124 @@ -4836,7 +4854,7 @@ msgstr "Лот за производство" #: view:stock.move:0 #: view:stock.tracking:0 msgid "Traceability" -msgstr "Штедливост" +msgstr "Следивост" #. module: stock #: model:ir.actions.act_window,help:stock.action_deliver_move @@ -4853,7 +4871,7 @@ msgid "" " " msgstr "" "

\n" -" Кликни за додавање на налог за испорака за овој производ.\n" +" Кликни за додавање на испратница за овој производ.\n" "

\n" " Овде ќе најдете историја за сите испораки поврзани со овој\n" " производ, како и за производите што треба да се испорачат\n" @@ -4928,7 +4946,7 @@ msgstr "Движења" #: field:stock.picking.in,location_dest_id:0 #: field:stock.picking.out,location_dest_id:0 msgid "Dest. Location" -msgstr "Локација на дестинацијата" +msgstr "Локација на одредиштето" #. module: stock #: model:ir.actions.report.xml,name:stock.report_picking_list @@ -4951,7 +4969,7 @@ msgstr "Доцнења" #. module: stock #: report:stock.picking.list:0 msgid "Schedule Date" -msgstr "Планиран датум" +msgstr "Закажи датум" #. module: stock #: field:stock.location.product,to_date:0 @@ -4967,7 +4985,7 @@ msgstr "Октомври" #. module: stock #: view:stock.split.into:0 msgid "Split Move" -msgstr "" +msgstr "Раздели движење" #. module: stock #: selection:stock.move,state:0 @@ -4977,7 +4995,7 @@ msgstr "Нов" #. module: stock #: view:report.stock.move:0 msgid "Future Stock-Moves" -msgstr "Идни движења на залихата" +msgstr "Движења на идна залиха" #. module: stock #: view:report.stock.inventory:0 @@ -5022,7 +5040,7 @@ msgstr "Увези тековен попис" #. module: stock #: model:ir.actions.act_window,name:stock.action5 msgid "Upstream traceability" -msgstr "Нагорна штедливост" +msgstr "Нагорна следивост" #. module: stock #: model:ir.actions.report.xml,name:stock.report_location_overview_all @@ -5067,7 +5085,7 @@ msgstr "Производство" #: selection:stock.location,chained_location_type:0 #: view:stock.picking.out:0 msgid "Customer" -msgstr "Клиент" +msgstr "Купувач" #. module: stock #: selection:report.stock.inventory,month:0 @@ -5120,7 +5138,7 @@ msgid "" "This allows to configure and use multiple stock locations and warehouses,\n" " instead of having a single default one." msgstr "" -"Ова овозможува конфигурирање и користење на повеќе локации и складови,\n" +"Ова овозможува конфигурирање и користење на повеќе локации и магацини,\n" " наместо само еден." #. module: stock @@ -5173,10 +5191,9 @@ msgid "" " " msgstr "" "

\n" -" Кликни за креирање на налог за испорака.\n" +" Кликни за креирање на испратница.\n" "

\n" -" Ов е листа на сите налози за испорака што треба да се " -"подготват\n" +" Ова е листа на сите испратници што треба да се подготват\n" " според различните налози за продажба и правилата на " "логистиката.\n" "

\n" @@ -5188,6 +5205,8 @@ msgid "" "By default, the pack reference is generated following the sscc standard. " "(Serial number + 1 check digit)" msgstr "" +"Стандардно, референцата на пакетот е генерирана со следење на sscc " +"стандардот. (Сериски број + 1 check digit)" #. module: stock #: model:ir.model,name:stock.model_stock_inventory @@ -5196,7 +5215,7 @@ msgstr "" #: report:stock.inventory.move:0 #: selection:stock.location,usage:0 msgid "Inventory" -msgstr "Залиха" +msgstr "Попис" #. module: stock #: help:stock.location,chained_picking_type:0 @@ -5221,12 +5240,12 @@ msgstr "" #. module: stock #: help:stock.move,move_dest_id:0 msgid "Optional: next stock move when chaining them" -msgstr "" +msgstr "Опционо: следно движење на залиха кога се поврзуваат" #. module: stock #: view:stock.picking.out:0 msgid "Print Delivery Slip" -msgstr "" +msgstr "Печати ливче за испорака" #. module: stock #: view:report.stock.inventory:0 @@ -5244,7 +5263,7 @@ msgstr "Физички локации" #. module: stock #: view:stock.picking.in:0 msgid "Ready to Process" -msgstr "Подготвено за преработка" +msgstr "Подготвено за обработка" #. module: stock #: report:stock.picking.list:0 diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index e49e94eb52c..a44714f4b3b 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-03-26 22:07+0000\n" +"PO-Revision-Date: 2013-03-28 19:39+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 06:03+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: stock @@ -2101,6 +2101,22 @@ msgid "" "\n" " * Cancelled: has been cancelled, can't be confirmed anymore" msgstr "" +"\n" +" * Taslak: henüz onaylanmamış ve onaylanana kadar " +"planlanmayacaktır\n" +"\n" +" * Başka Bir İşlem Bekliyor: kendiliğinden hazır olmadan önce " +"yürütülmek üzere başka bir hareket bekliyor (örn. stoktan sipariş akışları)\n" +"\n" +" * Hazır Olmayı Bekliyor: hala ürünlerin hazır olmasını bekliyor\n" +"\n" +" * Aktarılmaya Hazır: ürünler rezerve edilmiş, yalnızca onay " +"bekliyor.\n" +"\n" +" * Aktarıldı: işlenmiş olup, bir daha değiştirilemez ve iptal " +"edilemez\n" +"\n" +" * İptal edildi: iptal edilmiş olup, bir daha onaylanamaz" #. module: stock #: view:report.stock.inventory:0 diff --git a/addons/stock_location/i18n/mk.po b/addons/stock_location/i18n/mk.po index 04f1f47e1d1..6f20d061522 100644 --- a/addons/stock_location/i18n/mk.po +++ b/addons/stock_location/i18n/mk.po @@ -2,20 +2,21 @@ # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 # This file is distributed under the same license as the openobject-addons package. # FIRST AUTHOR , 2012. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-12 14:52+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 @@ -42,7 +43,7 @@ msgstr "Движење" #. module: stock_location #: model:ir.model,name:stock_location.model_stock_location_path msgid "Pushed Flows" -msgstr "" +msgstr "Наметнати текови" #. module: stock_location #: selection:stock.location.path,auto:0 @@ -70,6 +71,7 @@ msgstr "" #: help:product.pulled.flow,location_src_id:0 msgid "Location used by Destination Location to supply" msgstr "" +"Локација употребена од страна на Локацијата на одредиштето за добавување" #. module: stock_location #: view:product.product:0 @@ -120,7 +122,7 @@ msgstr "Услови" #. module: stock_location #: model:stock.location,name:stock_location.location_pack_zone msgid "Pack Zone" -msgstr "Зона за пакување" +msgstr "Зона на пакување" #. module: stock_location #: model:stock.location,name:stock_location.location_gate_b @@ -178,7 +180,7 @@ msgstr "Произведи" #. module: stock_location #: selection:product.pulled.flow,procure_method:0 msgid "Make to Order" -msgstr "Направи налог" +msgstr "Направи нарачка" #. module: stock_location #: selection:product.pulled.flow,procure_method:0 @@ -260,7 +262,7 @@ msgstr "" #. module: stock_location #: help:product.pulled.flow,location_id:0 msgid "Is the destination location that needs supplying" -msgstr "" +msgstr "Дали локацијата на одредиштето кое има потреба од добавување" #. module: stock_location #: field:stock.location.path,product_id:0 @@ -323,7 +325,7 @@ msgstr "Набавка" #: field:product.pulled.flow,location_id:0 #: field:stock.location.path,location_dest_id:0 msgid "Destination Location" -msgstr "Одредишна локација" +msgstr "Локација на одредиштето" #. module: stock_location #: field:stock.location.path,auto:0 @@ -375,7 +377,7 @@ msgstr "Операција" #. module: stock_location #: view:stock.location.path:0 msgid "Location Paths" -msgstr "" +msgstr "Патеки на локација" #. module: stock_location #: field:product.pulled.flow,journal_id:0 diff --git a/addons/subscription/i18n/mk.po b/addons/subscription/i18n/mk.po index e260ca33c48..25cbc185509 100644 --- a/addons/subscription/i18n/mk.po +++ b/addons/subscription/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-12 14:56+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: subscription #: field:subscription.subscription,doc_source:0 @@ -199,7 +200,7 @@ msgstr "Партнер" #. module: subscription #: help:subscription.subscription,cron_id:0 msgid "Scheduler which runs on subscription" -msgstr "" +msgstr "Распоредувач кој работи на претплата" #. module: subscription #: view:subscription.subscription:0 diff --git a/addons/survey/i18n/mk.po b/addons/survey/i18n/mk.po index bf53899ca83..e80e5d1399d 100644 --- a/addons/survey/i18n/mk.po +++ b/addons/survey/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-12 15:38+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: survey #: view:survey.response.line:0 @@ -222,7 +223,7 @@ msgstr "Матрица на избори (само еден одговор на #: view:survey.send.invitation:0 #: field:survey.send.invitation,send_mail_existing:0 msgid "Send Reminder for Existing User" -msgstr "Испрати потсетник за постоек корисник" +msgstr "Испрати потсетник за постоечки корисник" #. module: survey #: code:addons/survey/survey.py:525 @@ -240,7 +241,7 @@ msgstr "" #: view:survey.page:0 #: view:survey.question:0 msgid "Survey Question" -msgstr "Прашање за анкета" +msgstr "Прашање од анкета" #. module: survey #: view:survey.question.column.heading:0 @@ -290,7 +291,7 @@ msgstr "Вредност" #. module: survey #: field:survey.question,column_heading_ids:0 msgid " Column heading" -msgstr " НАслов на колона" +msgstr " Нaслов на колона" #. module: survey #: code:addons/survey/wizard/survey_send_invitation.py:71 @@ -322,7 +323,7 @@ msgstr "Откажано" #. module: survey #: selection:survey.question,type:0 msgid "Rating Scale" -msgstr "Скала за проценка" +msgstr "Скала за оценување" #. module: survey #: code:addons/survey/survey.py:152 @@ -354,7 +355,7 @@ msgstr "Датум на отварање на анкета" #: code:addons/survey/wizard/survey_answer.py:800 #, python-format msgid "You cannot select the same answer more than one time." -msgstr "Неможе да изберете ист одговор повеќе од еднаш." +msgstr "Не може да изберете ист одговор повеќе од еднаш." #. module: survey #: field:survey,color:0 @@ -369,7 +370,7 @@ msgstr "Повеќекратен избор (Повеќекратни одгов #. module: survey #: view:survey:0 msgid "Edit Survey" -msgstr "Измени анкета" +msgstr "Уреди анкета" #. module: survey #: code:addons/survey/wizard/survey_answer.py:766 @@ -390,6 +391,8 @@ msgid "" "You must enter one or more menu choices in " "column heading." msgstr "" +"Мора да внесете едно или повеќе избори на менито " +" во насловот на колоната." #. module: survey #: selection:survey.question,required_type:0 @@ -456,7 +459,7 @@ msgstr "Текст" #. module: survey #: view:survey:0 msgid "Edit..." -msgstr "Измени..." +msgstr "Уреди..." #. module: survey #: selection:survey.print,paper_size:0 @@ -519,6 +522,7 @@ msgstr "Не го потврдувај текстот за коментари" #, python-format msgid "You must enter one or more menu choices in column heading." msgstr "" +"Мора да внесете еден или повеќе избори на менито во насловот на колоната." #. module: survey #: selection:survey.question,comment_valid_type:0 @@ -659,7 +663,7 @@ msgstr "Бр. на страна" #. module: survey #: model:ir.ui.menu,name:survey.menu_print_survey_form msgid "Print Surveys" -msgstr "печати анкети" +msgstr "Печати анкети" #. module: survey #: field:survey.question.column.heading,in_visible_menu_choice:0 @@ -680,7 +684,7 @@ msgstr "Грешка порака" #: code:addons/survey/wizard/survey_answer.py:124 #, python-format msgid "You cannot answer this survey more than %s times." -msgstr "Неможе да одговорите на оваа анкета повеќе од %s пати." +msgstr "Не може да одговорите на оваа анкета повеќе од %s пати." #. module: survey #: field:survey.request,date_deadline:0 @@ -691,7 +695,7 @@ msgstr "Датум на краен рок" #: selection:survey.question,comment_valid_type:0 #: selection:survey.question,validation_type:0 msgid "Must Be A Date" -msgstr "Мора да биде датум" +msgstr "Мора да има датум" #. module: survey #: model:ir.model,name:survey.model_survey_print @@ -703,7 +707,7 @@ msgstr "survey.print" #: view:survey.page:0 #: field:survey.question,page_id:0 msgid "Survey Page" -msgstr "Страна за анкети" +msgstr "Страница за анкети" #. module: survey #: view:survey.question.column.heading:0 @@ -896,6 +900,8 @@ msgid "" "You must enter one or more menu choices in " "column heading (white spaces not allowed)." msgstr "" +"Мора да внесете еден или повеќе изботи на " +"менито во насловот на колоната (бели празни места не се дозволени)." #. module: survey #: field:survey.question,maximum_req_ans:0 @@ -957,8 +963,9 @@ msgstr "" "

\n" " Кликни за креирање на нова анкета.\n" "

\n" -" Може да креирате анкета за различна намена: интервјуа,\n" -" периодични проценки на вработените, маркетинг кампањи\n" +" Може да креирате анкета за различна намена: интервјуа за " +"вработување,\n" +" периодични евалуации на вработените, маркетинг кампањи\n" " итн.\n" "

\n" " Анкетата е направена од страници што содржат неколку\n" @@ -974,7 +981,7 @@ msgstr "Датум на затварање на анкета" #. module: survey #: field:survey.question.column.heading,in_visible_rating_weight:0 msgid "Is Rating Scale Invisible ??" -msgstr "" +msgstr "Дали скалата за оценување е невидлива ??" #. module: survey #: field:survey.question,is_validation_require:0 @@ -1058,7 +1065,7 @@ msgid "" "You cannot give more responses. Please contact the author of this survey for " "further assistance." msgstr "" -"Неможе да дадете уште одговори. Ве молиме контактирајте го авторот на оваа " +"Не може да дадете уште одговори. Ве молиме контактирајте го авторот на оваа " "анкета за понатамошна поддршка." #. module: survey @@ -1210,6 +1217,8 @@ msgid "" "You must enter one or more menu choices in column heading (white spaces not " "allowed)." msgstr "" +"Мора да внесете еден или повеќе избори на менито во насловот на колоната " +"(бели празни места не се дозволени)." #. module: survey #: field:survey.print,paper_size:0 @@ -1264,7 +1273,7 @@ msgstr "Анкета" #. module: survey #: field:survey.question,in_visible_rating_weight:0 msgid "Is Rating Scale Invisible?" -msgstr "Дали скалата за проценка е невидлива?" +msgstr "Дали скалата за оценување е невидлива?" #. module: survey #: selection:survey.answer,type:0 @@ -1305,7 +1314,7 @@ msgstr "Статистики за анкетите" #: field:survey.print,orientation:0 #: field:survey.print.answer,orientation:0 msgid "Orientation" -msgstr "Аргентина" +msgstr "Ориентација" #. module: survey #: view:survey:0 @@ -1340,7 +1349,7 @@ msgstr "Секвенца" #. module: survey #: field:survey.question,comment_label:0 msgid "Field Label" -msgstr "Натпис на полето" +msgstr "Етикета на полето" #. module: survey #: view:survey.request:0 @@ -1356,7 +1365,7 @@ msgstr "Тест анкета" #. module: survey #: field:survey.question,rating_allow_one_column_require:0 msgid "Allow Only One Answer per Column (Forced Ranking)" -msgstr "Овозможи сао еден одговор по колона (Присилено рангирање)" +msgstr "Овозможи само еден одговор по колона (Присилено рангирање)" #. module: survey #: view:survey.browse.answer:0 @@ -1420,12 +1429,12 @@ msgstr "Завршено " #. module: survey #: model:ir.model,name:survey.model_survey_question_column_heading msgid "Survey Question Column Heading" -msgstr "" +msgstr "Наслов на колона за прашања на анкета" #. module: survey #: field:survey.answer,average:0 msgid "#Avg" -msgstr "" +msgstr "#Средно" #. module: survey #: selection:survey.question,type:0 @@ -1435,7 +1444,7 @@ msgstr "Матрица на избори (Повеќекратни одгово #. module: survey #: model:ir.actions.act_window,name:survey.action_view_survey_name msgid "Give Survey Answer" -msgstr "Дади одговор на анкетата" +msgstr "Дадете одговор на анкетата" #. module: survey #: help:survey.browse.answer,response_id:0 @@ -1486,7 +1495,7 @@ msgstr "Испрати покана" #: code:addons/survey/wizard/survey_selection.py:80 #, python-format msgid "You cannot give response for this survey more than %s times." -msgstr "Неможе да дадете одговор на оваа анкета повеќе од %s пати." +msgstr "Не може да дадете одговор на оваа анкета повеќе од %s пати." #. module: survey #: view:survey.question:0 @@ -1551,13 +1560,13 @@ msgstr "Избор на добавувач" #: code:addons/survey/wizard/survey_answer.py:992 #, python-format msgid "You cannot select same answer more than one time.'" -msgstr "Неможе да изберете ист одговор повеќе пати.'" +msgstr "Не може да изберете ист одговор повеќе пати.'" #. module: survey #: code:addons/survey/survey.py:685 #, python-format msgid "You cannot duplicate the resource!" -msgstr "Неможе да се дуплира ресурсот!" +msgstr "Не може да се дуплира ресурсот!" #. module: survey #: code:addons/survey/survey.py:523 @@ -1705,7 +1714,7 @@ msgstr "" #. module: survey #: field:survey.answer,menu_choice:0 msgid "Menu Choices" -msgstr "Мени со избори" +msgstr "Мени Избори" #. module: survey #: field:survey,id:0 @@ -1826,7 +1835,7 @@ msgstr "Табела" #: code:addons/survey/wizard/survey_answer.py:117 #, python-format msgid "You cannot answer because the survey is not open." -msgstr "Неможе да одговорите бидејќи анкетата е затворена." +msgstr "Не може да одговорите бидејќи анкетата е затворена." #. module: survey #: field:survey.question,comment_minimum_date:0 diff --git a/addons/survey/i18n/nl.po b/addons/survey/i18n/nl.po index b1cabb79b7f..1669149d9e3 100644 --- a/addons/survey/i18n/nl.po +++ b/addons/survey/i18n/nl.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:39+0000\n" -"PO-Revision-Date: 2013-03-09 09:14+0000\n" +"PO-Revision-Date: 2013-03-28 11:13+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-03-28 06:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: survey @@ -1390,7 +1390,7 @@ msgstr "Open" #, python-format msgid "You must enter one or more answers for question \"%s\" of page %s ." msgstr "" -"U dient éé of meer antwoorden ite geven voor vraag \"%s\" op pagina %s." +"U dient één of meer antwoorden in te geven voor vraag \"%s\" op pagina %s." #. module: survey #: field:survey,tot_start_survey:0 diff --git a/addons/warning/i18n/mk.po b/addons/warning/i18n/mk.po index 0dd62fc9457..158aac13d34 100644 --- a/addons/warning/i18n/mk.po +++ b/addons/warning/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-01 14:25+0000\n" +"PO-Revision-Date: 2013-03-28 23:28+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: warning #: model:ir.model,name:warning.model_purchase_order_line @@ -120,6 +121,9 @@ msgid "" "Selecting \"Blocking Message\" will throw an exception with the message and " "block the flow. The Message has to be written in the next field." msgstr "" +"Селектирањето на опцијата \"Внимание\" ќе го извести корисникот со порака, " +"селектирањето на \"Блокирање на порака\" ќе го отврли исклучокот со порака и " +"ќе го блокира текот. Пораката треба да биде напишана во наредното поле." #. module: warning #: code:addons/warning/warning.py:67 @@ -132,7 +136,7 @@ msgstr "" #: code:addons/warning/warning.py:299 #, python-format msgid "Alert for %s !" -msgstr "Алармирање за %s !" +msgstr "Аларм за %s !" #. module: warning #: view:res.partner:0 @@ -206,7 +210,7 @@ msgstr "Налог за продажба" #. module: warning #: model:ir.model,name:warning.model_stock_picking_out msgid "Delivery Orders" -msgstr "Налози за испорака" +msgstr "Испратници" #. module: warning #: model:ir.model,name:warning.model_sale_order_line diff --git a/addons/web_linkedin/i18n/mk.po b/addons/web_linkedin/i18n/mk.po index ab29c310453..039d18d8935 100644 --- a/addons/web_linkedin/i18n/mk.po +++ b/addons/web_linkedin/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 2013. msgid "" 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-03-02 13:35+0000\n" +"PO-Revision-Date: 2013-03-28 23:29+0000\n" "Last-Translator: Софче Димитријева \n" -"Language-Team: Macedonian \n" +"Language-Team: ESKON-INZENERING\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:04+0000\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: web_linkedin #: view:sale.config.settings:0 @@ -139,4 +140,4 @@ msgstr "Алатката за програмирање е Javascript" #. module: web_linkedin #: view:sale.config.settings:0 msgid "JavaScript API Domain:" -msgstr "JavaScript API Domain:" +msgstr "JavaScript API Домен:" From 3679b0c44c019c5d439aa0f753ff24d5843052bb Mon Sep 17 00:00:00 2001 From: "dle@openerp.com" <> Date: Fri, 29 Mar 2013 12:16:09 +0100 Subject: [PATCH 31/35] [FIX]crm: convert lead to opportunity, opportunity always win vs lead, even if lead.stage > opp.lead bzr revid: dle@openerp.com-20130329111609-7v516rnid2ytk836 --- addons/crm/crm_lead.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index d0be688c8a5..acb9b038bfe 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -22,6 +22,7 @@ from openerp.addons.base_status.base_stage import base_stage import crm from datetime import datetime +from operator import itemgetter from openerp.osv import fields, osv import time from openerp import tools @@ -628,12 +629,14 @@ class crm_lead(base_stage, format_address, osv.osv): opportunities = self.browse(cr, uid, ids, context=context) sequenced_opps = [] for opportunity in opportunities: + sequence = -1 if opportunity.stage_id and opportunity.stage_id.state != 'cancel': - sequenced_opps.append((opportunity.stage_id.sequence, opportunity)) - else: - sequenced_opps.append((-1, opportunity)) - sequenced_opps.sort(key=lambda tup: tup[0], reverse=True) - opportunities = [opportunity for sequence, opportunity in sequenced_opps] + sequence = opportunity.stage_id.sequence + + sequenced_opps.append(((int(opportunity.type == 'opportunity'), sequence), opportunity)) + + sequenced_opps.sort(reverse=True) + opportunities = map(itemgetter(1), sequenced_opps) ids = [opportunity.id for opportunity in opportunities] highest = opportunities[0] opportunities_rest = opportunities[1:] From 43cc95ce2bacef8306a23627cac9967c468bc253 Mon Sep 17 00:00:00 2001 From: Xavier ALT Date: Fri, 29 Mar 2013 12:23:17 +0100 Subject: [PATCH 32/35] [FIX] partner: fix update for company address * when writing an empty value to ADDRESS_FIELDS, that value should also be propagated by update_address() * when creating a contact from a company form view, even with 'use_company_address', company's contact address remains empty. We now force adding missing address fields uppon creation when default 'use_company_address' is True. bzr revid: xal@openerp.com-20130329112317-6lat4jx5x2yh18t6 --- openerp/addons/base/res/res_partner.py | 28 +++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/openerp/addons/base/res/res_partner.py b/openerp/addons/base/res/res_partner.py index 7c9fbf58c64..72c221c5534 100644 --- a/openerp/addons/base/res/res_partner.py +++ b/openerp/addons/base/res/res_partner.py @@ -381,16 +381,30 @@ class res_partner(osv.osv, format_address): def create(self, cr, uid, vals, context=None): if context is None: - context={} + context = {} # Update parent and siblings records - if vals.get('parent_id') and vals.get('use_parent_address'): - domain_siblings = [('parent_id', '=', vals['parent_id']), ('use_parent_address', '=', True)] - update_ids = [vals['parent_id']] + self.search(cr, uid, domain_siblings, context=context) - self.update_address(cr, uid, update_ids, vals, context) - return super(res_partner,self).create(cr, uid, vals, context=context) + if vals.get('parent_id'): + if 'use_parent_address' in vals: + use_parent_address = vals['use_parent_address'] + else: + use_parent_address = self.default_get(cr, uid, ['use_parent_address'], context=context)['use_parent_address'] + + if use_parent_address: + domain_siblings = [('parent_id', '=', vals['parent_id']), ('use_parent_address', '=', True)] + update_ids = [vals['parent_id']] + self.search(cr, uid, domain_siblings, context=context) + self.update_address(cr, uid, update_ids, vals, context) + + # add missing address keys + onchange_values = self.onchange_address(cr, uid, [], use_parent_address, + vals['parent_id'], context=context).get('value') or {} + vals.update(dict((key, value) + for key, value in onchange_values.iteritems() + if key in ADDRESS_FIELDS and key not in vals)) + + return super(res_partner, self).create(cr, uid, vals, context=context) def update_address(self, cr, uid, ids, vals, context=None): - addr_vals = dict((key, vals[key]) for key in POSTAL_ADDRESS_FIELDS if vals.get(key)) + addr_vals = dict((key, vals[key]) for key in POSTAL_ADDRESS_FIELDS if key in vals) if addr_vals: return super(res_partner, self).write(cr, uid, ids, addr_vals, context) From 58a31f00d88b449a88e3fc50416841c5a79897fb Mon Sep 17 00:00:00 2001 From: "dle@openerp.com" <> Date: Fri, 29 Mar 2013 12:59:08 +0100 Subject: [PATCH 33/35] [FIX]crm: crm lead merge, add create_date in argument for sorting bzr revid: dle@openerp.com-20130329115908-gjia2se2kgnkaahh --- addons/crm/crm_lead.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index acb9b038bfe..d420bd93f37 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -632,8 +632,8 @@ class crm_lead(base_stage, format_address, osv.osv): sequence = -1 if opportunity.stage_id and opportunity.stage_id.state != 'cancel': sequence = opportunity.stage_id.sequence - - sequenced_opps.append(((int(opportunity.type == 'opportunity'), sequence), opportunity)) + create_time_reverse = - time.mktime(datetime.strptime(opportunity.create_date, tools.DEFAULT_SERVER_DATETIME_FORMAT).timetuple()) + sequenced_opps.append(((int(opportunity.type == 'opportunity'), sequence, create_time_reverse), opportunity)) sequenced_opps.sort(reverse=True) opportunities = map(itemgetter(1), sequenced_opps) From 2d925d5c271aa6551214bb88ac37d4fd63386665 Mon Sep 17 00:00:00 2001 From: "dle@openerp.com" <> Date: Fri, 29 Mar 2013 14:06:15 +0100 Subject: [PATCH 34/35] [FIX]crm: crm merge tests testing new merge behaviour (opps before leads) bzr revid: dle@openerp.com-20130329130615-gbjqw0x2ybeekext --- addons/crm/crm_lead.py | 3 +-- addons/crm/test/crm_lead_merge.yml | 9 ++++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index d420bd93f37..332390ff2df 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -632,8 +632,7 @@ class crm_lead(base_stage, format_address, osv.osv): sequence = -1 if opportunity.stage_id and opportunity.stage_id.state != 'cancel': sequence = opportunity.stage_id.sequence - create_time_reverse = - time.mktime(datetime.strptime(opportunity.create_date, tools.DEFAULT_SERVER_DATETIME_FORMAT).timetuple()) - sequenced_opps.append(((int(opportunity.type == 'opportunity'), sequence, create_time_reverse), opportunity)) + sequenced_opps.append(((int(opportunity.type == 'opportunity'), sequence, -opportunity.id), opportunity)) sequenced_opps.sort(reverse=True) opportunities = map(itemgetter(1), sequenced_opps) diff --git a/addons/crm/test/crm_lead_merge.yml b/addons/crm/test/crm_lead_merge.yml index c50af5214e6..b14f9272df9 100644 --- a/addons/crm/test/crm_lead_merge.yml +++ b/addons/crm/test/crm_lead_merge.yml @@ -37,20 +37,19 @@ I check for the resulting merged opp (based on name and partner). - !python {model: crm.lead}: | - merge_id = self.search(cr, uid, [('name', '=', 'Test lead 1'), ('partner_id','=', ref("base.res_partner_1"))]) + merge_id = self.search(cr, uid, [('name', '=', 'Test opportunity 1'), ('partner_id','=', ref("base.res_partner_5"))]) assert merge_id, 'Fail to create merge opportunity wizard' merge_result = self.browse(cr, uid, merge_id)[0] - assert merge_result.partner_id.id == ref("base.res_partner_1"), 'Partner mismatch: when merging leads/opps with different m2o values, the first not null value prevails (the other are dropped)' - assert merge_result.description == 'This is the description of the test lead 1.\n\nThis is the description of the test lead 2.\n\nThis is the description of the test opp 1.', 'Description mismatch: when merging leads/opps with different text values, these values should get concatenated and separated with line returns' + assert merge_result.description == 'This is the description of the test opp 1.\n\nThis is the description of the test lead 1.\n\nThis is the description of the test lead 2.', 'Description mismatch: when merging leads/opps with different text values, these values should get concatenated and separated with line returns' assert merge_result.type == 'opportunity', 'Type mismatch: when at least one opp in involved in the merge, the result should be a new opp (instead of %s)' % merge_result.type - The other (tailing) leads/opps shouldn't exist anymore. - !python {model: crm.lead}: | - tailing_lead = self.search(cr, uid, [('id', '=', ref('test_crm_lead_02'))]) + tailing_lead = self.search(cr, uid, [('id', '=', ref('test_crm_lead_01'))]) assert not tailing_lead, 'This tailing lead (id %s) should not exist anymore' % ref('test_crm_lead_02') - tailing_opp = self.search(cr, uid, [('id', '=', ref('test_crm_opp_01'))]) + tailing_opp = self.search(cr, uid, [('id', '=', ref('test_crm_lead_02'))]) assert not tailing_opp, 'This tailing opp (id %s) should not exist anymore' % ref('test_crm_opp_01') - I want to test leads merge. Start by creating two leads (with the same partner). From 252bcc802fe8697124a7882de1b7895f541bf7ad Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Tue, 2 Apr 2013 05:48:17 +0000 Subject: [PATCH 35/35] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130330060824-pc5f2pj14gj0ak27 bzr revid: launchpad_translations_on_behalf_of_openerp-20130331055726-frtzw3gc9ut4wx4y bzr revid: launchpad_translations_on_behalf_of_openerp-20130401053127-tolr13p1b3bhjny1 bzr revid: launchpad_translations_on_behalf_of_openerp-20130402054749-t3x0zc7qk3n4man2 bzr revid: launchpad_translations_on_behalf_of_openerp-20130330060920-k0cnlpk0rxcli841 bzr revid: launchpad_translations_on_behalf_of_openerp-20130331055741-loojniiz6du9upat bzr revid: launchpad_translations_on_behalf_of_openerp-20130401053211-yvt1h32v41rs6jje bzr revid: launchpad_translations_on_behalf_of_openerp-20130402054814-fwg742kzhsupr6kc bzr revid: launchpad_translations_on_behalf_of_openerp-20130329051100-3ul1k4qwwm2f49gt bzr revid: launchpad_translations_on_behalf_of_openerp-20130330060923-wch1f8ndmb15nu6x bzr revid: launchpad_translations_on_behalf_of_openerp-20130331055759-aj1nc93t9420lov0 bzr revid: launchpad_translations_on_behalf_of_openerp-20130401053215-kqqgqefzp95fa1tk bzr revid: launchpad_translations_on_behalf_of_openerp-20130402054817-k33rri349nc2ioiz --- addons/account/i18n/hu.po | 56 +- addons/account/i18n/mk.po | 16 +- addons/account/i18n/nl.po | 6 +- addons/account_analytic_analysis/i18n/hu.po | 24 +- addons/account_analytic_analysis/i18n/sl.po | 77 +- .../i18n/cs.po | 357 +++++ addons/account_budget/i18n/hu.po | 6 +- addons/account_followup/i18n/sl.po | 26 +- addons/account_payment/i18n/hu.po | 8 +- addons/account_sequence/i18n/cs.po | 150 ++ addons/account_test/i18n/cs.po | 241 ++++ addons/account_voucher/i18n/hu.po | 46 +- addons/account_voucher/i18n/mk.po | 8 +- addons/account_voucher/i18n/sl.po | 32 +- addons/analytic/i18n/mk.po | 12 +- addons/analytic/i18n/sl.po | 16 +- .../analytic_contract_hr_expense/i18n/cs.po | 72 + .../analytic_contract_hr_expense/i18n/mk.po | 8 +- addons/anonymization/i18n/cs.po | 331 +++++ addons/association/i18n/sl.po | 6 +- addons/auth_crypt/i18n/cs.po | 41 +- addons/auth_ldap/i18n/cs.po | 159 ++ addons/auth_ldap/i18n/mk.po | 10 +- addons/auth_oauth/i18n/cs.po | 135 ++ addons/auth_oauth_signup/i18n/cs.po | 23 + addons/auth_openid/i18n/cs.po | 97 ++ addons/auth_signup/i18n/cs.po | 307 ++++ addons/auth_signup/i18n/mk.po | 22 +- addons/base_action_rule/i18n/mk.po | 10 +- addons/base_gengo/i18n/cs.po | 269 ++++ addons/base_iban/i18n/mk.po | 8 +- addons/base_import/i18n/cs.po | 1193 +++++++++++++++ addons/base_import/i18n/pt_BR.po | 15 +- addons/base_report_designer/i18n/mk.po | 12 +- addons/base_report_designer/i18n/tr.po | 6 +- addons/base_status/i18n/cs.po | 76 + addons/base_vat/i18n/sl.po | 6 +- addons/crm/i18n/ko.po | 2 +- addons/crm_claim/i18n/cs.po | 881 +++++++++++ addons/crm_claim/i18n/ko.po | 2 +- addons/crm_helpdesk/i18n/cs.po | 708 +++++++++ addons/crm_helpdesk/i18n/ko.po | 2 +- addons/crm_partner_assign/i18n/cs.po | 931 ++++++++++++ addons/crm_partner_assign/i18n/ko.po | 2 +- addons/crm_profiling/i18n/ko.po | 2 +- addons/crm_todo/i18n/cs.po | 85 ++ addons/crm_todo/i18n/ko.po | 2 +- addons/crm_todo/i18n/mk.po | 10 +- addons/document_page/i18n/mk.po | 14 +- addons/document_webdav/i18n/mk.po | 10 +- addons/edi/i18n/cs.po | 87 ++ addons/email_template/i18n/mk.po | 8 +- addons/event/i18n/mk.po | 18 +- addons/event_moodle/i18n/cs.po | 185 +++ addons/event_moodle/i18n/mk.po | 25 +- addons/event_sale/i18n/cs.po | 90 ++ addons/google_base_account/i18n/cs.po | 114 ++ addons/google_docs/i18n/cs.po | 188 +++ addons/google_docs/i18n/mk.po | 12 +- addons/hr/i18n/mk.po | 8 +- addons/hr_evaluation/i18n/cs.po | 924 ++++++++++++ addons/hr_holidays/i18n/mk.po | 2 +- addons/hr_payroll_account/i18n/cs.po | 126 ++ addons/hr_payroll_account/i18n/mk.po | 2 +- addons/hr_recruitment/i18n/cs.po | 1282 +++++++++++++++++ addons/hr_timesheet/i18n/mk.po | 2 +- addons/hr_timesheet_invoice/i18n/mk.po | 2 +- addons/hr_timesheet_sheet/i18n/mk.po | 2 +- addons/knowledge/i18n/mk.po | 2 +- addons/mail/i18n/mk.po | 2 +- addons/marketing/i18n/cs.po | 38 +- addons/marketing_campaign/i18n/cs.po | 10 +- addons/marketing_campaign/i18n/mk.po | 8 +- addons/marketing_campaign/i18n/tr.po | 8 +- addons/marketing_campaign_crm_demo/i18n/mk.po | 2 +- addons/mrp/i18n/mk.po | 2 +- addons/mrp/i18n/sl.po | 6 +- addons/mrp_operations/i18n/mk.po | 2 +- addons/mrp_repair/i18n/mk.po | 2 +- addons/multi_company/i18n/cs.po | 10 +- addons/multi_company/i18n/tr.po | 8 +- addons/note_pad/i18n/cs.po | 28 + addons/plugin_outlook/i18n/cs.po | 89 ++ addons/point_of_sale/i18n/mk.po | 2 +- addons/portal/i18n/cs.po | 63 +- addons/portal/i18n/de.po | 36 +- addons/portal/i18n/mk.po | 2 +- addons/portal_crm/i18n/cs.po | 571 ++++++++ addons/portal_crm/i18n/mk.po | 2 +- addons/portal_event/i18n/mk.po | 2 +- addons/portal_hr_employees/i18n/cs.po | 100 ++ addons/portal_hr_employees/i18n/mk.po | 2 +- addons/portal_project_issue/i18n/mk.po | 2 +- addons/portal_sale/i18n/mk.po | 2 +- addons/procurement/i18n/mk.po | 2 +- addons/procurement/i18n/sl.po | 12 +- addons/product/i18n/mk.po | 2 +- addons/product/i18n/sl.po | 16 +- addons/product_expiry/i18n/mk.po | 2 +- addons/product_margin/i18n/mk.po | 2 +- addons/project/i18n/mk.po | 2 +- addons/project/i18n/tr.po | 55 +- addons/project_gtd/i18n/mk.po | 2 +- addons/project_issue/i18n/cs.po | 981 +++++++++++++ addons/project_issue/i18n/mk.po | 2 +- addons/project_issue_sheet/i18n/cs.po | 72 + addons/project_issue_sheet/i18n/mk.po | 2 +- addons/project_long_term/i18n/cs.po | 507 +++++++ addons/project_long_term/i18n/mk.po | 2 +- addons/project_mrp/i18n/mk.po | 2 +- addons/project_timesheet/i18n/mk.po | 2 +- addons/purchase/i18n/id.po | 24 +- addons/purchase/i18n/mk.po | 2 +- addons/purchase_double_validation/i18n/cs.po | 49 + addons/purchase_requisition/i18n/cs.po | 483 +++++++ addons/purchase_requisition/i18n/mk.po | 2 +- addons/report_intrastat/i18n/mk.po | 2 +- addons/report_webkit/i18n/cs.po | 517 +++++++ addons/report_webkit/i18n/mk.po | 2 +- addons/sale/i18n/ko.po | 2 +- addons/sale/i18n/mk.po | 2 +- addons/sale_crm/i18n/mk.po | 2 +- addons/sale_journal/i18n/mk.po | 2 +- addons/sale_margin/i18n/cs.po | 46 + addons/sale_mrp/i18n/cs.po | 43 + addons/sale_order_dates/i18n/cs.po | 58 + addons/sale_order_dates/i18n/mk.po | 2 +- addons/sale_stock/i18n/mk.po | 2 +- addons/share/i18n/mk.po | 8 +- addons/stock/i18n/mk.po | 133 +- addons/stock/i18n/sl.po | 14 +- addons/stock/i18n/tr.po | 86 +- addons/stock_location/i18n/mk.po | 16 +- addons/subscription/i18n/mk.po | 9 +- addons/survey/i18n/mk.po | 62 +- addons/warning/i18n/mk.po | 2 +- addons/web/i18n/ar.po | 4 +- addons/web/i18n/bg.po | 4 +- addons/web/i18n/bn.po | 4 +- addons/web/i18n/bs.po | 4 +- addons/web/i18n/ca.po | 4 +- addons/web/i18n/cs.po | 4 +- addons/web/i18n/da.po | 4 +- addons/web/i18n/de.po | 4 +- addons/web/i18n/en_AU.po | 4 +- addons/web/i18n/en_GB.po | 4 +- addons/web/i18n/es.po | 4 +- addons/web/i18n/es_CL.po | 4 +- addons/web/i18n/es_CR.po | 4 +- addons/web/i18n/es_DO.po | 4 +- addons/web/i18n/es_EC.po | 4 +- addons/web/i18n/es_MX.po | 4 +- addons/web/i18n/et.po | 4 +- addons/web/i18n/eu.po | 4 +- addons/web/i18n/fa.po | 4 +- addons/web/i18n/fi.po | 4 +- addons/web/i18n/fr.po | 4 +- addons/web/i18n/fr_CA.po | 4 +- addons/web/i18n/gl.po | 4 +- addons/web/i18n/gu.po | 4 +- addons/web/i18n/hi.po | 4 +- addons/web/i18n/hr.po | 4 +- addons/web/i18n/hu.po | 4 +- addons/web/i18n/id.po | 4 +- addons/web/i18n/it.po | 4 +- addons/web/i18n/ja.po | 4 +- addons/web/i18n/ka.po | 4 +- addons/web/i18n/ko.po | 4 +- addons/web/i18n/lo.po | 4 +- addons/web/i18n/lt.po | 4 +- addons/web/i18n/lv.po | 4 +- addons/web/i18n/mk.po | 10 +- addons/web/i18n/mn.po | 4 +- addons/web/i18n/nb.po | 383 ++--- addons/web/i18n/nl.po | 4 +- addons/web/i18n/nl_BE.po | 4 +- addons/web/i18n/pl.po | 4 +- addons/web/i18n/pt.po | 4 +- addons/web/i18n/pt_BR.po | 4 +- addons/web/i18n/ro.po | 4 +- addons/web/i18n/ru.po | 4 +- addons/web/i18n/sk.po | 4 +- addons/web/i18n/sl.po | 16 +- addons/web/i18n/sq.po | 4 +- addons/web/i18n/sr@latin.po | 4 +- addons/web/i18n/sv.po | 4 +- addons/web/i18n/th.po | 4 +- addons/web/i18n/tr.po | 14 +- addons/web/i18n/uk.po | 4 +- addons/web/i18n/zh_CN.po | 4 +- addons/web/i18n/zh_TW.po | 4 +- addons/web_api/i18n/cs.po | 20 + addons/web_api/i18n/es_CR.po | 4 +- addons/web_calendar/i18n/ar.po | 4 +- addons/web_calendar/i18n/bg.po | 4 +- addons/web_calendar/i18n/bn.po | 4 +- addons/web_calendar/i18n/bs.po | 4 +- addons/web_calendar/i18n/ca.po | 4 +- addons/web_calendar/i18n/cs.po | 4 +- addons/web_calendar/i18n/da.po | 4 +- addons/web_calendar/i18n/de.po | 4 +- addons/web_calendar/i18n/en_AU.po | 4 +- addons/web_calendar/i18n/en_GB.po | 4 +- addons/web_calendar/i18n/es.po | 4 +- addons/web_calendar/i18n/es_CL.po | 4 +- addons/web_calendar/i18n/es_CR.po | 4 +- addons/web_calendar/i18n/es_DO.po | 4 +- addons/web_calendar/i18n/es_EC.po | 4 +- addons/web_calendar/i18n/es_MX.po | 4 +- addons/web_calendar/i18n/et.po | 4 +- addons/web_calendar/i18n/eu.po | 4 +- addons/web_calendar/i18n/fa.po | 4 +- addons/web_calendar/i18n/fi.po | 4 +- addons/web_calendar/i18n/fr.po | 4 +- addons/web_calendar/i18n/fr_CA.po | 4 +- addons/web_calendar/i18n/gl.po | 4 +- addons/web_calendar/i18n/gu.po | 4 +- addons/web_calendar/i18n/hr.po | 4 +- addons/web_calendar/i18n/hu.po | 4 +- addons/web_calendar/i18n/id.po | 4 +- addons/web_calendar/i18n/it.po | 4 +- addons/web_calendar/i18n/ja.po | 4 +- addons/web_calendar/i18n/ka.po | 4 +- addons/web_calendar/i18n/ko.po | 4 +- addons/web_calendar/i18n/lt.po | 4 +- addons/web_calendar/i18n/mk.po | 4 +- addons/web_calendar/i18n/mn.po | 4 +- addons/web_calendar/i18n/nb.po | 54 +- addons/web_calendar/i18n/nl.po | 4 +- addons/web_calendar/i18n/nl_BE.po | 4 +- addons/web_calendar/i18n/pl.po | 4 +- addons/web_calendar/i18n/pt.po | 4 +- addons/web_calendar/i18n/pt_BR.po | 4 +- addons/web_calendar/i18n/ro.po | 4 +- addons/web_calendar/i18n/ru.po | 4 +- addons/web_calendar/i18n/sk.po | 4 +- addons/web_calendar/i18n/sl.po | 10 +- addons/web_calendar/i18n/sq.po | 4 +- addons/web_calendar/i18n/sr@latin.po | 4 +- addons/web_calendar/i18n/sv.po | 4 +- addons/web_calendar/i18n/tr.po | 16 +- addons/web_calendar/i18n/uk.po | 4 +- addons/web_calendar/i18n/zh_CN.po | 4 +- addons/web_diagram/i18n/ar.po | 4 +- addons/web_diagram/i18n/bg.po | 4 +- addons/web_diagram/i18n/bn.po | 4 +- addons/web_diagram/i18n/bs.po | 4 +- addons/web_diagram/i18n/ca.po | 4 +- addons/web_diagram/i18n/cs.po | 4 +- addons/web_diagram/i18n/da.po | 4 +- addons/web_diagram/i18n/de.po | 4 +- addons/web_diagram/i18n/en_AU.po | 4 +- addons/web_diagram/i18n/en_GB.po | 4 +- addons/web_diagram/i18n/es.po | 4 +- addons/web_diagram/i18n/es_CL.po | 4 +- addons/web_diagram/i18n/es_CR.po | 4 +- addons/web_diagram/i18n/es_DO.po | 4 +- addons/web_diagram/i18n/es_EC.po | 4 +- addons/web_diagram/i18n/es_MX.po | 4 +- addons/web_diagram/i18n/et.po | 4 +- addons/web_diagram/i18n/fa.po | 4 +- addons/web_diagram/i18n/fi.po | 4 +- addons/web_diagram/i18n/fr.po | 4 +- addons/web_diagram/i18n/gl.po | 4 +- addons/web_diagram/i18n/gu.po | 4 +- addons/web_diagram/i18n/hr.po | 4 +- addons/web_diagram/i18n/hu.po | 4 +- addons/web_diagram/i18n/id.po | 4 +- addons/web_diagram/i18n/it.po | 4 +- addons/web_diagram/i18n/ja.po | 4 +- addons/web_diagram/i18n/ka.po | 4 +- addons/web_diagram/i18n/ko.po | 4 +- addons/web_diagram/i18n/lt.po | 4 +- addons/web_diagram/i18n/mk.po | 4 +- addons/web_diagram/i18n/mn.po | 4 +- addons/web_diagram/i18n/nb.po | 99 ++ addons/web_diagram/i18n/nl.po | 4 +- addons/web_diagram/i18n/nl_BE.po | 4 +- addons/web_diagram/i18n/pl.po | 4 +- addons/web_diagram/i18n/pt.po | 4 +- addons/web_diagram/i18n/pt_BR.po | 4 +- addons/web_diagram/i18n/ro.po | 4 +- addons/web_diagram/i18n/ru.po | 4 +- addons/web_diagram/i18n/sl.po | 4 +- addons/web_diagram/i18n/sq.po | 4 +- addons/web_diagram/i18n/sr@latin.po | 4 +- addons/web_diagram/i18n/sv.po | 4 +- addons/web_diagram/i18n/tr.po | 4 +- addons/web_diagram/i18n/zh_CN.po | 4 +- addons/web_gantt/i18n/ar.po | 4 +- addons/web_gantt/i18n/bg.po | 4 +- addons/web_gantt/i18n/bn.po | 4 +- addons/web_gantt/i18n/bs.po | 4 +- addons/web_gantt/i18n/ca.po | 4 +- addons/web_gantt/i18n/cs.po | 4 +- addons/web_gantt/i18n/da.po | 4 +- addons/web_gantt/i18n/de.po | 4 +- addons/web_gantt/i18n/en_AU.po | 4 +- addons/web_gantt/i18n/en_GB.po | 4 +- addons/web_gantt/i18n/es.po | 4 +- addons/web_gantt/i18n/es_CL.po | 4 +- addons/web_gantt/i18n/es_CR.po | 4 +- addons/web_gantt/i18n/es_DO.po | 4 +- addons/web_gantt/i18n/es_EC.po | 4 +- addons/web_gantt/i18n/es_MX.po | 4 +- addons/web_gantt/i18n/et.po | 4 +- addons/web_gantt/i18n/fa.po | 4 +- addons/web_gantt/i18n/fi.po | 4 +- addons/web_gantt/i18n/fr.po | 4 +- addons/web_gantt/i18n/gl.po | 4 +- addons/web_gantt/i18n/gu.po | 4 +- addons/web_gantt/i18n/hr.po | 4 +- addons/web_gantt/i18n/hu.po | 4 +- addons/web_gantt/i18n/it.po | 4 +- addons/web_gantt/i18n/ja.po | 4 +- addons/web_gantt/i18n/ka.po | 4 +- addons/web_gantt/i18n/ko.po | 4 +- addons/web_gantt/i18n/lo.po | 4 +- addons/web_gantt/i18n/lt.po | 4 +- addons/web_gantt/i18n/mk.po | 4 +- addons/web_gantt/i18n/mn.po | 4 +- addons/web_gantt/i18n/nb.po | 4 +- addons/web_gantt/i18n/nl.po | 4 +- addons/web_gantt/i18n/nl_BE.po | 4 +- addons/web_gantt/i18n/pl.po | 4 +- addons/web_gantt/i18n/pt.po | 4 +- addons/web_gantt/i18n/pt_BR.po | 4 +- addons/web_gantt/i18n/ro.po | 4 +- addons/web_gantt/i18n/ru.po | 4 +- addons/web_gantt/i18n/sl.po | 4 +- addons/web_gantt/i18n/sq.po | 4 +- addons/web_gantt/i18n/sr@latin.po | 4 +- addons/web_gantt/i18n/sv.po | 4 +- addons/web_gantt/i18n/tr.po | 4 +- addons/web_gantt/i18n/zh_CN.po | 4 +- addons/web_graph/i18n/ar.po | 4 +- addons/web_graph/i18n/bg.po | 4 +- addons/web_graph/i18n/bn.po | 4 +- addons/web_graph/i18n/bs.po | 4 +- addons/web_graph/i18n/ca.po | 4 +- addons/web_graph/i18n/cs.po | 4 +- addons/web_graph/i18n/da.po | 4 +- addons/web_graph/i18n/de.po | 4 +- addons/web_graph/i18n/en_AU.po | 4 +- addons/web_graph/i18n/en_GB.po | 4 +- addons/web_graph/i18n/es.po | 4 +- addons/web_graph/i18n/es_CL.po | 4 +- addons/web_graph/i18n/es_CR.po | 4 +- addons/web_graph/i18n/es_DO.po | 4 +- addons/web_graph/i18n/es_EC.po | 4 +- addons/web_graph/i18n/es_MX.po | 4 +- addons/web_graph/i18n/et.po | 4 +- addons/web_graph/i18n/fa.po | 4 +- addons/web_graph/i18n/fi.po | 4 +- addons/web_graph/i18n/fr.po | 4 +- addons/web_graph/i18n/gl.po | 4 +- addons/web_graph/i18n/gu.po | 4 +- addons/web_graph/i18n/hr.po | 4 +- addons/web_graph/i18n/hu.po | 4 +- addons/web_graph/i18n/it.po | 4 +- addons/web_graph/i18n/ja.po | 4 +- addons/web_graph/i18n/ka.po | 4 +- addons/web_graph/i18n/ko.po | 4 +- addons/web_graph/i18n/lt.po | 4 +- addons/web_graph/i18n/mk.po | 4 +- addons/web_graph/i18n/mn.po | 4 +- addons/web_graph/i18n/nb.po | 137 ++ addons/web_graph/i18n/nl.po | 4 +- addons/web_graph/i18n/nl_BE.po | 4 +- addons/web_graph/i18n/pl.po | 4 +- addons/web_graph/i18n/pt.po | 4 +- addons/web_graph/i18n/pt_BR.po | 4 +- addons/web_graph/i18n/ro.po | 4 +- addons/web_graph/i18n/ru.po | 4 +- addons/web_graph/i18n/sl.po | 4 +- addons/web_graph/i18n/sq.po | 4 +- addons/web_graph/i18n/sr@latin.po | 4 +- addons/web_graph/i18n/sv.po | 4 +- addons/web_graph/i18n/tr.po | 4 +- addons/web_graph/i18n/zh_CN.po | 4 +- addons/web_hello/i18n/ar.po | 4 +- addons/web_hello/i18n/cs.po | 20 + addons/web_hello/i18n/es_CR.po | 4 +- addons/web_hello/i18n/fr.po | 4 +- addons/web_hello/i18n/pt_BR.po | 4 +- addons/web_kanban/i18n/ar.po | 4 +- addons/web_kanban/i18n/bg.po | 4 +- addons/web_kanban/i18n/bn.po | 4 +- addons/web_kanban/i18n/bs.po | 4 +- addons/web_kanban/i18n/ca.po | 4 +- addons/web_kanban/i18n/cs.po | 4 +- addons/web_kanban/i18n/da.po | 4 +- addons/web_kanban/i18n/de.po | 4 +- addons/web_kanban/i18n/en_AU.po | 4 +- addons/web_kanban/i18n/en_GB.po | 4 +- addons/web_kanban/i18n/es.po | 4 +- addons/web_kanban/i18n/es_CL.po | 4 +- addons/web_kanban/i18n/es_CR.po | 4 +- addons/web_kanban/i18n/es_DO.po | 4 +- addons/web_kanban/i18n/es_EC.po | 4 +- addons/web_kanban/i18n/es_MX.po | 4 +- addons/web_kanban/i18n/et.po | 4 +- addons/web_kanban/i18n/fa.po | 4 +- addons/web_kanban/i18n/fi.po | 4 +- addons/web_kanban/i18n/fr.po | 6 +- addons/web_kanban/i18n/gl.po | 4 +- addons/web_kanban/i18n/gu.po | 4 +- addons/web_kanban/i18n/hr.po | 4 +- addons/web_kanban/i18n/hu.po | 4 +- addons/web_kanban/i18n/it.po | 4 +- addons/web_kanban/i18n/ja.po | 4 +- addons/web_kanban/i18n/ka.po | 4 +- addons/web_kanban/i18n/ko.po | 4 +- addons/web_kanban/i18n/lt.po | 4 +- addons/web_kanban/i18n/mk.po | 4 +- addons/web_kanban/i18n/mn.po | 4 +- addons/web_kanban/i18n/nb.po | 162 +++ addons/web_kanban/i18n/nl.po | 4 +- addons/web_kanban/i18n/nl_BE.po | 4 +- addons/web_kanban/i18n/pl.po | 4 +- addons/web_kanban/i18n/pt.po | 4 +- addons/web_kanban/i18n/pt_BR.po | 4 +- addons/web_kanban/i18n/ro.po | 4 +- addons/web_kanban/i18n/ru.po | 4 +- addons/web_kanban/i18n/sl.po | 10 +- addons/web_kanban/i18n/sr@latin.po | 4 +- addons/web_kanban/i18n/sv.po | 4 +- addons/web_kanban/i18n/tr.po | 8 +- addons/web_kanban/i18n/zh_CN.po | 4 +- addons/web_linkedin/i18n/cs.po | 137 ++ addons/web_linkedin/i18n/mk.po | 2 +- addons/web_tests/i18n/cs.po | 20 + addons/web_tests/i18n/es_CR.po | 4 +- addons/web_tests/i18n/fr_CA.po | 4 +- addons/web_view_editor/i18n/ar.po | 4 +- addons/web_view_editor/i18n/cs.po | 4 +- addons/web_view_editor/i18n/de.po | 4 +- addons/web_view_editor/i18n/en_AU.po | 4 +- addons/web_view_editor/i18n/es.po | 4 +- addons/web_view_editor/i18n/es_DO.po | 4 +- addons/web_view_editor/i18n/es_EC.po | 4 +- addons/web_view_editor/i18n/es_MX.po | 4 +- addons/web_view_editor/i18n/et.po | 4 +- addons/web_view_editor/i18n/fa.po | 4 +- addons/web_view_editor/i18n/fr.po | 4 +- addons/web_view_editor/i18n/hr.po | 4 +- addons/web_view_editor/i18n/hu.po | 4 +- addons/web_view_editor/i18n/it.po | 4 +- addons/web_view_editor/i18n/ko.po | 4 +- addons/web_view_editor/i18n/mk.po | 4 +- addons/web_view_editor/i18n/mn.po | 4 +- addons/web_view_editor/i18n/nb.po | 184 +++ addons/web_view_editor/i18n/nl.po | 4 +- addons/web_view_editor/i18n/nl_BE.po | 4 +- addons/web_view_editor/i18n/pl.po | 4 +- addons/web_view_editor/i18n/pt.po | 4 +- addons/web_view_editor/i18n/pt_BR.po | 4 +- addons/web_view_editor/i18n/ro.po | 4 +- addons/web_view_editor/i18n/ru.po | 4 +- addons/web_view_editor/i18n/sl.po | 4 +- addons/web_view_editor/i18n/tr.po | 4 +- addons/web_view_editor/i18n/zh_CN.po | 4 +- openerp/addons/base/i18n/cs.po | 2 +- openerp/addons/base/i18n/he.po | 116 +- openerp/addons/base/i18n/ko.po | 2 +- openerp/addons/base/i18n/mk.po | 92 +- openerp/addons/base/i18n/sl.po | 46 +- openerp/addons/base/i18n/tr.po | 51 +- 468 files changed, 15157 insertions(+), 1539 deletions(-) create mode 100644 addons/account_bank_statement_extensions/i18n/cs.po create mode 100644 addons/account_sequence/i18n/cs.po create mode 100644 addons/account_test/i18n/cs.po create mode 100644 addons/analytic_contract_hr_expense/i18n/cs.po create mode 100644 addons/anonymization/i18n/cs.po create mode 100644 addons/auth_ldap/i18n/cs.po create mode 100644 addons/auth_oauth/i18n/cs.po create mode 100644 addons/auth_oauth_signup/i18n/cs.po create mode 100644 addons/auth_openid/i18n/cs.po create mode 100644 addons/auth_signup/i18n/cs.po create mode 100644 addons/base_gengo/i18n/cs.po create mode 100644 addons/base_import/i18n/cs.po create mode 100644 addons/base_status/i18n/cs.po create mode 100644 addons/crm_claim/i18n/cs.po create mode 100644 addons/crm_helpdesk/i18n/cs.po create mode 100644 addons/crm_partner_assign/i18n/cs.po create mode 100644 addons/crm_todo/i18n/cs.po create mode 100644 addons/edi/i18n/cs.po create mode 100644 addons/event_moodle/i18n/cs.po create mode 100644 addons/event_sale/i18n/cs.po create mode 100644 addons/google_base_account/i18n/cs.po create mode 100644 addons/google_docs/i18n/cs.po create mode 100644 addons/hr_evaluation/i18n/cs.po create mode 100644 addons/hr_payroll_account/i18n/cs.po create mode 100644 addons/hr_recruitment/i18n/cs.po create mode 100644 addons/note_pad/i18n/cs.po create mode 100644 addons/plugin_outlook/i18n/cs.po create mode 100644 addons/portal_crm/i18n/cs.po create mode 100644 addons/portal_hr_employees/i18n/cs.po create mode 100644 addons/project_issue/i18n/cs.po create mode 100644 addons/project_issue_sheet/i18n/cs.po create mode 100644 addons/project_long_term/i18n/cs.po create mode 100644 addons/purchase_double_validation/i18n/cs.po create mode 100644 addons/purchase_requisition/i18n/cs.po create mode 100644 addons/report_webkit/i18n/cs.po create mode 100644 addons/sale_margin/i18n/cs.po create mode 100644 addons/sale_mrp/i18n/cs.po create mode 100644 addons/sale_order_dates/i18n/cs.po create mode 100644 addons/web_api/i18n/cs.po create mode 100644 addons/web_diagram/i18n/nb.po create mode 100644 addons/web_graph/i18n/nb.po create mode 100644 addons/web_hello/i18n/cs.po create mode 100644 addons/web_kanban/i18n/nb.po create mode 100644 addons/web_linkedin/i18n/cs.po create mode 100644 addons/web_tests/i18n/cs.po create mode 100644 addons/web_view_editor/i18n/nb.po diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index da6eb1990d4..1d12ef1723a 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/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-03-28 18:12+0000\n" -"Last-Translator: Balint (eSolve) \n" +"PO-Revision-Date: 2013-04-01 18:25+0000\n" +"Last-Translator: Herczeg Péter \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-29 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:47+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account @@ -152,7 +152,7 @@ msgstr "Figyelem!" #: code:addons/account/account.py:3159 #, python-format msgid "Miscellaneous Journal" -msgstr "" +msgstr "Vegyes napló" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -239,12 +239,12 @@ msgstr "Belga kimutatások" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Jóváhagyott" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "Bevétel nézet" #. module: account #: help:account.account,user_type:0 @@ -315,7 +315,7 @@ msgstr "Párosítás visszavonása" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "Költségvetés kezelés" #. module: account #: view:product.template:0 @@ -438,7 +438,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Időszak:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -601,7 +601,7 @@ msgstr "A könyvelő jóváhagyja a kivonatot." #: code:addons/account/static/src/xml/account_move_reconciliation.xml:31 #, python-format msgid "Nothing to reconcile" -msgstr "" +msgstr "Nincs párosítandó tétel" #. module: account #: field:account.config.settings,decimal_precision:0 @@ -659,7 +659,7 @@ msgstr "" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Nyereség számla" #. module: account #: code:addons/account/account_move_line.py:1159 @@ -742,7 +742,7 @@ msgstr "Vevő számlák" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "A cég bankszámláinak beállítása" #. module: account #: view:account.invoice.refund:0 @@ -795,7 +795,7 @@ msgstr "" #. module: account #: view:account.account:0 msgid "Account code" -msgstr "" +msgstr "Számla kód" #. module: account #: selection:account.financial.report,display_detail:0 @@ -913,7 +913,7 @@ msgstr "Naplókód/Megnevezés" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Számla kódja és neve" #. module: account #: selection:account.entries.report,month:0 @@ -990,12 +990,12 @@ msgstr "Esedékes" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "" +msgstr "Beszerzés napló" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid msgid "Invoice paid" -msgstr "" +msgstr "Kifizetett számla" #. module: account #: view:validate.account.move:0 @@ -1145,7 +1145,7 @@ msgstr "Számla megnevezése" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Nyitás előző záróegyenleggel" #. module: account #: help:account.tax.code,notprintable:0 @@ -1320,7 +1320,7 @@ msgstr "Csökkenéseknél használt árfolyam" #: view:account.analytic.account:0 #: field:account.config.settings,chart_template_id:0 msgid "Template" -msgstr "" +msgstr "Sablon" #. module: account #: selection:account.analytic.journal,type:0 @@ -1438,7 +1438,7 @@ msgstr "Válassza ki a kezdő és a záró időszakot" #: model:account.financial.report,name:account.account_financial_report_profitandloss0 #: model:ir.actions.act_window,name:account.action_account_report_pl msgid "Profit and Loss" -msgstr "" +msgstr "Eredménykimutatás" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1488,7 +1488,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 msgid "Invoice sequence" -msgstr "" +msgstr "Számla sorszám" #. module: account #: model:ir.model,name:account.model_account_entries_report @@ -1511,7 +1511,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Számla állapota" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -1540,7 +1540,7 @@ msgstr "Vevő számla" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (másolat)" #. module: account #: selection:account.balance.report,display_account:0 @@ -1614,12 +1614,12 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "" +msgstr "Jóváírás" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "Számlázás & Kifizetések" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -1699,7 +1699,7 @@ msgstr "Nettó érték" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Speciális beállítások" #. module: account #: view:account.bank.statement:0 @@ -1782,7 +1782,7 @@ msgstr "Számla" #. module: account #: field:account.move,balance:0 msgid "balance" -msgstr "" +msgstr "egyenleg" #. module: account #: model:process.node,note:account.process_node_analytic0 @@ -1894,7 +1894,7 @@ msgstr "" #. module: account #: field:account.report.general.ledger,sortby:0 msgid "Sort by" -msgstr "" +msgstr "Rendezés" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all @@ -1909,7 +1909,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Időtartam" #. module: account #: view:account.bank.statement:0 @@ -1978,7 +1978,7 @@ msgstr "Követel összeg" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Üzenetek" #. module: account #: view:account.vat.declaration:0 diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index 99d9bc279d7..6addf696e4a 100644 --- a/addons/account/i18n/mk.po +++ b/addons/account/i18n/mk.po @@ -9,13 +9,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-03-28 21:11+0000\n" +"PO-Revision-Date: 2013-03-29 09:22+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: ESKON-INZENERING\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:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -6031,9 +6031,9 @@ msgid "" "payment term!\n" "Please define partner on it!" msgstr "" -"Maturity date of entry line generated by model line '%s' is based on partner " -"payment term!\n" -"Please define partner on it!" +"Датумот на доспевање на ставката од внесот генерирана со ставката на моделот " +"'%s' е заснована на рокот за плаќање на партнерот!\n" +"Дефинирајте партнер на него!" #. module: account #: field:account.tax.code,sign:0 @@ -9738,6 +9738,9 @@ msgid "" "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Не може да ја направите оваа измена на порамнет внес. Може да измените само " +"незадолжителни полиња или мора прво да ги отпорамните.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -10647,6 +10650,9 @@ msgid "" "some non legal fields or you must unconfirm the journal entry first.\n" "%s." msgstr "" +"Не може да ја направите оваа измена на потврден внес. Може да измените само " +"незадолжителни полиња или мора прво да ја отстраните потврдата.\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 1caa122a3f4..4957c39284d 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.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-03-26 14:28+0000\n" +"PO-Revision-Date: 2013-03-31 12:57+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-03-28 05:22+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account @@ -2287,7 +2287,7 @@ msgstr "" "

\n" " Klik om een bankafschrift te registreren.\n" "

\n" -" Een bankafschrift is een samenvatting van alle financiele " +" Een bankafschrift is een samenvatting van alle financiële " "transacties\n" " van een bankrekening gedurende een bepaalde periode.\n" " U ontvangt deze periodiek van uw bank.\n" diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index 6e597b306d3..bd8b3ee9255 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/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-03-03 14:19+0000\n" +"PO-Revision-Date: 2013-04-01 18:12+0000\n" "Last-Translator: Herczeg Péter \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:28+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:47+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis @@ -30,7 +30,7 @@ msgstr "Csoportosítás..." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Template" -msgstr "" +msgstr "Sablon" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -106,7 +106,7 @@ msgstr "Ezen gyűjtőkód alapján a vevőnek összesen kiszámlázott összeg." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Cancelled" -msgstr "" +msgstr "Érvénytelenített" #. module: account_analytic_analysis #: help:account.analytic.account,timesheet_ca_invoiced:0 @@ -194,7 +194,7 @@ msgstr "Elvárt" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Closed contracts" -msgstr "" +msgstr "Lezárt szerződések" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 @@ -226,7 +226,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Pricelist" -msgstr "" +msgstr "Árlista" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_hours:0 @@ -275,7 +275,7 @@ msgstr "Valós fedezet" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts assigned to a customer." -msgstr "" +msgstr "Vevőhöz rendelt szeződések" #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_month @@ -285,7 +285,7 @@ msgstr "Havonkénti óraösszesítő" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Pending contracts" -msgstr "" +msgstr "Függő szerződések" #. module: account_analytic_analysis #: help:account.analytic.account,real_margin_rate:0 @@ -332,7 +332,7 @@ msgstr "Kezdési dátum" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Expiring soon" -msgstr "" +msgstr "Hamarosan lejár" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -417,7 +417,7 @@ msgstr "Munkaidő kimutatások" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Closed" -msgstr "" +msgstr "Lezárt" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 @@ -577,7 +577,7 @@ msgstr "Teljes számlázva" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "In Progress" -msgstr "" +msgstr "Folyamatban" #. module: account_analytic_analysis #: help:account.analytic.account,remaining_ca:0 @@ -589,7 +589,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts in progress (open, draft)" -msgstr "" +msgstr "Folyamatban lévő szerződések (tervezett, nyitott)" #. module: account_analytic_analysis #: field:account.analytic.account,last_invoice_date:0 diff --git a/addons/account_analytic_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index c99cb973b29..034bb7a8c93 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/i18n/sl.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-03-17 17:40+0000\n" +"PO-Revision-Date: 2013-03-31 11:15+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:28+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account_analytic_analysis @@ -50,7 +50,7 @@ msgstr "Dejansko pokritje (%)" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "End date passed or prepaid unit consumed" -msgstr "" +msgstr "Prekoračen časovni okvira ali kvota" #. module: account_analytic_analysis #: field:account.analytic.account,last_worked_date:0 @@ -113,7 +113,7 @@ msgstr "Vsota postavk časovnice , zaračunanih za to pogodbo." #. module: account_analytic_analysis #: model:email.template,subject:account_analytic_analysis.account_analytic_cron_email_template msgid "Contract expiration reminder ${user.company_id.name}" -msgstr "" +msgstr "Opomnik poteklih pogodb${user.company_id.name}" #. module: account_analytic_analysis #: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 @@ -402,6 +402,71 @@ msgid "" "\n" " " msgstr "" +"\n" +"Hello ${object.name},\n" +"\n" +"% macro account_table(values):\n" +"\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % for partner, accounts in values:\n" +" % for account in accounts:\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % endfor\n" +" % endfor\n" +"
CustomerContractDatesPrepaid UnitsContact
${partner.name}${account.name}${account.date_start} to ${account.date and account.date or " +"'???'}\n" +" % if account.quantity_max != 0.0:\n" +" ${account.remaining_hours}/${account.quantity_max} units\n" +" % endif\n" +" ${account.partner_id.phone or ''}, " +"${account.partner_id.email or ''}
\n" +"% endmacro \n" +"\n" +"% if \"new\" in ctx[\"data\"]:\n" +"

The following contracts just expired:

\n" +" ${account_table(ctx[\"data\"][\"new\"].iteritems())}\n" +"% endif\n" +"\n" +"% if \"old\" in ctx[\"data\"]:\n" +"

The following expired contracts are still not processed:

\n" +" ${account_table(ctx[\"data\"][\"old\"].iteritems())}\n" +"% endif\n" +"\n" +"% if \"future\" in ctx[\"data\"]:\n" +"

The following contracts will expire in less than one month:

\n" +" ${account_table(ctx[\"data\"][\"future\"].iteritems())}\n" +"% endif\n" +"\n" +"

\n" +" You can check all contracts to be renewed using the menu:\n" +"

\n" +"
    \n" +"
  • Sales / Invoicing / Contracts to Renew
  • \n" +"
\n" +"

\n" +" Thanks,\n" +"

\n" +"\n" +"
\n"
+"-- \n"
+"OpenERP Automatic Email\n"
+"
\n" +"\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -527,7 +592,7 @@ msgstr "Prihodek na časovno enoto" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Expired or consumed" -msgstr "" +msgstr "Poteklo ali porabljeno" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all @@ -582,7 +647,7 @@ msgstr "" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts in progress (open, draft)" -msgstr "" +msgstr "Pogodbe v teku" #. module: account_analytic_analysis #: field:account.analytic.account,last_invoice_date:0 diff --git a/addons/account_bank_statement_extensions/i18n/cs.po b/addons/account_bank_statement_extensions/i18n/cs.po new file mode 100644 index 00000000000..02209102c99 --- /dev/null +++ b/addons/account_bank_statement_extensions/i18n/cs.po @@ -0,0 +1,357 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:42+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: account_bank_statement_extensions +#: help:account.bank.statement.line.global,name:0 +msgid "Originator to Beneficiary Information" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: selection:account.bank.statement.line,state:0 +msgid "Confirmed" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement:0 +#: view:account.bank.statement.line:0 +msgid "Glob. Id" +msgstr "" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "CODA" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,parent_id:0 +msgid "Parent Code" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Debit" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_cancel_statement_line +#: model:ir.model,name:account_bank_statement_extensions.model_cancel_statement_line +msgid "Cancel selected statement lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,val_date:0 +msgid "Value Date" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Group By..." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: selection:account.bank.statement.line,state:0 +msgid "Draft" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_confirm_statement_line +#: model:ir.model,name:account_bank_statement_extensions.model_confirm_statement_line +msgid "Confirm selected statement lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +#: model:ir.actions.report.xml,name:account_bank_statement_extensions.bank_statement_balance_report +msgid "Bank Statement Balances Report" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +msgid "Cancel Lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line_global +msgid "Batch Payment Info" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,state:0 +msgid "Status" +msgstr "" + +#. module: account_bank_statement_extensions +#: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 +#, python-format +msgid "" +"Delete operation not allowed. Please go to the associated bank " +"statement in order to delete and/or modify bank statement line." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "or" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Confirm Lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +msgid "Transactions" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,type:0 +msgid "Type" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: report:bank.statement.balance.report:0 +msgid "Journal" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Confirmed Statement Lines." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Credit Transactions." +msgstr "" + +#. module: account_bank_statement_extensions +#: model:ir.actions.act_window,help:account_bank_statement_extensions.action_cancel_statement_line +msgid "cancel selected statement lines." +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_number:0 +msgid "Counterparty Number" +msgstr "" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Closing Balance" +msgstr "" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Date" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +#: field:account.bank.statement.line,globalisation_amount:0 +msgid "Glob. Amount" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Debit Transactions." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Extended Filters..." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Confirmed lines cannot be changed anymore." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:cancel.statement.line:0 +msgid "Are you sure you want to cancel the selected Bank Statement lines ?" +msgstr "" + +#. module: account_bank_statement_extensions +#: report:bank.statement.balance.report:0 +msgid "Name" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,name:0 +msgid "OBI" +msgstr "" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "ISO 20022" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Notes" +msgstr "" + +#. module: account_bank_statement_extensions +#: selection:account.bank.statement.line.global,type:0 +msgid "Manual" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Bank Transaction" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Credit" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,amount:0 +msgid "Amount" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Fin.Account" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_currency:0 +msgid "Counterparty Currency" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_bic:0 +msgid "Counterparty BIC" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,child_ids:0 +msgid "Child Codes" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Search Bank Transactions" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Are you sure you want to confirm the selected Bank Statement lines ?" +msgstr "" + +#. module: account_bank_statement_extensions +#: help:account.bank.statement.line,globalisation_id:0 +msgid "" +"Code to identify transactions belonging to the same globalisation level " +"within a batch payment" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Draft Statement Lines." +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Glob. Am." +msgstr "" + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line +msgid "Bank Statement Line" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,code:0 +msgid "Code" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,counterparty_name:0 +msgid "Counterparty Name" +msgstr "" + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: account_bank_statement_extensions +#: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement +msgid "Bank Statement" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement Line" +msgstr "" + +#. module: account_bank_statement_extensions +#: sql_constraint:account.bank.statement.line.global:0 +msgid "The code must be unique !" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line.global,bank_statement_line_ids:0 +#: model:ir.actions.act_window,name:account_bank_statement_extensions.action_bank_statement_line +#: model:ir.ui.menu,name:account_bank_statement_extensions.bank_statement_line +msgid "Bank Statement Lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line.global:0 +msgid "Child Batch Payments" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:confirm.statement.line:0 +msgid "Cancel" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Statement Lines" +msgstr "" + +#. module: account_bank_statement_extensions +#: view:account.bank.statement.line:0 +msgid "Total Amount" +msgstr "" + +#. module: account_bank_statement_extensions +#: field:account.bank.statement.line,globalisation_id:0 +msgid "Globalisation ID" +msgstr "" diff --git a/addons/account_budget/i18n/hu.po b/addons/account_budget/i18n/hu.po index 0b28707ad7b..7961a327bb5 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/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-03-03 14:19+0000\n" +"PO-Revision-Date: 2013-04-01 18:07+0000\n" "Last-Translator: Herczeg Péter \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:29+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:47+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account_budget @@ -344,7 +344,7 @@ msgstr "vagy" #. module: account_budget #: view:crossovered.budget:0 msgid "Cancel Budget" -msgstr "" +msgstr "Költségvetés törlése" #. module: account_budget #: report:account.budget:0 diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index e7b3f1c0f86..18179d3c7da 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/i18n/sl.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-03-17 17:41+0000\n" +"PO-Revision-Date: 2013-03-31 11:39+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:30+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account_followup @@ -487,7 +487,7 @@ msgstr "Plačila opominov" msgid "" "The followup plan defined for the current company does not have any followup " "action." -msgstr "" +msgstr "Plan opominov za podjetje nima določenih nobenih akcij." #. module: account_followup #: field:account_followup.followup.line,delay:0 @@ -559,7 +559,7 @@ msgstr "Izpisano sporočilo" #. module: account_followup #: view:res.partner:0 msgid "Responsible of credit collection" -msgstr "" +msgstr "Odgovorni za kredit" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:155 @@ -652,6 +652,8 @@ msgid "" "He said the problem was temporary and promised to pay 50% before 15th of " "May, balance before 1st of July." msgstr "" +"Pravi da je problem začasen in da bo plačal 50% v enem mesecu in 50% v dveh " +"mesecih." #. module: account_followup #: view:res.partner:0 @@ -692,7 +694,7 @@ msgstr "Analiza opominov" #. module: account_followup #: view:res.partner:0 msgid "Action to be taken e.g. Give a phonecall, Check if it's paid, ..." -msgstr "" +msgstr "Akcija , ki jo je treba storiti ." #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -868,7 +870,7 @@ msgstr "Izpisano poročilo zapadlih plačil" #, python-format msgid "" "You became responsible to do the next action for the payment follow-up of" -msgstr "" +msgstr "Postali ste odgovorni za naslednjo akcijo." #. module: account_followup #: help:account_followup.followup.line,manual_action:0 @@ -904,7 +906,7 @@ msgstr "Postavke dnevnika" #: code:addons/account_followup/account_followup.py:281 #, python-format msgid "Amount due" -msgstr "" +msgstr "Zapadli znesek" #. module: account_followup #: report:account_followup.followup.print:0 @@ -941,7 +943,7 @@ msgstr "Zapadli znesek" #: code:addons/account_followup/account_followup.py:264 #, python-format msgid "Lit." -msgstr "" +msgstr "Sporno" #. module: account_followup #: help:res.partner,latest_followup_level_id_without_lit:0 @@ -1125,7 +1127,7 @@ msgstr " imel neznane email naslove" #: help:account_followup.print,test_print:0 msgid "" "Check if you want to print follow-ups without changing follow-up level." -msgstr "" +msgstr "Označite , če želite tiskati opomine brez spremembe nivoja ." #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_finance_followup @@ -1205,7 +1207,7 @@ msgstr "Postavke parterja" #. module: account_followup #: view:account_followup.followup.line:0 msgid "e.g. Call the customer, check if it's paid, ..." -msgstr "" +msgstr "npr. klic stranke, preverba plačila .." #. module: account_followup #: view:account_followup.stat:0 @@ -1365,7 +1367,7 @@ msgstr "Skupaj v dobro" msgid "" "The partner does not have any accounting entries to print in the overdue " "report for the current company." -msgstr "" +msgstr "Partner nima nobenih zapadlih postavk." #. module: account_followup #: field:account_followup.followup.line,sequence:0 @@ -1430,7 +1432,7 @@ msgstr "" #: code:addons/account_followup/account_followup.py:319 #, python-format msgid "There is no followup plan defined for the current company." -msgstr "" +msgstr "Ni načrta opominov za trenutno podjetej." #. module: account_followup #: field:res.partner,payment_note:0 diff --git a/addons/account_payment/i18n/hu.po b/addons/account_payment/i18n/hu.po index 0cb501dba8a..a7402668d1a 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/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-03-28 18:09+0000\n" -"Last-Translator: Balint (eSolve) \n" +"PO-Revision-Date: 2013-04-01 15:49+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-29 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account_payment @@ -680,7 +680,7 @@ msgstr "Átutalási megbízás" #. module: account_payment #: view:payment.order:0 msgid "Cancel Payments" -msgstr "" +msgstr "Átutalások visszavonása" #. module: account_payment #: field:payment.order,total:0 diff --git a/addons/account_sequence/i18n/cs.po b/addons/account_sequence/i18n/cs.po new file mode 100644 index 00000000000..1363253e065 --- /dev/null +++ b/addons/account_sequence/i18n/cs.po @@ -0,0 +1,150 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:43+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: account_sequence +#: view:account.sequence.installer:0 +#: model:ir.actions.act_window,name:account_sequence.action_account_seq_installer +msgid "Account Sequence Application Configuration" +msgstr "" + +#. module: account_sequence +#: help:account.move,internal_sequence_number:0 +#: help:account.move.line,internal_sequence_number:0 +msgid "Internal Sequence Number" +msgstr "" + +#. module: account_sequence +#: help:account.sequence.installer,number_next:0 +msgid "Next number of this sequence" +msgstr "" + +#. module: account_sequence +#: field:account.sequence.installer,number_next:0 +msgid "Next Number" +msgstr "" + +#. module: account_sequence +#: field:account.sequence.installer,number_increment:0 +msgid "Increment Number" +msgstr "" + +#. module: account_sequence +#: help:account.sequence.installer,number_increment:0 +msgid "The next number of the sequence will be incremented by this number" +msgstr "" + +#. module: account_sequence +#: view:account.sequence.installer:0 +msgid "Configure Your Account Sequence Application" +msgstr "" + +#. module: account_sequence +#: view:account.sequence.installer:0 +msgid "Configure" +msgstr "" + +#. module: account_sequence +#: help:account.sequence.installer,suffix:0 +msgid "Suffix value of the record for the sequence" +msgstr "" + +#. module: account_sequence +#: field:account.sequence.installer,company_id:0 +msgid "Company" +msgstr "" + +#. module: account_sequence +#: field:account.sequence.installer,padding:0 +msgid "Number padding" +msgstr "" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_move_line +msgid "Journal Items" +msgstr "" + +#. module: account_sequence +#: field:account.move,internal_sequence_number:0 +#: field:account.move.line,internal_sequence_number:0 +msgid "Internal Number" +msgstr "" + +#. module: account_sequence +#: help:account.sequence.installer,padding:0 +msgid "" +"OpenERP will automatically adds some '0' on the left of the 'Next Number' to " +"get the required padding size." +msgstr "" + +#. module: account_sequence +#: field:account.sequence.installer,name:0 +msgid "Name" +msgstr "" + +#. module: account_sequence +#: field:account.journal,internal_sequence_id:0 +msgid "Internal Sequence" +msgstr "" + +#. module: account_sequence +#: help:account.sequence.installer,prefix:0 +msgid "Prefix value of the record for the sequence" +msgstr "" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_move +msgid "Account Entry" +msgstr "" + +#. module: account_sequence +#: field:account.sequence.installer,suffix:0 +msgid "Suffix" +msgstr "" + +#. module: account_sequence +#: view:account.sequence.installer:0 +msgid "title" +msgstr "" + +#. module: account_sequence +#: field:account.sequence.installer,prefix:0 +msgid "Prefix" +msgstr "" + +#. module: account_sequence +#: help:account.journal,internal_sequence_id:0 +msgid "" +"This sequence will be used to maintain the internal number for the journal " +"entries related to this journal." +msgstr "" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_sequence_installer +msgid "account.sequence.installer" +msgstr "" + +#. module: account_sequence +#: model:ir.model,name:account_sequence.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_sequence +#: view:account.sequence.installer:0 +msgid "You can enhance the Account Sequence Application by installing ." +msgstr "" diff --git a/addons/account_test/i18n/cs.po b/addons/account_test/i18n/cs.po new file mode 100644 index 00000000000..c9ef4ce2c68 --- /dev/null +++ b/addons/account_test/i18n/cs.po @@ -0,0 +1,241 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:43+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "" +"Code should always set a variable named `result` with the result of your " +"test, that can be a list or\n" +"a dictionary. If `result` is an empty list, it means that the test was " +"succesful. Otherwise it will\n" +"try to translate and print what is inside `result`.\n" +"\n" +"If the result of your test is a dictionary, you can set a variable named " +"`column_order` to choose in\n" +"what order you want to print `result`'s content.\n" +"\n" +"Should you need them, you can also use the following variables into your " +"code:\n" +" * cr: cursor to the database\n" +" * uid: ID of the current user\n" +"\n" +"In any ways, the code must be legal python statements with correct " +"indentation (if needed).\n" +"\n" +"Example: \n" +" sql = '''SELECT id, name, ref, date\n" +" FROM account_move_line \n" +" WHERE account_id IN (SELECT id FROM account_account WHERE type " +"= 'view')\n" +" '''\n" +" cr.execute(sql)\n" +" result = cr.dictfetchall()" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_02 +msgid "Test 2: Opening a fiscal year" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_05 +msgid "" +"Check that reconciled invoice for Sales/Purchases has reconciled entries for " +"Payable and Receivable Accounts" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_03 +msgid "" +"Check if movement lines are balanced and have the same date and period" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,name:0 +msgid "Test Name" +msgstr "" + +#. module: account_test +#: report:account.test.assert.print:0 +msgid "Accouting tests on" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_01 +msgid "Test 1: General balance" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_06 +msgid "Check that paid/reconciled invoices are not in 'Open' state" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_05_2 +msgid "" +"Check that reconciled account moves, that define Payable and Receivable " +"accounts, are belonging to reconciled invoices" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Tests" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,desc:0 +msgid "Test Description" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Description" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_06_1 +msgid "Check that there's no move for any account with « View » account type" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_08 +msgid "Test 9 : Accounts and partners on account moves" +msgstr "" + +#. module: account_test +#: model:ir.actions.act_window,name:account_test.action_accounting_assert +#: model:ir.actions.report.xml,name:account_test.account_assert_test_report +#: model:ir.ui.menu,name:account_test.menu_action_license +msgid "Accounting Tests" +msgstr "" + +#. module: account_test +#: code:addons/account_test/report/account_test_report.py:74 +#, python-format +msgid "The test was passed successfully" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,active:0 +msgid "Active" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_06 +msgid "Test 6 : Invoices status" +msgstr "" + +#. module: account_test +#: model:ir.model,name:account_test.model_accounting_assert_test +msgid "accounting.assert.test" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_05 +msgid "" +"Test 5.1 : Payable and Receivable accountant lines of reconciled invoices" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,code_exec:0 +msgid "Python code" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_07 +msgid "" +"Check on bank statement that the Closing Balance = Starting Balance + sum of " +"statement lines" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_07 +msgid "Test 8 : Closing balance on bank statements" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_03 +msgid "Test 3: Movement lines" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_05_2 +msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Expression" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_04 +msgid "Test 4: Totally reconciled mouvements" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_04 +msgid "Check if the totally reconciled movements are balanced" +msgstr "" + +#. module: account_test +#: field:accounting.assert.test,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_02 +msgid "" +"Check if the balance of the new opened fiscal year matches with last year's " +"balance" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Python Code" +msgstr "" + +#. module: account_test +#: model:ir.actions.act_window,help:account_test.action_accounting_assert +msgid "" +"

\n" +" Click to create Accounting Test.\n" +"

\n" +" " +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_01 +msgid "Check the balance: Debit sum = Credit sum" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,desc:account_test.account_test_08 +msgid "Check that general accounts and partners on account moves are active" +msgstr "" + +#. module: account_test +#: model:accounting.assert.test,name:account_test.account_test_06_1 +msgid "Test 7: « View  » account type" +msgstr "" + +#. module: account_test +#: view:accounting.assert.test:0 +msgid "Code Help" +msgstr "" diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 6d4b0273148..ed34c5fcc43 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/i18n/hu.po @@ -8,19 +8,19 @@ 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-01 18:20+0000\n" +"Last-Translator: Herczeg Péter \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:31+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Párosítás" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -175,7 +175,7 @@ msgstr "Nyugták keresése" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Ellenszámla" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -309,7 +309,7 @@ msgstr "ÁFA" #: code:addons/account_voucher/account_voucher.py:879 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Érvénytelen lépés!" #. module: account_voucher #: field:account.voucher,comment:0 @@ -341,7 +341,7 @@ msgstr "Fizetési információ" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(Frissítés)" #. module: account_voucher #: view:account.voucher:0 @@ -420,7 +420,7 @@ msgstr "Szállítói nyugta" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Követők" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -492,7 +492,7 @@ msgstr "Számla kifizetése" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "" +msgstr "Biztosan visszavonja a bejegyzés párosítását?" #. module: account_voucher #: view:account.voucher:0 @@ -530,7 +530,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "Különbség számla" #. module: account_voucher #: view:sale.receipt.report:0 @@ -579,7 +579,7 @@ msgstr "" #: field:account.config.settings,expense_currency_exchange_account_id:0 #: field:res.company,expense_currency_exchange_account_id:0 msgid "Loss Exchange Rate Account" -msgstr "" +msgstr "Árfolyamveszteség számla" #. module: account_voucher #: view:account.voucher:0 @@ -644,7 +644,7 @@ msgstr "December" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Csoportosítás számla dátuma alapján" #. module: account_voucher #: view:sale.receipt.report:0 @@ -701,7 +701,7 @@ msgstr "" #: code:addons/account_voucher/account_voucher.py:975 #, python-format msgid "Configuration Error !" -msgstr "" +msgstr "Beállítási hiba!" #. module: account_voucher #: view:account.voucher:0 @@ -725,18 +725,18 @@ msgstr "Beszerzési nyugta" #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: account_voucher #: view:account.voucher:0 msgid "Allocation" -msgstr "" +msgstr "Kiosztás" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -746,7 +746,7 @@ msgstr "Augusztus" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Fizetés jóváhagyása" #. module: account_voucher #: help:account.voucher,audit:0 @@ -779,7 +779,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,paid:0 msgid "Paid" -msgstr "" +msgstr "Rendezett" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt @@ -833,7 +833,7 @@ msgstr "Azonnali kifizetés" #. module: account_voucher #: field:account.voucher.line,type:0 msgid "Dr/Cr" -msgstr "" +msgstr "T/K" #. module: account_voucher #: field:account.voucher,pre_line:0 @@ -870,7 +870,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "Aktív" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:982 @@ -1053,7 +1053,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,payment_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Árfolyam" #. module: account_voucher #: view:account.voucher:0 @@ -1153,7 +1153,7 @@ msgstr "Év" #: field:account.config.settings,income_currency_exchange_account_id:0 #: field:res.company,income_currency_exchange_account_id:0 msgid "Gain Exchange Rate Account" -msgstr "" +msgstr "Arfolyamnyereség számla" #. module: account_voucher #: selection:account.voucher,type:0 @@ -1179,7 +1179,7 @@ msgstr "Alapértelmezett típus" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Üzenetek és kommunikációs történet" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index b1b06259acd..5646e1b2881 100644 --- a/addons/account_voucher/i18n/mk.po +++ b/addons/account_voucher/i18n/mk.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-03-28 21:41+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:36+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:07+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -419,7 +419,7 @@ msgstr "Ставки за продажба" #. module: account_voucher #: view:account.voucher:0 msgid "Cancel Voucher" -msgstr "Откажи го ваучерот" +msgstr "Откажи Ваучер" #. module: account_voucher #: view:account.voucher:0 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index 5adc363b5ed..06a6a49c561 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/i18n/sl.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-01-02 14:37+0000\n" +"PO-Revision-Date: 2013-04-01 12:43+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:31+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: account_voucher @@ -46,7 +46,7 @@ msgstr "Skupni znesek" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "" +msgstr "Odprite vknjižbe kupcev" #. module: account_voucher #: view:account.voucher:0 @@ -70,7 +70,7 @@ msgstr "(Posodobi)" #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_pay_bills msgid "Bill Payment" -msgstr "" +msgstr "Plačevanje računov" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -96,7 +96,7 @@ msgstr "Neprebrana sporočila" #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" -msgstr "" +msgstr "Plačilo računa" #. module: account_voucher #: view:account.voucher:0 @@ -140,7 +140,7 @@ msgstr "" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change msgid "Status changed" -msgstr "" +msgstr "Status spremenjen" #. module: account_voucher #: view:account.voucher:0 @@ -173,7 +173,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Proti konto" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -241,12 +241,12 @@ msgstr "Znesek" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Options" -msgstr "" +msgstr "Načini plačila" #. module: account_voucher #: view:account.voucher:0 msgid "e.g. 003/10" -msgstr "" +msgstr "npr. 003/10" #. module: account_voucher #: view:account.voucher:0 @@ -355,7 +355,7 @@ msgstr "Uvoz računov" #. module: account_voucher #: view:account.voucher:0 msgid "e.g. Invoice SAJ/0042" -msgstr "" +msgstr "npr. račun SAJ/0042" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:1112 @@ -467,7 +467,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "" +msgstr "Odprite vknjižbe dobaviteljev" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list @@ -483,7 +483,7 @@ msgstr "Zapisek" #: code:addons/account_voucher/invoice.py:34 #, python-format msgid "Pay Invoice" -msgstr "" +msgstr "Plačilo računa" #. module: account_voucher #: view:account.voucher:0 @@ -580,7 +580,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "" +msgstr "Plačani znesek" #. module: account_voucher #: field:account.voucher,payment_option:0 @@ -881,7 +881,7 @@ msgstr "Določite številčno zaporedje" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Plačila kupcev" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all @@ -898,7 +898,7 @@ msgstr "Združeno po datumu računa" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "" +msgstr "Vknjiži" #. module: account_voucher #: view:account.voucher:0 @@ -945,7 +945,7 @@ msgstr "Bančni izpisek" #. module: account_voucher #: view:account.bank.statement:0 msgid "onchange_amount(amount)" -msgstr "" +msgstr "onchange_amount(amount)" #. module: account_voucher #: selection:sale.receipt.report,month:0 diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index 5af93a4b58c..a9844d69360 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.po @@ -10,13 +10,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-28 21:43+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:12+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:07+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -39,7 +39,7 @@ msgstr "Договор: " #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending msgid "Contract pending" -msgstr "Договор во очекување" +msgstr "Договор на чекање" #. module: analytic #: selection:account.analytic.account,state:0 @@ -148,7 +148,7 @@ msgstr "Опис" #: code:addons/analytic/analytic.py:262 #, python-format msgid "Quick account creation disallowed." -msgstr "Брзо креирање на сметка не е дозволено" +msgstr "Оневозможено брзо креирање на сметка." #. module: analytic #: field:account.analytic.account,message_unread:0 @@ -347,7 +347,7 @@ msgstr "Салдо" #. module: analytic #: field:account.analytic.account,complete_name:0 msgid "Full Name" -msgstr "Цело име" +msgstr "Целосно име" #. module: analytic #: selection:account.analytic.account,state:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index 0bf01017d16..28e71501e38 100644 --- a/addons/analytic/i18n/sl.po +++ b/addons/analytic/i18n/sl.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-02-09 12:11+0000\n" +"PO-Revision-Date: 2013-03-31 11:44+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:31+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: analytic @@ -36,7 +36,7 @@ msgstr "Pogodba: " #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending msgid "Contract pending" -msgstr "" +msgstr "Pogodba v pripravi" #. module: analytic #: selection:account.analytic.account,state:0 @@ -141,7 +141,7 @@ msgstr "Opis" #: code:addons/analytic/analytic.py:262 #, python-format msgid "Quick account creation disallowed." -msgstr "" +msgstr "Hitra tvorba konta je onemogočena." #. module: analytic #: field:account.analytic.account,message_unread:0 @@ -324,7 +324,7 @@ msgstr "Stanje" #. module: analytic #: field:account.analytic.account,complete_name:0 msgid "Full Name" -msgstr "" +msgstr "Polno ime" #. module: analytic #: selection:account.analytic.account,state:0 @@ -356,7 +356,7 @@ msgstr "Napaka!" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_closed msgid "Contract closed" -msgstr "" +msgstr "Pogodba zaprta" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting @@ -384,13 +384,13 @@ msgstr "Valuta" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened msgid "Contract opened" -msgstr "" +msgstr "Pogodba odprta" #. module: analytic #: code:addons/analytic/analytic.py:262 #, python-format msgid "Warning" -msgstr "" +msgstr "Opozorilo" #. module: analytic #: field:account.analytic.account,type:0 diff --git a/addons/analytic_contract_hr_expense/i18n/cs.po b/addons/analytic_contract_hr_expense/i18n/cs.po new file mode 100644 index 00000000000..a7a72b78a28 --- /dev/null +++ b/addons/analytic_contract_hr_expense/i18n/cs.po @@ -0,0 +1,72 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:44+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "or view" +msgstr "" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "Nothing to invoice, create" +msgstr "" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "expenses" +msgstr "" + +#. module: analytic_contract_hr_expense +#: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account +msgid "Analytic Account" +msgstr "" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#, python-format +msgid "Expenses to Invoice of %s" +msgstr "" + +#. module: analytic_contract_hr_expense +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#, python-format +msgid "Expenses of %s" +msgstr "" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,expense_invoiced:0 +#: field:account.analytic.account,expense_to_invoice:0 +#: field:account.analytic.account,remaining_expense:0 +msgid "unknown" +msgstr "" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,est_expenses:0 +msgid "Estimation of Expenses to Invoice" +msgstr "" + +#. module: analytic_contract_hr_expense +#: field:account.analytic.account,charge_expenses:0 +msgid "Charge Expenses" +msgstr "" + +#. module: analytic_contract_hr_expense +#: view:account.analytic.account:0 +msgid "⇒ Invoice" +msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index b8fc60182b6..4c5779a32ee 100644 --- a/addons/analytic_contract_hr_expense/i18n/mk.po +++ b/addons/analytic_contract_hr_expense/i18n/mk.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-03-28 21:44+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:35+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:07+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -42,7 +42,7 @@ msgstr "Аналитичка сметка" #: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 #, python-format msgid "Expenses to Invoice of %s" -msgstr "Трошоци за фактурирање од %s" +msgstr "Трошоци за фактурирање на %s" #. module: analytic_contract_hr_expense #: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 diff --git a/addons/anonymization/i18n/cs.po b/addons/anonymization/i18n/cs.po new file mode 100644 index 00000000000..f01424ec0e5 --- /dev/null +++ b/addons/anonymization/i18n/cs.po @@ -0,0 +1,331 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:44+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard +msgid "ir.model.fields.anonymize.wizard" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization,model_id:0 +msgid "Object" +msgstr "" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_migration_fix +msgid "ir.model.fields.anonymization.migration.fix" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,target_version:0 +msgid "Target Version" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "sql" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:91 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to create, write or delete fields." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization,field_name:0 +msgid "Field Name" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization,field_id:0 +#: field:ir.model.fields.anonymization.migration.fix,field_name:0 +msgid "Field" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "New" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,file_import:0 +msgid "Import" +msgstr "" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization +msgid "ir.model.fields.anonymization" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:300 +#, python-format +msgid "" +"Before executing the anonymization process, you should make a backup of your " +"database." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,state:0 +#: field:ir.model.fields.anonymize.wizard,state:0 +msgid "Status" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,direction:0 +msgid "Direction" +msgstr "" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymization_tree +#: view:ir.model.fields.anonymization:0 +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_fields +msgid "Anonymized Fields" +msgstr "" + +#. module: anonymization +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization +msgid "Database anonymization" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,direction:0 +msgid "clear -> anonymized" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Anonymized" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization,state:0 +msgid "unknown" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Anonymized value is None. This cannot happens." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,filepath:0 +msgid "File path" +msgstr "" + +#. module: anonymization +#: help:ir.model.fields.anonymize.wizard,file_import:0 +msgid "" +"This is the file created by the anonymization process. It should have the " +"'.pickle' extention." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.history,date:0 +msgid "Date" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,file_export:0 +msgid "Export" +msgstr "" + +#. module: anonymization +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Reverse the Database Anonymization" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:444 +#, python-format +msgid "" +"Cannot anonymize fields of these types: binary, many2many, many2one, " +"one2many, reference." +msgstr "" + +#. module: anonymization +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Database Anonymization" +msgstr "" + +#. module: anonymization +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_wizard +msgid "Anonymize database" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "python" +msgstr "" + +#. module: anonymization +#: view:ir.model.fields.anonymization.history:0 +#: field:ir.model.fields.anonymization.history,field_ids:0 +msgid "Fields" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Clear" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:533 +#, python-format +msgid "" +"It is not possible to reverse the anonymization process without supplying " +"the anonymization export file." +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,summary:0 +msgid "Summary" +msgstr "" + +#. module: anonymization +#: view:ir.model.fields.anonymization:0 +msgid "Anonymized Field" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:391 +#: code:addons/anonymization/anonymization.py:526 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything." +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymize.wizard,state:0 +msgid "Unstable" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Exception occured" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization,state:0 +msgid "Not Existing" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization,model_name:0 +msgid "Object Name" +msgstr "" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymization_history_tree +#: view:ir.model.fields.anonymization.history:0 +#: model:ir.ui.menu,name:anonymization.menu_administration_anonymization_history +msgid "Anonymization History" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,model_name:0 +msgid "Model" +msgstr "" + +#. module: anonymization +#: model:ir.model,name:anonymization.model_ir_model_fields_anonymization_history +msgid "ir.model.fields.anonymization.history" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:358 +#, python-format +msgid "" +"The database anonymization is currently in an unstable state. Some fields " +"are anonymized, while some fields are not anonymized. You should try to " +"solve this problem before trying to do anything else." +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#: code:addons/anonymization/anonymization.py:448 +#, python-format +msgid "Error !" +msgstr "" + +#. module: anonymization +#: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard +#: view:ir.model.fields.anonymize.wizard:0 +msgid "Anonymize Database" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymize.wizard,name:0 +msgid "File Name" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,direction:0 +msgid "anonymized -> clear" +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Started" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:389 +#, python-format +msgid "The database is currently anonymized, you cannot anonymize it again." +msgstr "" + +#. module: anonymization +#: selection:ir.model.fields.anonymization.history,state:0 +msgid "Done" +msgstr "" + +#. module: anonymization +#: field:ir.model.fields.anonymization.migration.fix,query:0 +#: field:ir.model.fields.anonymization.migration.fix,query_type:0 +msgid "Query" +msgstr "" + +#. module: anonymization +#: view:ir.model.fields.anonymization.history:0 +#: field:ir.model.fields.anonymization.history,msg:0 +#: field:ir.model.fields.anonymize.wizard,msg:0 +msgid "Message" +msgstr "" + +#. module: anonymization +#: code:addons/anonymization/anonymization.py:65 +#: sql_constraint:ir.model.fields.anonymization:0 +#, python-format +msgid "You cannot have two fields with the same name on the same object!" +msgstr "" diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index ca3b2e49927..039b8a82bc3 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/i18n/sl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" -"PO-Revision-Date: 2013-02-09 12:18+0000\n" +"PO-Revision-Date: 2013-03-31 11:46+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:32+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: association @@ -134,4 +134,4 @@ msgstr "Upravljanje projektov" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Configure" -msgstr "" +msgstr "Nastavitve" diff --git a/addons/auth_crypt/i18n/cs.po b/addons/auth_crypt/i18n/cs.po index b97e90df13b..61f4ed60a90 100644 --- a/addons/auth_crypt/i18n/cs.po +++ b/addons/auth_crypt/i18n/cs.po @@ -1,41 +1,28 @@ # Czech translation for openobject-addons -# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 # This file is distributed under the same license as the openobject-addons package. -# FIRST AUTHOR , 2012. +# FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2012-12-03 16:03+0000\n" -"PO-Revision-Date: 2012-04-06 05:20+0000\n" -"Last-Translator: Jiří Hajda \n" +"POT-Creation-Date: 2013-03-07 08:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:44+0000\n" +"Last-Translator: FULL NAME \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-04 05:53+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" -#. module: base_crypt -#: model:ir.model,name:base_crypt.model_res_users -msgid "Users" +#. module: auth_crypt +#: field:res.users,password_crypt:0 +msgid "Encrypted Password" msgstr "" -#~ msgid "You can not have two users with the same login !" -#~ msgstr "Nemůžete mít dva uživatele se stejným přihlašovacím jménem !" - -#, python-format -#~ msgid "Error" -#~ msgstr "Chyba" - -#, python-format -#~ msgid "Please specify the password !" -#~ msgstr "Prosíme zadejte heslo!" - -#~ msgid "The chosen company is not in the allowed companies for this user" -#~ msgstr "" -#~ "Vybraná společnost není v povolených společnostech pro tohoto uživatele" - -#~ msgid "res.users" -#~ msgstr "res.users" +#. module: auth_crypt +#: model:ir.model,name:auth_crypt.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/auth_ldap/i18n/cs.po b/addons/auth_ldap/i18n/cs.po new file mode 100644 index 00000000000..76355439ebe --- /dev/null +++ b/addons/auth_ldap/i18n/cs.po @@ -0,0 +1,159 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:44+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: auth_ldap +#: field:res.company.ldap,user:0 +msgid "Template User" +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,ldap_tls:0 +msgid "" +"Request secure TLS/SSL encryption when connecting to the LDAP server. This " +"option requires a server with STARTTLS enabled, otherwise all authentication " +"attempts will fail." +msgstr "" + +#. module: auth_ldap +#: view:res.company:0 +#: view:res.company.ldap:0 +msgid "LDAP Configuration" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_binddn:0 +msgid "LDAP binddn" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,company:0 +msgid "Company" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_server:0 +msgid "LDAP Server address" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_server_port:0 +msgid "LDAP Server port" +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,create_user:0 +msgid "" +"Automatically create local user accounts for new users authenticating via " +"LDAP" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_base:0 +msgid "LDAP base" +msgstr "" + +#. module: auth_ldap +#: view:res.company.ldap:0 +msgid "User Information" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_password:0 +msgid "LDAP password" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company +msgid "Companies" +msgstr "" + +#. module: auth_ldap +#: view:res.company.ldap:0 +msgid "Process Parameter" +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_company_ldap +msgid "res.company.ldap" +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,user:0 +msgid "User to copy when creating new users" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_tls:0 +msgid "Use TLS" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: auth_ldap +#: view:res.company.ldap:0 +msgid "Login Information" +msgstr "" + +#. module: auth_ldap +#: view:res.company.ldap:0 +msgid "Server Information" +msgstr "" + +#. module: auth_ldap +#: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer +msgid "Setup your LDAP Server" +msgstr "" + +#. module: auth_ldap +#: view:res.company:0 +#: field:res.company,ldaps:0 +msgid "LDAP Parameters" +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,ldap_password:0 +msgid "" +"The password of the user account on the LDAP server that is used to query " +"the directory." +msgstr "" + +#. module: auth_ldap +#: help:res.company.ldap,ldap_binddn:0 +msgid "" +"The user account on the LDAP server that is used to query the directory. " +"Leave empty to connect anonymously." +msgstr "" + +#. module: auth_ldap +#: model:ir.model,name:auth_ldap.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,ldap_filter:0 +msgid "LDAP filter" +msgstr "" + +#. module: auth_ldap +#: field:res.company.ldap,create_user:0 +msgid "Create user" +msgstr "" diff --git a/addons/auth_ldap/i18n/mk.po b/addons/auth_ldap/i18n/mk.po index 3cc19395bf5..bf3a18f892d 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/i18n/mk.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-03-28 21:53+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:33+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:07+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -43,7 +43,7 @@ msgstr "LDAP конфигурација" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "LDAP спојување" +msgstr "LDAP binddn" #. module: auth_ldap #: field:res.company.ldap,company:0 @@ -102,7 +102,7 @@ msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "Корисник за копирање при креирање на нови корисници" +msgstr "Корисник за копирање кога се креираат нови корисници" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 diff --git a/addons/auth_oauth/i18n/cs.po b/addons/auth_oauth/i18n/cs.po new file mode 100644 index 00000000000..c3b6107ded6 --- /dev/null +++ b/addons/auth_oauth/i18n/cs.po @@ -0,0 +1,135 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: auth_oauth +#: field:auth.oauth.provider,validation_endpoint:0 +msgid "Validation URL" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,auth_endpoint:0 +msgid "Authentication URL" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_base_config_settings +msgid "base.config.settings" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,name:0 +msgid "Provider name" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,scope:0 +msgid "Scope" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_provider_id:0 +msgid "OAuth Provider" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,css_class:0 +msgid "CSS class" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,body:0 +msgid "Body" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,sequence:0 +msgid "unknown" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_access_token:0 +msgid "OAuth Access Token" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,client_id:0 +#: field:base.config.settings,auth_oauth_facebook_client_id:0 +#: field:base.config.settings,auth_oauth_google_client_id:0 +msgid "Client ID" +msgstr "" + +#. module: auth_oauth +#: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers +msgid "OAuth Providers" +msgstr "" + +#. module: auth_oauth +#: model:ir.model,name:auth_oauth.model_auth_oauth_provider +msgid "OAuth2 provider" +msgstr "" + +#. module: auth_oauth +#: field:res.users,oauth_uid:0 +msgid "OAuth User ID" +msgstr "" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_facebook_enabled:0 +msgid "Allow users to sign in with Facebook" +msgstr "" + +#. module: auth_oauth +#: sql_constraint:res.users:0 +msgid "OAuth UID must be unique per provider" +msgstr "" + +#. module: auth_oauth +#: help:res.users,oauth_uid:0 +msgid "Oauth Provider user_id" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,data_endpoint:0 +msgid "Data URL" +msgstr "" + +#. module: auth_oauth +#: view:auth.oauth.provider:0 +msgid "arch" +msgstr "" + +#. module: auth_oauth +#: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider +msgid "Providers" +msgstr "" + +#. module: auth_oauth +#: field:base.config.settings,auth_oauth_google_enabled:0 +msgid "Allow users to sign in with Google" +msgstr "" + +#. module: auth_oauth +#: field:auth.oauth.provider,enabled:0 +msgid "Allowed" +msgstr "" diff --git a/addons/auth_oauth_signup/i18n/cs.po b/addons/auth_oauth_signup/i18n/cs.po new file mode 100644 index 00000000000..3be9cc5d98b --- /dev/null +++ b/addons/auth_oauth_signup/i18n/cs.po @@ -0,0 +1,23 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: auth_oauth_signup +#: model:ir.model,name:auth_oauth_signup.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/auth_openid/i18n/cs.po b/addons/auth_openid/i18n/cs.po new file mode 100644 index 00000000000..dcf025b3e9b --- /dev/null +++ b/addons/auth_openid/i18n/cs.po @@ -0,0 +1,97 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:24 +#, python-format +msgid "Username" +msgstr "" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:12 +#: view:res.users:0 +#, python-format +msgid "OpenID" +msgstr "" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:30 +#: field:res.users,openid_url:0 +#, python-format +msgid "OpenID URL" +msgstr "" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:9 +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 +#, python-format +msgid "Google" +msgstr "" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:11 +#, python-format +msgid "Launchpad" +msgstr "" + +#. module: auth_openid +#: help:res.users,openid_email:0 +msgid "Used for disambiguation in case of a shared OpenID URL" +msgstr "" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:18 +#, python-format +msgid "Google Apps Domain" +msgstr "" + +#. module: auth_openid +#: field:res.users,openid_email:0 +msgid "OpenID Email" +msgstr "" + +#. module: auth_openid +#: field:res.users,openid_key:0 +msgid "OpenID Key" +msgstr "" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:8 +#, python-format +msgid "Password" +msgstr "" + +#. module: auth_openid +#. openerp-web +#: code:addons/auth_openid/static/src/xml/auth_openid.xml:10 +#, python-format +msgid "Google Apps" +msgstr "" + +#. module: auth_openid +#: model:ir.model,name:auth_openid.model_res_users +msgid "Users" +msgstr "" diff --git a/addons/auth_signup/i18n/cs.po b/addons/auth_signup/i18n/cs.po new file mode 100644 index 00000000000..5a0cece304c --- /dev/null +++ b/addons/auth_signup/i18n/cs.po @@ -0,0 +1,307 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:45+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: auth_signup +#: field:res.partner,signup_type:0 +msgid "Signup Token Type" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_uninvited:0 +msgid "Allow external users to sign up" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#, python-format +msgid "Confirm Password" +msgstr "" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_uninvited:0 +msgid "If unchecked, only invited users may sign up." +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_base_config_settings +msgid "base.config.settings" +msgstr "" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:265 +#, python-format +msgid "Cannot send email: user has no email address." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:24 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:28 +#, python-format +msgid "Reset password" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_template_user_id:0 +msgid "Template user for new users created through signup" +msgstr "" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.reset_password_email +msgid "Password reset" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#, python-format +msgid "Please enter a password and confirm it." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:23 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:26 +#, python-format +msgid "Sign Up" +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "New" +msgstr "" + +#. module: auth_signup +#: field:res.users,state:0 +msgid "Status" +msgstr "" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.reset_password_email +msgid "" +"\n" +"

A password reset was requested for the OpenERP account linked to this " +"email.

\n" +"\n" +"

You may change your password by following this link.

\n" +"\n" +"

Note: If you do not expect this, you can safely ignore this email.

" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#, python-format +msgid "Please enter a name." +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "" + +#. module: auth_signup +#: model:email.template,body_html:auth_signup.set_password_email +msgid "" +"\n" +" \n" +"

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

\n" +"

\n" +" You have been invited to connect to " +"\"${object.company_id.name}\" in order to get access to your documents in " +"OpenERP.\n" +"

\n" +"

\n" +" To accept the invitation, click on the following " +"link:\n" +"

\n" +" \n" +"

\n" +" Thanks,\n" +"

\n" +"
\n"
+"--\n"
+"${object.company_id.name or ''}\n"
+"${object.company_id.email or ''}\n"
+"${object.company_id.phone or ''}\n"
+"                    
\n" +" \n" +" " +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#, python-format +msgid "Please enter a username." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Active" +msgstr "" + +#. module: auth_signup +#: code:addons/auth_signup/res_users.py:269 +#, python-format +msgid "" +"Cannot send email: no outgoing email server configured.\n" +"You can configure it under Settings/General Settings." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:174 +#, python-format +msgid "An email has been sent with credentials to reset your password" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 +#, python-format +msgid "Username" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 +#, python-format +msgid "Name" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#, python-format +msgid "Please enter a username or email address." +msgstr "" + +#. module: auth_signup +#: selection:res.users,state:0 +msgid "Resetting Password" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 +#, python-format +msgid "Username (Email)" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_expiration:0 +msgid "Signup Expiration" +msgstr "" + +#. module: auth_signup +#: help:base.config.settings,auth_signup_reset_password:0 +msgid "This allows users to trigger a password reset from the Login page." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#, python-format +msgid "Log in" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_valid:0 +msgid "Signup Token is Valid" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:108 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#, python-format +msgid "Login" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#, python-format +msgid "Invalid signup token" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#, python-format +msgid "Passwords do not match; please retype them." +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:108 +#: code:addons/auth_signup/static/src/js/auth_signup.js:167 +#, python-format +msgid "No database selected !" +msgstr "" + +#. module: auth_signup +#: field:base.config.settings,auth_signup_reset_password:0 +msgid "Enable password reset from Login page" +msgstr "" + +#. module: auth_signup +#: model:email.template,subject:auth_signup.set_password_email +msgid "${object.company_id.name} invitation to connect on OpenERP" +msgstr "" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#, python-format +msgid "Back to Login" +msgstr "" + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_partner +msgid "Partner" +msgstr "" + +#. module: auth_signup +#: view:res.users:0 +msgid "Send reset password instructions by email" +msgstr "" + +#. module: auth_signup +#: field:res.partner,signup_token:0 +msgid "Signup Token" +msgstr "" diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index 5744fac6d7d..ccc21df15ad 100644 --- a/addons/auth_signup/i18n/mk.po +++ b/addons/auth_signup/i18n/mk.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-03-28 21:58+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:31+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:07+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -174,19 +174,19 @@ msgstr "" "

\n" "

\n" " Поканети сте да се поврзете на " -"\"${object.company_id.name}\" за да добиете пристап до вашите документи во " -"OpenERP.\n" +"\"${object.company_id.name}\" со цел да добиете пристап до вашите документи " +"во OpenERP.\n" "

\n" "

\n" -" За да ја прифатите пораката, кликнете на следниот " +" За да ја прифатите поканата, кликнете на следниов " "линк:\n" "

\n" " \n" "

\n" -" Ви Благодариме,\n" +" Ви благодариме,\n" "

\n" "
\n"
 "--\n"
@@ -224,7 +224,7 @@ msgstr ""
 #: code:addons/auth_signup/static/src/js/auth_signup.js:174
 #, python-format
 msgid "An email has been sent with credentials to reset your password"
-msgstr "Пратен е e-mail со креденции за ресетирање на вашата лозинка"
+msgstr "Беше испратен e-mail со акредитиви за ресетирање на вашата лозинка"
 
 #. module: auth_signup
 #. openerp-web
@@ -343,7 +343,7 @@ msgstr "Партнер"
 #. module: auth_signup
 #: view:res.users:0
 msgid "Send reset password instructions by email"
-msgstr "Инструкциите за ресетирање на лозинка испрати ги на e-mail"
+msgstr "Испрати инструкции за ресетирање на лозинка преку e-mail"
 
 #. module: auth_signup
 #: field:res.partner,signup_token:0
diff --git a/addons/base_action_rule/i18n/mk.po b/addons/base_action_rule/i18n/mk.po
index 2896fbbc50b..2a929802ee1 100644
--- a/addons/base_action_rule/i18n/mk.po
+++ b/addons/base_action_rule/i18n/mk.po
@@ -9,13 +9,13 @@ msgstr ""
 "Report-Msgid-Bugs-To: OpenERP Macedonian \n"
 "POT-Creation-Date: 2013-03-07 08:37+0000\n"
-"PO-Revision-Date: 2013-03-28 22:01+0000\n"
-"Last-Translator: Софче Димитријева \n"
+"PO-Revision-Date: 2013-03-31 13:29+0000\n"
+"Last-Translator: Sofce Dimitrijeva \n"
 "Language-Team: ESKON-INZENERING\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:07+0000\n"
+"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n"
 "X-Generator: Launchpad (build 16546)\n"
 "Language: mk\n"
 
@@ -260,7 +260,7 @@ msgstr "Минути"
 #. module: base_action_rule
 #: field:base.action.rule,model_id:0
 msgid "Related Document Model"
-msgstr "Поврзан модел на документ"
+msgstr "Модел на поврзан документ"
 
 #. module: base_action_rule
 #: help:base.action.rule,filter_pre_id:0
@@ -320,7 +320,7 @@ msgstr "Датум на активирање"
 #: view:base.action.rule:0
 #: field:base.action.rule,server_action_ids:0
 msgid "Server Actions"
-msgstr "Дејства на серверот"
+msgstr "Акции на серверот"
 
 #. module: base_action_rule
 #: field:base.action.rule.lead.test,name:0
diff --git a/addons/base_gengo/i18n/cs.po b/addons/base_gengo/i18n/cs.po
new file mode 100644
index 00000000000..34407c3dbab
--- /dev/null
+++ b/addons/base_gengo/i18n/cs.po
@@ -0,0 +1,269 @@
+# Czech 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:37+0000\n"
+"PO-Revision-Date: 2013-03-31 16:46+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Czech \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-01 05:31+0000\n"
+"X-Generator: Launchpad (build 16546)\n"
+
+#. module: base_gengo
+#: view:res.company:0
+msgid "Comments for Translator"
+msgstr ""
+
+#. module: base_gengo
+#: field:ir.translation,job_id:0
+msgid "Gengo Job ID"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:114
+#, python-format
+msgid "This language is not supported by the Gengo translation services."
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_comment:0
+msgid "Comments"
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_private_key:0
+msgid "Gengo Private Key"
+msgstr ""
+
+#. module: base_gengo
+#: constraint:ir.translation:0
+msgid ""
+"The Gengo translation service selected is not supported for this language."
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:0
+msgid "Add Gengo login Public Key..."
+msgstr ""
+
+#. module: base_gengo
+#: model:ir.model,name:base_gengo.model_base_gengo_translations
+msgid "base.gengo.translations"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:0
+msgid "Gengo Comments & Activity..."
+msgstr ""
+
+#. module: base_gengo
+#: help:res.company,gengo_auto_approve:0
+msgid "Jobs are Automatically Approved by Gengo."
+msgstr ""
+
+#. module: base_gengo
+#: field:base.gengo.translations,lang_id:0
+msgid "Language"
+msgstr ""
+
+#. module: base_gengo
+#: field:ir.translation,gengo_comment:0
+msgid "Comments & Activity Linked to Gengo"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:124
+#, python-format
+msgid "Gengo Sync Translation (Response)"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:72
+#, python-format
+msgid ""
+"Gengo `Public Key` or `Private Key` are missing. Enter your Gengo "
+"authentication parameters under `Settings > Companies > Gengo Parameters`."
+msgstr ""
+
+#. module: base_gengo
+#: selection:ir.translation,gengo_translation:0
+msgid "Translation By Machine"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:0
+msgid "Add Gengo login Private Key..."
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:155
+#, python-format
+msgid ""
+"%s\n"
+"\n"
+"--\n"
+" Commented on %s by %s."
+msgstr ""
+
+#. module: base_gengo
+#: field:ir.translation,gengo_translation:0
+msgid "Gengo Translation Service Level"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:0
+msgid "Add your comments here for translator...."
+msgstr ""
+
+#. module: base_gengo
+#: selection:ir.translation,gengo_translation:0
+msgid "Standard"
+msgstr ""
+
+#. module: base_gengo
+#: help:ir.translation,gengo_translation:0
+msgid ""
+"You can select here the service level you want for an automatic translation "
+"using Gengo."
+msgstr ""
+
+#. module: base_gengo
+#: field:base.gengo.translations,restart_send_job:0
+msgid "Restart Sending Job"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:0
+msgid "To Approve In Gengo"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:0
+msgid "Private Key"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:0
+msgid "Public Key"
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_public_key:0
+msgid "Gengo Public Key"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:123
+#, python-format
+msgid "Gengo Sync Translation (Request)"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:0
+msgid "Translations"
+msgstr ""
+
+#. module: base_gengo
+#: field:res.company,gengo_auto_approve:0
+msgid "Auto Approve Translation ?"
+msgstr ""
+
+#. module: base_gengo
+#: model:ir.actions.act_window,name:base_gengo.action_wizard_base_gengo_translations
+#: model:ir.ui.menu,name:base_gengo.menu_action_wizard_base_gengo_translations
+msgid "Gengo: Manual Request of Translation"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/ir_translation.py:62
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:109
+#, python-format
+msgid "Gengo Authentication Error"
+msgstr ""
+
+#. module: base_gengo
+#: model:ir.model,name:base_gengo.model_res_company
+msgid "Companies"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:0
+msgid ""
+"Note: If the translation state is 'In Progress', it means that the "
+"translation has to be approved to be uploaded in this system. You are "
+"supposed to do that directly by using your Gengo Account"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:82
+#, python-format
+msgid ""
+"Gengo connection failed with this message:\n"
+"``%s``"
+msgstr ""
+
+#. module: base_gengo
+#: view:res.company:0
+msgid "Gengo Parameters"
+msgstr ""
+
+#. module: base_gengo
+#: view:base.gengo.translations:0
+msgid "Send"
+msgstr ""
+
+#. module: base_gengo
+#: selection:ir.translation,gengo_translation:0
+msgid "Ultra"
+msgstr ""
+
+#. module: base_gengo
+#: model:ir.model,name:base_gengo.model_ir_translation
+msgid "ir.translation"
+msgstr ""
+
+#. module: base_gengo
+#: view:ir.translation:0
+msgid "Gengo Translation Service"
+msgstr ""
+
+#. module: base_gengo
+#: selection:ir.translation,gengo_translation:0
+msgid "Pro"
+msgstr ""
+
+#. module: base_gengo
+#: view:base.gengo.translations:0
+msgid "Gengo Request Form"
+msgstr ""
+
+#. module: base_gengo
+#: code:addons/base_gengo/wizard/base_gengo_translations.py:114
+#, python-format
+msgid "Warning"
+msgstr ""
+
+#. module: base_gengo
+#: help:res.company,gengo_comment:0
+msgid ""
+"This comment will be automatically be enclosed in each an every request sent "
+"to Gengo"
+msgstr ""
+
+#. module: base_gengo
+#: view:base.gengo.translations:0
+msgid "Cancel"
+msgstr ""
+
+#. module: base_gengo
+#: view:base.gengo.translations:0
+msgid "or"
+msgstr ""
diff --git a/addons/base_iban/i18n/mk.po b/addons/base_iban/i18n/mk.po
index 7a417851a75..5bba5ec4d22 100644
--- a/addons/base_iban/i18n/mk.po
+++ b/addons/base_iban/i18n/mk.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-03-28 22:06+0000\n"
-"Last-Translator: Софче Димитријева \n"
+"PO-Revision-Date: 2013-03-31 13:28+0000\n"
+"Last-Translator: Sofce Dimitrijeva \n"
 "Language-Team: ESKON-INZENERING\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:07+0000\n"
+"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n"
 "X-Generator: Launchpad (build 16546)\n"
 "Language: mk\n"
 
@@ -53,7 +53,7 @@ msgstr "Поштенски број"
 #. module: base_iban
 #: help:res.partner.bank,iban:0
 msgid "International Bank Account Number"
-msgstr "Интернационален број на банкарска сметка"
+msgstr "Број на меѓународна банкарска сметка"
 
 #. module: base_iban
 #: model:ir.model,name:base_iban.model_res_partner_bank
diff --git a/addons/base_import/i18n/cs.po b/addons/base_import/i18n/cs.po
new file mode 100644
index 00000000000..6edc3d43ff8
--- /dev/null
+++ b/addons/base_import/i18n/cs.po
@@ -0,0 +1,1193 @@
+# Czech 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:37+0000\n"
+"PO-Revision-Date: 2013-03-31 16:46+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Czech \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-01 05:31+0000\n"
+"X-Generator: Launchpad (build 16546)\n"
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:451
+#, python-format
+msgid "Get all possible values"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:71
+#, python-format
+msgid "Need to import data from an other application?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:163
+#, python-format
+msgid ""
+"When you use External IDs, you can import CSV files \n"
+"                        with the \"External ID\" column to define the "
+"External \n"
+"                        ID of each record you import. Then, you will be able "
+"\n"
+"                        to make a reference to that record with columns like "
+"\n"
+"                        \"Field/External ID\". The following two CSV files "
+"give \n"
+"                        you an example for Products and their Categories."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:271
+#, python-format
+msgid ""
+"How to export/import different tables from an SQL \n"
+"                        application to OpenERP?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:331
+#, python-format
+msgid "Relation Fields"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:142
+#, python-format
+msgid ""
+"Country/Database ID: the unique OpenERP ID for a \n"
+"                        record, defined by the ID postgresql column"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:155
+#, python-format
+msgid ""
+"Use \n"
+"                        Country/Database ID: You should rarely use this \n"
+"                        notation. It's mostly used by developers as it's "
+"main \n"
+"                        advantage is to never have conflicts (you may have \n"
+"                        several records with the same name, but they always "
+"\n"
+"                        have a unique Database ID)"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:146
+#, python-format
+msgid ""
+"For the country \n"
+"                        Belgium, you can use one of these 3 ways to import:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:303
+#, python-format
+msgid "company_1,Bigees,True"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_m2o
+msgid "base_import.tests.models.m2o"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:297
+#, python-format
+msgid ""
+"copy \n"
+"                        (select 'company_'||id as \"External "
+"ID\",company_name \n"
+"                        as \"Name\",'True' as \"Is a Company\" from "
+"companies) TO \n"
+"                        '/tmp/company.csv' with CSV HEADER;"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:206
+#, python-format
+msgid "CSV file for Manufacturer, Retailer"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:160
+#, python-format
+msgid ""
+"Use \n"
+"                        Country/External ID: Use External ID when you import "
+"\n"
+"                        data from a third party application."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:316
+#, python-format
+msgid "person_1,Fabien,False,company_1"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:80
+#, python-format
+msgid "XXX/External ID"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:351
+#, python-format
+msgid "Don't Import"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:24
+#, python-format
+msgid "Select the"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:100
+#, python-format
+msgid ""
+"Note that if your CSV file \n"
+"                        has a tabulation as separator, OpenERP will not \n"
+"                        detect the separations. You will need to change the "
+"\n"
+"                        file format options in your spreadsheet application. "
+"\n"
+"                        See the following question."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:141
+#, python-format
+msgid "Country: the name or code of the country"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child
+msgid "base_import.tests.models.o2m.child"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:239
+#, python-format
+msgid "Can I import several times the same record?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:15
+#, python-format
+msgid "Validate"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:55
+#, python-format
+msgid "Map your data to OpenERP"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:153
+#, python-format
+msgid ""
+"Use Country: This is \n"
+"                        the easiest way when your data come from CSV files \n"
+"                        that have been created manually."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:127
+#, python-format
+msgid ""
+"What's the difference between Database ID and \n"
+"                        External ID?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:138
+#, python-format
+msgid ""
+"For example, to \n"
+"                        reference the country of a contact, OpenERP proposes "
+"\n"
+"                        you 3 different fields to import:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:175
+#, python-format
+msgid "What can I do if I have multiple matches for a field?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:302
+#, python-format
+msgid "External ID,Name,Is a Company"
+msgstr ""
+
+#. module: base_import
+#: field:base_import.tests.models.preview,somevalue:0
+msgid "Some Value"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:231
+#, python-format
+msgid ""
+"The following CSV file shows how to import \n"
+"                        suppliers and their respective contacts"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:109
+#, python-format
+msgid ""
+"How can I change the CSV file format options when \n"
+"                        saving in my spreadsheet application?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:320
+#, python-format
+msgid ""
+"As you can see in this file, Fabien and Laurence \n"
+"                        are working for the Bigees company (company_1) and \n"
+"                        Eric is working for the Organi company. The relation "
+"\n"
+"                        between persons and companies is done using the \n"
+"                        External ID of the companies. We had to prefix the \n"
+"                        \"External ID\" by the name of the table to avoid a "
+"\n"
+"                        conflict of ID between persons and companies "
+"(person_1 \n"
+"                        and company_1 who shared the same ID 1 in the "
+"orignial \n"
+"                        database)."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:308
+#, python-format
+msgid ""
+"copy (select \n"
+"                        'person_'||id as \"External ID\",person_name as \n"
+"                        \"Name\",'False' as \"Is a "
+"Company\",'company_'||company_id\n"
+"                         as \"Related Company/External ID\" from persons) TO "
+"\n"
+"                        '/tmp/person.csv' with CSV"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:148
+#, python-format
+msgid "Country: Belgium"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_char_stillreadonly
+msgid "base_import.tests.models.char.stillreadonly"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:314
+#, python-format
+msgid ""
+"External ID,Name,Is a \n"
+"                        Company,Related Company/External ID"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:174
+#, python-format
+msgid "Semicolon"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:233
+#, python-format
+msgid "Suppliers and their respective contacts"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:179
+#, python-format
+msgid ""
+"If for example you have two product categories \n"
+"                        with the child name \"Sellable\" (ie. \"Misc. \n"
+"                        Products/Sellable\" & \"Other Products/Sellable\"),\n"
+"                        your validation is halted but you may still import \n"
+"                        your data. However, we recommend you do not import "
+"the \n"
+"                        data because they will all be linked to the first \n"
+"                        'Sellable' category found in the Product Category "
+"list \n"
+"                        (\"Misc. Products/Sellable\"). We recommend you "
+"modify \n"
+"                        one of the duplicates' values or your product "
+"category \n"
+"                        hierarchy."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:306
+#, python-format
+msgid ""
+"To create the CSV file for persons, linked to \n"
+"                        companies, we will use the following SQL command in "
+"\n"
+"                        PSQL:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:119
+#, python-format
+msgid ""
+"Microsoft Excel will allow \n"
+"                        you to modify only the encoding when saving \n"
+"                        (in 'Save As' dialog box > click 'Tools' dropdown \n"
+"                        list > Encoding tab)."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:175
+#, python-format
+msgid "Tab"
+msgstr ""
+
+#. module: base_import
+#: field:base_import.tests.models.preview,othervalue:0
+msgid "Other Variable"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:82
+#, python-format
+msgid ""
+"will also be used to update the original\n"
+"                        import if you need to re-import modified data\n"
+"                        later, it's thus good practice to specify it\n"
+"                        whenever possible"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:26
+#, python-format
+msgid ""
+"file to import. If you need a sample importable file, you\n"
+"            can use the export tool to generate one."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:148
+#, python-format
+msgid ""
+"Country/Database \n"
+"                        ID: 21"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_char
+msgid "base_import.tests.models.char"
+msgstr ""
+
+#. module: base_import
+#: help:base_import.import,file:0
+msgid "File to check and/or import, raw binary (not base64)"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:230
+#, python-format
+msgid "Purchase orders with their respective purchase order lines"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:60
+#, python-format
+msgid ""
+"If the file contains\n"
+"                the column names, OpenERP can try auto-detecting the\n"
+"                field corresponding to the column. This makes imports\n"
+"                simpler especially when the file has many columns."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:26
+#, python-format
+msgid ".CSV"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:360
+#, python-format
+msgid ""
+". The issue is\n"
+"            usually an incorrect file encoding."
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required
+msgid "base_import.tests.models.m2o.required"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly
+msgid "base_import.tests.models.char.noreadonly"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:113
+#, python-format
+msgid ""
+"If you edit and save CSV files in speadsheet \n"
+"                        applications, your computer's regional settings will "
+"\n"
+"                        be applied for the separator and delimiter. \n"
+"                        We suggest you use OpenOffice or LibreOffice Calc \n"
+"                        as they will allow you to modify all three options \n"
+"                        (in 'Save As' dialog box > Check the box 'Edit "
+"filter \n"
+"                        settings' > Save)."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:30
+#, python-format
+msgid "CSV File:"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_preview
+msgid "base_import.tests.models.preview"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_char_required
+msgid "base_import.tests.models.char.required"
+msgstr ""
+
+#. module: base_import
+#: code:addons/base_import/models.py:112
+#, python-format
+msgid "Database ID"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:313
+#, python-format
+msgid "It will produce the following CSV file:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:362
+#, python-format
+msgid "Here is the start of the file we could not import:"
+msgstr ""
+
+#. module: base_import
+#: field:base_import.import,file_type:0
+msgid "File Type"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_import
+msgid "base_import.import"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_o2m
+msgid "base_import.tests.models.o2m"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:360
+#, python-format
+msgid "Import preview failed due to:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:144
+#, python-format
+msgid ""
+"Country/External ID: the ID of this record \n"
+"                        referenced in another application (or the .XML file "
+"\n"
+"                        that imported it)"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:35
+#, python-format
+msgid "Reload data to check changes."
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly
+msgid "base_import.tests.models.char.readonly"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:131
+#, python-format
+msgid ""
+"Some fields define a relationship with another \n"
+"                        object. For example, the country of a contact is a \n"
+"                        link to a record of the 'Country' object. When you \n"
+"                        want to import such fields, OpenERP will have to \n"
+"                        recreate links between the different records. \n"
+"                        To help you import such fields, OpenERP provides 3 \n"
+"                        mechanisms. You must use one and only one mechanism "
+"\n"
+"                        per field you want to import."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:201
+#, python-format
+msgid ""
+"The tags should be separated by a comma without any \n"
+"                        spacing. For example, if you want you customer to be "
+"\n"
+"                        lined to both tags 'Manufacturer' and 'Retailer' \n"
+"                        then you will encode it as follow \"Manufacturer,\n"
+"                        Retailer\" in the same column of your CSV file."
+msgstr ""
+
+#. module: base_import
+#: code:addons/base_import/models.py:264
+#, python-format
+msgid "You must configure at least one field to import"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:304
+#, python-format
+msgid "company_2,Organi,True"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:58
+#, python-format
+msgid ""
+"The first row of the\n"
+"                file contains the label of the column"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_char_states
+msgid "base_import.tests.models.char.states"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:7
+#, python-format
+msgid "Import a CSV File"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:74
+#, python-format
+msgid "Quoting:"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required_related
+msgid "base_import.tests.models.m2o.required.related"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:293
+#, python-format
+msgid ")."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:18
+#: code:addons/base_import/static/src/xml/import.xml:396
+#, python-format
+msgid "Import"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:438
+#, python-format
+msgid "Here are the possible values:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:82
+#, python-format
+msgid "The"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:248
+#, python-format
+msgid ""
+"A single column was found in the file, this often means the file separator "
+"is incorrect"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:293
+#, python-format
+msgid "dump of such a PostgreSQL database"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:301
+#, python-format
+msgid "This SQL command will create the following CSV file:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:228
+#, python-format
+msgid ""
+"The following CSV file shows how to import purchase \n"
+"                        orders with their respective purchase order lines:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:91
+#, python-format
+msgid ""
+"What can I do when the Import preview table isn't \n"
+"                        displayed correctly?"
+msgstr ""
+
+#. module: base_import
+#: field:base_import.tests.models.char,value:0
+#: field:base_import.tests.models.char.noreadonly,value:0
+#: field:base_import.tests.models.char.readonly,value:0
+#: field:base_import.tests.models.char.required,value:0
+#: field:base_import.tests.models.char.states,value:0
+#: field:base_import.tests.models.char.stillreadonly,value:0
+#: field:base_import.tests.models.m2o,value:0
+#: field:base_import.tests.models.m2o.related,value:0
+#: field:base_import.tests.models.m2o.required,value:0
+#: field:base_import.tests.models.m2o.required.related,value:0
+#: field:base_import.tests.models.o2m,value:0
+#: field:base_import.tests.models.o2m.child,parent_id:0
+#: field:base_import.tests.models.o2m.child,value:0
+msgid "unknown"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:317
+#, python-format
+msgid "person_2,Laurence,False,company_1"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:149
+#, python-format
+msgid "Country/External ID: base.be"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:288
+#, python-format
+msgid ""
+"As an example, suppose you have a SQL database \n"
+"                        with two tables you want to import: companies and \n"
+"                        persons. Each person belong to one company, so you \n"
+"                        will have to recreate the link between a person and "
+"\n"
+"                        the company he work for. (If you want to test this \n"
+"                        example, here is a"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:427
+#, python-format
+msgid "(%d more)"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:227
+#, python-format
+msgid "File for some Quotations"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:72
+#, python-format
+msgid "Encoding:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:280
+#, python-format
+msgid ""
+"To manage relations between tables, \n"
+"                        you can use the \"External ID\" facilities of "
+"OpenERP. \n"
+"                        The \"External ID\" of a record is the unique "
+"identifier \n"
+"                        of this record in another application. This "
+"\"External \n"
+"                        ID\" must be unique accoss all the records of all \n"
+"                        objects, so it's a good practice to prefix this \n"
+"                        \"External ID\" with the name of the application or "
+"\n"
+"                        table. (like 'company_1', 'person_1' instead of '1')"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:295
+#, python-format
+msgid ""
+"We will first export all companies and their \n"
+"                        \"External ID\". In PSQL, write the following "
+"command:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:212
+#, python-format
+msgid ""
+"How can I import a one2many relationship (e.g. several \n"
+"                        Order Lines of a Sales Order)?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:404
+#, python-format
+msgid "Everything seems valid."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:188
+#, python-format
+msgid ""
+"However if you do not wish to change your \n"
+"                        configuration of product categories, we recommend "
+"you \n"
+"                        use make use of the external ID for this field \n"
+"                        'Category'."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:421
+#, python-format
+msgid "at row %d"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:197
+#, python-format
+msgid ""
+"How can I import a many2many relationship field \n"
+"                        (e.g. a customer that has multiple tags)?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:80
+#, python-format
+msgid "XXX/ID"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:275
+#, python-format
+msgid ""
+"If you need to import data from different tables, \n"
+"                        you will have to recreate relations between records "
+"\n"
+"                        belonging to different tables. (e.g. if you import \n"
+"                        companies and persons, you will have to recreate the "
+"\n"
+"                        link between each person and the company they work \n"
+"                        for)."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:150
+#, python-format
+msgid ""
+"According to your need, you should use \n"
+"                        one of these 3 ways to reference records in "
+"relations. \n"
+"                        Here is when you should use one or the other, \n"
+"                        according to your need:"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:319
+#, python-format
+msgid "person_4,Ramsy,False,company_3"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:261
+#, python-format
+msgid ""
+"If you do not set all fields in your CSV file, \n"
+"                        OpenERP will assign the default value for every non "
+"\n"
+"                        defined fields. But if you\n"
+"                        set fields with empty values in your CSV file, "
+"OpenERP \n"
+"                        will set the EMPTY value in the field, instead of \n"
+"                        assigning the default value."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:20
+#, python-format
+msgid "Cancel"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:257
+#, python-format
+msgid ""
+"What happens if I do not provide a value for a \n"
+"                        specific field?"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:68
+#, python-format
+msgid "Frequently Asked Questions"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:305
+#, python-format
+msgid "company_3,Boum,True"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:176
+#, python-format
+msgid "Space"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:249
+#, python-format
+msgid ""
+"This feature \n"
+"                        allows you to use the Import/Export tool of OpenERP "
+"to \n"
+"                        modify a batch of records in your favorite "
+"spreadsheet \n"
+"                        application."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:77
+#, python-format
+msgid ""
+"column in OpenERP. When you\n"
+"                        import an other record that links to the first\n"
+"                        one, use"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:242
+#, python-format
+msgid ""
+"If you import a file that contains one of the \n"
+"                        column \"External ID\" or \"Database ID\", records "
+"that \n"
+"                        have already been imported will be modified instead "
+"of \n"
+"                        being created. This is very usefull as it allows you "
+"\n"
+"                        to import several times the same CSV file while "
+"having \n"
+"                        made some changes in between two imports. OpenERP "
+"will \n"
+"                        take care of creating or modifying each record \n"
+"                        depending if it's new or not."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:169
+#, python-format
+msgid "CSV file for categories"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:330
+#, python-format
+msgid "Normal Fields"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:74
+#, python-format
+msgid ""
+"In order to re-create relationships between\n"
+"                        different records, you should use the unique\n"
+"                        identifier from the original application and\n"
+"                        map it to the"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:170
+#, python-format
+msgid "CSV file for Products"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:216
+#, python-format
+msgid ""
+"If you want to import sales order having several \n"
+"                        order lines; for each order line, you need to "
+"reserve \n"
+"                        a specific row in the CSV file. The first order line "
+"\n"
+"                        will be imported on the same row as the information "
+"\n"
+"                        relative to order. Any additional lines will need an "
+"\n"
+"                        addtional row that does not have any information in "
+"\n"
+"                        the fields relative to the order."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:173
+#: code:addons/base_import/static/src/js/import.js:184
+#, python-format
+msgid "Comma"
+msgstr ""
+
+#. module: base_import
+#: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related
+msgid "base_import.tests.models.m2o.related"
+msgstr ""
+
+#. module: base_import
+#: field:base_import.tests.models.preview,name:0
+msgid "Name"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:80
+#, python-format
+msgid "to the original unique identifier."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:318
+#, python-format
+msgid "person_3,Eric,False,company_2"
+msgstr ""
+
+#. module: base_import
+#: field:base_import.import,res_model:0
+msgid "Model"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:77
+#: code:addons/base_import/static/src/xml/import.xml:82
+#, python-format
+msgid "ID"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:329
+#, python-format
+msgid ""
+"The two files produced are ready to be imported in \n"
+"                        OpenERP without any modifications. After having \n"
+"                        imported these two CSV files, you will have 4 "
+"contacts \n"
+"                        and 3 companies. (the firsts two contacts are linked "
+"\n"
+"                        to the first company). You must first import the \n"
+"                        companies and then the persons."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:95
+#, python-format
+msgid ""
+"By default the Import preview is set on commas as \n"
+"                        field separators and quotation marks as text \n"
+"                        delimiters. If your csv file does not have these \n"
+"                        settings, you can modify the File Format Options \n"
+"                        (displayed under the Browse CSV file bar after you \n"
+"                        select your file)."
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:73
+#, python-format
+msgid "Separator:"
+msgstr ""
+
+#. module: base_import
+#: field:base_import.import,file_name:0
+msgid "File Name"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/models.py:80
+#: code:addons/base_import/models.py:111
+#: code:addons/base_import/static/src/xml/import.xml:77
+#: code:addons/base_import/static/src/xml/import.xml:82
+#, python-format
+msgid "External ID"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:39
+#, python-format
+msgid "File Format Options…"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/js/import.js:423
+#, python-format
+msgid "between rows %d and %d"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:19
+#, python-format
+msgid "or"
+msgstr ""
+
+#. module: base_import
+#. openerp-web
+#: code:addons/base_import/static/src/xml/import.xml:223
+#, python-format
+msgid ""
+"As an example, here is \n"
+"                        purchase.order_functional_error_line_cant_adpat.CSV "
+"\n"
+"                        file of some quotations you can import, based on "
+"demo \n"
+"                        data."
+msgstr ""
+
+#. module: base_import
+#: field:base_import.import,file:0
+msgid "File"
+msgstr ""
diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po
index 11b706cb501..f032b98c302 100644
--- a/addons/base_import/i18n/pt_BR.po
+++ b/addons/base_import/i18n/pt_BR.po
@@ -8,13 +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-28 20:27+0000\n"
-"Last-Translator: Danimar Ribeiro \n"
+"PO-Revision-Date: 2013-03-31 23:10+0000\n"
+"Last-Translator: Fábio Martinelli - http://zupy.com.br "
+"\n"
 "Language-Team: Brazilian Portuguese \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:33+0000\n"
+"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n"
 "X-Generator: Launchpad (build 16546)\n"
 
 #. module: base_import
@@ -381,7 +382,7 @@ msgstr ""
 #: code:addons/base_import/static/src/js/import.js:174
 #, python-format
 msgid "Semicolon"
-msgstr ""
+msgstr "Ponto e vírgula"
 
 #. module: base_import
 #. openerp-web
@@ -438,7 +439,7 @@ msgstr ""
 #: code:addons/base_import/static/src/js/import.js:175
 #, python-format
 msgid "Tab"
-msgstr ""
+msgstr "Tab"
 
 #. module: base_import
 #: field:base_import.tests.models.preview,othervalue:0
@@ -750,7 +751,7 @@ msgstr ""
 #: code:addons/base_import/static/src/xml/import.xml:293
 #, python-format
 msgid "dump of such a PostgreSQL database"
-msgstr ""
+msgstr "dump de um banco de dados PostgreSQL"
 
 #. module: base_import
 #. openerp-web
@@ -799,7 +800,7 @@ msgstr "desconhecido"
 #: code:addons/base_import/static/src/xml/import.xml:317
 #, python-format
 msgid "person_2,Laurence,False,company_1"
-msgstr ""
+msgstr "person_2,Laurence,False,company_1"
 
 #. module: base_import
 #. openerp-web
diff --git a/addons/base_report_designer/i18n/mk.po b/addons/base_report_designer/i18n/mk.po
index e6449ba9d46..0615b541d31 100644
--- a/addons/base_report_designer/i18n/mk.po
+++ b/addons/base_report_designer/i18n/mk.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-03-28 22:13+0000\n"
+"PO-Revision-Date: 2013-03-29 09:25+0000\n"
 "Last-Translator: Софче Димитријева \n"
 "Language-Team: ESKON-INZENERING\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:08+0000\n"
+"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n"
 "X-Generator: Launchpad (build 16546)\n"
 "Language: mk\n"
 
@@ -34,8 +34,8 @@ msgid ""
 "This plug-in allows you to create/modify OpenERP Reports into OpenOffice "
 "Writer."
 msgstr ""
-"Овој додаток овозможува креирање/модифицирање на OpenERP извештаи во "
-"OpenOffice."
+"Овој приклучок ви овозможува да креирате/менувате OpenERP извештаи во "
+"OpenOffice Writer."
 
 #. module: base_report_designer
 #: view:base.report.sxw:0
@@ -92,7 +92,7 @@ msgstr "Име на датотеката"
 #: view:base.report.file.sxw:0
 #: view:base.report.sxw:0
 msgid "Get a report"
-msgstr "Земи извештај"
+msgstr "Добиј извештај"
 
 #. module: base_report_designer
 #: view:base_report_designer.installer:0
@@ -168,7 +168,7 @@ msgstr "base.report.file.sxw"
 #. module: base_report_designer
 #: field:base_report_designer.installer,plugin_file:0
 msgid "OpenObject Report Designer Plug-in"
-msgstr "OpenObject Report Designer додаток"
+msgstr "Приклучок за дизајнер на OpenObject извештај"
 
 #. module: base_report_designer
 #: model:ir.actions.act_window,name:base_report_designer.action_report_designer_installer
diff --git a/addons/base_report_designer/i18n/tr.po b/addons/base_report_designer/i18n/tr.po
index 241b32d5e54..3381c338ac8 100644
--- a/addons/base_report_designer/i18n/tr.po
+++ b/addons/base_report_designer/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-02-24 19:49+0000\n"
+"PO-Revision-Date: 2013-04-01 12:20+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:34+0000\n"
+"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n"
 "X-Generator: Launchpad (build 16546)\n"
 
 #. module: base_report_designer
@@ -80,7 +80,7 @@ msgstr "RML Raporu"
 #. module: base_report_designer
 #: model:ir.ui.menu,name:base_report_designer.menu_action_report_designer_wizard
 msgid "Report Designer"
-msgstr "Rapor Tasarımcısı"
+msgstr "Rapor Tasarımı"
 
 #. module: base_report_designer
 #: field:base_report_designer.installer,name:0
diff --git a/addons/base_status/i18n/cs.po b/addons/base_status/i18n/cs.po
new file mode 100644
index 00000000000..4cecd951ad6
--- /dev/null
+++ b/addons/base_status/i18n/cs.po
@@ -0,0 +1,76 @@
+# Czech 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-03-30 12:43+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Czech \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-31 05:57+0000\n"
+"X-Generator: Launchpad (build 16546)\n"
+
+#. module: base_status
+#: code:addons/base_status/base_state.py:107
+#, python-format
+msgid "Error !"
+msgstr ""
+
+#. module: base_status
+#: code:addons/base_status/base_state.py:166
+#, python-format
+msgid "%s has been opened."
+msgstr ""
+
+#. module: base_status
+#: code:addons/base_status/base_state.py:199
+#, python-format
+msgid "%s has been renewed."
+msgstr ""
+
+#. module: base_status
+#: code:addons/base_status/base_stage.py:210
+#, python-format
+msgid "Error!"
+msgstr ""
+
+#. module: base_status
+#: code:addons/base_status/base_state.py:107
+#, python-format
+msgid ""
+"You can not escalate, you are already at the top level regarding your sales-"
+"team category."
+msgstr ""
+
+#. module: base_status
+#: code:addons/base_status/base_state.py:193
+#, python-format
+msgid "%s is now pending."
+msgstr ""
+
+#. module: base_status
+#: code:addons/base_status/base_state.py:187
+#, python-format
+msgid "%s has been canceled."
+msgstr ""
+
+#. module: base_status
+#: code:addons/base_status/base_stage.py:210
+#, python-format
+msgid ""
+"You are already at the top level of your sales-team category.\n"
+"Therefore you cannot escalate furthermore."
+msgstr ""
+
+#. module: base_status
+#: code:addons/base_status/base_state.py:181
+#, python-format
+msgid "%s has been closed."
+msgstr ""
diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po
index f77d1a9a1ab..6efeee06e60 100644
--- a/addons/base_vat/i18n/sl.po
+++ b/addons/base_vat/i18n/sl.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:38+0000\n"
-"PO-Revision-Date: 2013-01-01 22:27+0000\n"
+"PO-Revision-Date: 2013-03-31 12:00+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:34+0000\n"
+"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n"
 "X-Generator: Launchpad (build 16546)\n"
 
 #. module: base_vat
@@ -51,7 +51,7 @@ msgstr "Napaka!"
 #. module: base_vat
 #: view:res.partner:0
 msgid "e.g. BE0477472701"
-msgstr ""
+msgstr "e.g. BE0477472701"
 
 #. module: base_vat
 #: help:res.partner,vat_subjected:0
diff --git a/addons/crm/i18n/ko.po b/addons/crm/i18n/ko.po
index 36a9b469c71..1ae904e1b33 100644
--- a/addons/crm/i18n/ko.po
+++ b/addons/crm/i18n/ko.po
@@ -14,7 +14,7 @@ msgstr ""
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n"
+"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n"
 "X-Generator: Launchpad (build 16546)\n"
 
 #. module: crm
diff --git a/addons/crm_claim/i18n/cs.po b/addons/crm_claim/i18n/cs.po
new file mode 100644
index 00000000000..cd996defc18
--- /dev/null
+++ b/addons/crm_claim/i18n/cs.po
@@ -0,0 +1,881 @@
+# Czech 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-03-31 16:47+0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Czech \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-01 05:31+0000\n"
+"X-Generator: Launchpad (build 16546)\n"
+
+#. module: crm_claim
+#: help:crm.claim.stage,fold:0
+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 ""
+
+#. module: crm_claim
+#: field:crm.claim.report,nbr:0
+msgid "# of Cases"
+msgstr ""
+
+#. module: crm_claim
+#: view:crm.claim:0
+#: view:crm.claim.report:0
+msgid "Group By..."
+msgstr ""
+
+#. module: crm_claim
+#: view:crm.claim:0
+msgid "Responsibilities"
+msgstr ""
+
+#. module: crm_claim
+#: help:sale.config.settings,fetchmail_claim:0
+msgid ""
+"Allows you to configure your incoming mail server, and create claims from "
+"incoming emails."
+msgstr ""
+
+#. module: crm_claim
+#: model:ir.model,name:crm_claim.model_crm_claim_stage
+msgid "Claim stages"
+msgstr ""
+
+#. module: crm_claim
+#: selection:crm.claim.report,month:0
+msgid "March"
+msgstr ""
+
+#. module: crm_claim
+#: field:crm.claim.report,delay_close:0
+msgid "Delay to close"
+msgstr ""
+
+#. module: crm_claim
+#: field:crm.claim,message_unread:0
+msgid "Unread Messages"
+msgstr ""
+
+#. module: crm_claim
+#: field:crm.claim,resolution:0
+msgid "Resolution"
+msgstr ""
+
+#. module: crm_claim
+#: field:crm.claim,company_id:0
+#: view:crm.claim.report:0
+#: field:crm.claim.report,company_id:0
+msgid "Company"
+msgstr ""
+
+#. module: crm_claim
+#: model:ir.actions.act_window,help:crm_claim.crm_claim_categ_action
+msgid ""
+"

\n" +" Click to create a claim category.\n" +"

\n" +" Create claim categories to better manage and classify your\n" +" claims. Some example of claims can be: preventive action,\n" +" corrective action.\n" +"

\n" +" " +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "#Claim" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.stage,name:0 +msgid "Stage Name" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Salesperson" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "Highest" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +#: field:crm.claim.report,day:0 +msgid "Day" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Claim Description" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: crm_claim +#: model:crm.case.categ,name:crm_claim.categ_claim1 +msgid "Factual Claims" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim,state:0 +#: selection:crm.claim.report,state:0 +#: selection:crm.claim.stage,state:0 +msgid "Cancelled" +msgstr "" + +#. module: crm_claim +#: model:crm.case.resource.type,name:crm_claim.type_claim2 +msgid "Preventive" +msgstr "" + +#. module: crm_claim +#: help:crm.claim,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: crm_claim +#: field:crm.claim.report,date_closed:0 +msgid "Close Date" +msgstr "" + +#. module: crm_claim +#: view:res.partner:0 +msgid "False" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,ref:0 +msgid "Reference" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Date of claim" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "# Mails" +msgstr "" + +#. module: crm_claim +#: help:crm.claim,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,date_deadline:0 +#: field:crm.claim.report,date_deadline:0 +msgid "Deadline" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,partner_id:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,partner_id:0 +#: model:ir.model,name:crm_claim.model_res_partner +msgid "Partner" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Follow Up" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim,type_action:0 +#: selection:crm.claim.report,type_action:0 +msgid "Preventive Action" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.report,section_id:0 +msgid "Section" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Root Causes" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,user_fault:0 +msgid "Trouble Responsible" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,priority:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,priority:0 +msgid "Priority" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.stage,fold:0 +msgid "Hide in Views when Empty" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: selection:crm.claim,state:0 +#: view:crm.claim.report:0 +#: model:crm.claim.stage,name:crm_claim.stage_claim1 +#: selection:crm.claim.stage,state:0 +msgid "New" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.stage,section_ids:0 +msgid "Sections" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,email_from:0 +msgid "Email" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "Lowest" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,action_next:0 +msgid "Next Action" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "My Sales Team(s)" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,create_date:0 +msgid "Creation Date" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,name:0 +msgid "Claim Subject" +msgstr "" + +#. module: crm_claim +#: model:crm.claim.stage,name:crm_claim.stage_claim3 +msgid "Rejected" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,date_action_next:0 +msgid "Next Action Date" +msgstr "" + +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.action_report_crm_claim +msgid "" +"Have a general overview of all claims processed in the system by sorting " +"them with specific criteria." +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "July" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.stage:0 +#: model:ir.actions.act_window,name:crm_claim.crm_claim_stage_act +msgid "Claim Stages" +msgstr "" + +#. module: crm_claim +#: model:ir.ui.menu,name:crm_claim.menu_crm_case_claim-act +msgid "Categories" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,stage_id:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,stage_id:0 +msgid "Stage" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Dates" +msgstr "" + +#. module: crm_claim +#: help:crm.claim,email_from:0 +msgid "Destination email for email gateway." +msgstr "" + +#. module: crm_claim +#: code:addons/crm_claim/crm_claim.py:194 +#, python-format +msgid "No Subject" +msgstr "" + +#. module: crm_claim +#: help:crm.claim.stage,state:0 +msgid "" +"The related status for the stage. The status of your document will " +"automatically change regarding the selected stage. For example, if a stage " +"is related to the status 'Close', when your document reaches this stage, it " +"will be automatically have the 'closed' status." +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Settle" +msgstr "" + +#. module: crm_claim +#: model:ir.ui.menu,name:crm_claim.menu_claim_stage_view +msgid "Stages" +msgstr "" + +#. module: crm_claim +#: model:ir.actions.act_window,name:crm_claim.action_report_crm_claim +#: model:ir.ui.menu,name:crm_claim.menu_report_crm_claim_tree +msgid "Claims Analysis" +msgstr "" + +#. module: crm_claim +#: help:crm.claim.report,delay_close:0 +msgid "Number of Days to close the case" +msgstr "" + +#. module: crm_claim +#: model:ir.model,name:crm_claim.model_crm_claim_report +msgid "CRM Claim Report" +msgstr "" + +#. module: crm_claim +#: view:sale.config.settings:0 +msgid "Configure" +msgstr "" + +#. module: crm_claim +#: model:crm.case.resource.type,name:crm_claim.type_claim1 +msgid "Corrective" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "September" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "December" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +#: field:crm.claim.report,month:0 +msgid "Month" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,type_action:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,type_action:0 +msgid "Action Type" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Year of claim" +msgstr "" + +#. module: crm_claim +#: help:crm.claim.stage,case_default:0 +msgid "" +"If you check this field, this stage will be proposed by default on each " +"sales team. It will not assign this stage to existing teams." +msgstr "" + +#. module: crm_claim +#: field:crm.claim,categ_id:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,categ_id:0 +msgid "Category" +msgstr "" + +#. module: crm_claim +#: model:crm.case.categ,name:crm_claim.categ_claim2 +msgid "Value Claims" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Responsible User" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,email_cc:0 +msgid "Watchers Emails" +msgstr "" + +#. module: crm_claim +#: help:crm.claim,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,state:0 +msgid "Draft" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "Low" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,date_closed:0 +#: selection:crm.claim,state:0 +#: selection:crm.claim.report,state:0 +#: selection:crm.claim.stage,state:0 +msgid "Closed" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Reject" +msgstr "" + +#. module: crm_claim +#: view:res.partner:0 +msgid "Partners Claim" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.stage:0 +msgid "Claim Stage" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: selection:crm.claim,state:0 +#: view:crm.claim.report:0 +#: selection:crm.claim.report,state:0 +#: selection:crm.claim.stage,state:0 +msgid "Pending" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,state:0 +#: view:crm.claim.report:0 +#: field:crm.claim.report,state:0 +#: field:crm.claim.stage,state:0 +msgid "Status" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "August" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "Normal" +msgstr "" + +#. module: crm_claim +#: help:crm.claim.stage,sequence:0 +msgid "Used to order stages. Lower is better." +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "June" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,id:0 +msgid "ID" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,partner_phone:0 +msgid "Phone" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.report,user_id:0 +msgid "User" +msgstr "" + +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.crm_claim_stage_act +msgid "" +"

\n" +" Click to setup a new stage in the processing of the claims. " +"\n" +"

\n" +" You can create claim stages to categorize the status of " +"every\n" +" claim entered in the system. The stages define all the " +"steps\n" +" required for the resolution of a claim.\n" +"

\n" +" " +msgstr "" + +#. module: crm_claim +#: help:crm.claim,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +"If the case is in progress the status is set to 'Open'. " +"When the case is over, the status is set to 'Done'. If " +"the case needs to be reviewed then the status is set " +"to 'Pending'." +msgstr "" + +#. module: crm_claim +#: field:crm.claim,active:0 +msgid "Active" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "November" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Closure" +msgstr "" + +#. module: crm_claim +#: help:crm.claim,section_id:0 +msgid "" +"Responsible sales team. Define Responsible user and Email account for mail " +"gateway." +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "October" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "January" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,date:0 +msgid "Claim Date" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: crm_claim +#: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action +msgid "Claim Categories" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.stage,case_default:0 +msgid "Common to All Teams" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: view:crm.claim.report:0 +#: model:ir.actions.act_window,name:crm_claim.act_claim_partner +#: model:ir.actions.act_window,name:crm_claim.crm_case_categ_claim0 +#: model:ir.ui.menu,name:crm_claim.menu_crm_case_claims +#: view:res.partner:0 +#: field:res.partner,claims_ids:0 +msgid "Claims" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim,type_action:0 +#: selection:crm.claim.report,type_action:0 +msgid "Corrective Action" +msgstr "" + +#. module: crm_claim +#: model:crm.case.categ,name:crm_claim.categ_claim3 +msgid "Policy Claims" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Date Closed" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: model:ir.model,name:crm_claim.model_crm_claim +#: model:ir.ui.menu,name:crm_claim.menu_config_claim +msgid "Claim" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "My Company" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Done" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Claim Reporter" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Cancel" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +#: selection:crm.claim.report,state:0 +msgid "Open" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "New Claims" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: selection:crm.claim,state:0 +#: model:crm.claim.stage,name:crm_claim.stage_claim5 +#: selection:crm.claim.stage,state:0 +msgid "In Progress" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: field:crm.claim,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Search" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Unassigned Claims" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.report,delay_expected:0 +msgid "Overpassed Deadline" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,cause:0 +msgid "Root Cause" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Claim/Action Description" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,description:0 +msgid "Description" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Search Claims" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "May" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +#: view:crm.claim.report:0 +msgid "Type" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Resolution Actions" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.stage,case_refused:0 +msgid "Refused stage" +msgstr "" + +#. module: crm_claim +#: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0 +msgid "" +"Record and track your customers' claims. Claims may be linked to a sales " +"order or a lot. You can send emails with attachments and keep the full " +"history for a claim (emails sent, intervention type and so on). Claims may " +"automatically be linked to an email address using the mail gateway module." +msgstr "" + +#. module: crm_claim +#: field:crm.claim.report,email:0 +msgid "# Emails" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "Month of claim" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "February" +msgstr "" + +#. module: crm_claim +#: model:ir.model,name:crm_claim.model_sale_config_settings +msgid "sale.config.settings" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +#: field:crm.claim.report,name:0 +msgid "Year" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "My company" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim.report,month:0 +msgid "April" +msgstr "" + +#. module: crm_claim +#: view:crm.claim.report:0 +msgid "My Case(s)" +msgstr "" + +#. module: crm_claim +#: model:crm.claim.stage,name:crm_claim.stage_claim2 +msgid "Settled" +msgstr "" + +#. module: crm_claim +#: help:crm.claim,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: crm_claim +#: field:sale.config.settings,fetchmail_claim:0 +msgid "Create claims from incoming mails" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.stage,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "Actions" +msgstr "" + +#. module: crm_claim +#: selection:crm.claim,priority:0 +#: selection:crm.claim.report,priority:0 +msgid "High" +msgstr "" + +#. module: crm_claim +#: field:crm.claim,section_id:0 +#: view:crm.claim.report:0 +msgid "Sales Team" +msgstr "" + +#. module: crm_claim +#: field:crm.claim.report,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: crm_claim +#: view:crm.claim:0 +msgid "In Progress Claims" +msgstr "" + +#. module: crm_claim +#: help:crm.claim.stage,section_ids:0 +msgid "" +"Link between stages and sales teams. When set, this limitate the current " +"stage to the selected sales teams." +msgstr "" + +#. module: crm_claim +#: help:crm.claim.stage,case_refused:0 +msgid "Refused stages are specific stages for done." +msgstr "" diff --git a/addons/crm_claim/i18n/ko.po b/addons/crm_claim/i18n/ko.po index 762930044ee..b86dec29646 100644 --- a/addons/crm_claim/i18n/ko.po +++ b/addons/crm_claim/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: crm_claim diff --git a/addons/crm_helpdesk/i18n/cs.po b/addons/crm_helpdesk/i18n/cs.po new file mode 100644 index 00000000000..f142d8a459e --- /dev/null +++ b/addons/crm_helpdesk/i18n/cs.po @@ -0,0 +1,708 @@ +# Czech 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-03-31 16:47+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,delay_close:0 +msgid "Delay to Close" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,nbr:0 +msgid "# of Cases" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: view:crm.helpdesk.report:0 +msgid "Group By..." +msgstr "" + +#. module: crm_helpdesk +#: help:crm.helpdesk,email_from:0 +msgid "Destination email for email gateway" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "March" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,company_id:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,company_id:0 +msgid "Company" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,email_cc:0 +msgid "Watchers Emails" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Salesperson" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "Highest" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,day:0 +msgid "Day" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Date of helpdesk requests" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Notes" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "My company" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,state:0 +#: selection:crm.helpdesk.report,state:0 +msgid "Cancelled" +msgstr "" + +#. module: crm_helpdesk +#: help:crm.helpdesk,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,name:crm_helpdesk.action_report_crm_helpdesk +#: model:ir.ui.menu,name:crm_helpdesk.menu_report_crm_helpdesks_tree +msgid "Helpdesk Analysis" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,date_closed:0 +msgid "Close Date" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,ref:0 +msgid "Reference" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,date_action_next:0 +msgid "Next Action" +msgstr "" + +#. module: crm_helpdesk +#: help:crm.helpdesk,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Helpdesk Supports" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Extra Info" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,partner_id:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Estimates" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,section_id:0 +msgid "Section" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,priority:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,priority:0 +msgid "Priority" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: selection:crm.helpdesk,state:0 +#: view:crm.helpdesk.report:0 +msgid "New" +msgstr "" + +#. module: crm_helpdesk +#: model:ir.model,name:crm_helpdesk.model_crm_helpdesk_report +msgid "Helpdesk report after Sales Services" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,email_from:0 +msgid "Email" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,channel_id:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,channel_id:0 +msgid "Channel" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "Lowest" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "# Mails" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "My Sales Team(s)" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,create_date:0 +#: field:crm.helpdesk.report,create_date:0 +msgid "Creation Date" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Reset to Draft" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,date_deadline:0 +#: field:crm.helpdesk.report,date_deadline:0 +msgid "Deadline" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "July" +msgstr "" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,name:crm_helpdesk.crm_helpdesk_categ_action +msgid "Helpdesk Categories" +msgstr "" + +#. module: crm_helpdesk +#: model:ir.ui.menu,name:crm_helpdesk.menu_crm_case_helpdesk-act +msgid "Categories" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "New Helpdesk Request" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Dates" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Month of helpdesk requests" +msgstr "" + +#. module: crm_helpdesk +#: code:addons/crm_helpdesk/crm_helpdesk.py:104 +#, python-format +msgid "No Subject" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Cancel Case" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "" +"Helpdesk requests that are assigned to me or to one of the sale teams I " +"manage" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "#Helpdesk" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "All pending Helpdesk Request" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Close Case" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Year of helpdesk requests" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "September" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "December" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,month:0 +msgid "Month" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Query" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,ref2:0 +msgid "Reference 2" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,categ_id:0 +#: field:crm.helpdesk.report,categ_id:0 +msgid "Category" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Responsible User" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Helpdesk Support" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,planned_cost:0 +#: field:crm.helpdesk.report,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: crm_helpdesk +#: help:crm.helpdesk,channel_id:0 +msgid "Communication channel." +msgstr "" + +#. module: crm_helpdesk +#: help:crm.helpdesk,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Search Helpdesk" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,state:0 +msgid "Draft" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "Low" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,date_closed:0 +#: selection:crm.helpdesk,state:0 +#: view:crm.helpdesk.report:0 +#: selection:crm.helpdesk.report,state:0 +msgid "Closed" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: selection:crm.helpdesk,state:0 +#: selection:crm.helpdesk.report,state:0 +msgid "Pending" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,state:0 +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,state:0 +msgid "Status" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "August" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "Normal" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Escalate" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "June" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,id:0 +msgid "ID" +msgstr "" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.crm_case_helpdesk_act111 +msgid "" +"

\n" +" Click to create a new request. \n" +"

\n" +" Helpdesk and Support allow you to track your interventions.\n" +"

\n" +" Use the OpenERP Issues system to manage your support\n" +" activities. Issues can be connected to the email gateway: " +"new\n" +" emails may create issues, each of them automatically gets " +"the\n" +" history of the conversation with the customer.\n" +"

\n" +" " +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,user_id:0 +msgid "User" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,active:0 +msgid "Active" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "November" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,name:crm_helpdesk.crm_case_helpdesk_act111 +msgid "Helpdesk Requests" +msgstr "" + +#. module: crm_helpdesk +#: help:crm.helpdesk,section_id:0 +msgid "" +"Responsible sales team. Define Responsible user and Email account for mail " +"gateway." +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "October" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "January" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,date:0 +msgid "Date" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Misc" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "My Company" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "General" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "References" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Communication" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: view:crm.helpdesk.report:0 +#: selection:crm.helpdesk.report,state:0 +msgid "Open" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Helpdesk Support Tree" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,state:0 +msgid "In Progress" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Categorization" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: model:ir.model,name:crm_helpdesk.model_crm_helpdesk +#: model:ir.ui.menu,name:crm_helpdesk.menu_config_helpdesk +msgid "Helpdesk" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "Search" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,delay_expected:0 +msgid "Overpassed Deadline" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,description:0 +msgid "Description" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "May" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,probability:0 +msgid "Probability (%)" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk.report,email:0 +msgid "# Emails" +msgstr "" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.action_report_crm_helpdesk +msgid "" +"Have a general overview of all support requests by sorting them with " +"specific criteria such as the processing time, number of requests answered, " +"emails sent and costs." +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "February" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,name:0 +msgid "Name" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +#: field:crm.helpdesk.report,name:0 +msgid "Year" +msgstr "" + +#. module: crm_helpdesk +#: model:ir.ui.menu,name:crm_helpdesk.menu_help_support_main +msgid "Helpdesk and Support" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk.report,month:0 +msgid "April" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk.report:0 +msgid "My Case(s)" +msgstr "" + +#. module: crm_helpdesk +#: help:crm.helpdesk,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +" \n" +"If the case is in progress the status is set to 'Open'. " +" \n" +"When the case is over, the status is set to 'Done'. " +" \n" +"If the case needs to be reviewed then the status is set to 'Pending'." +msgstr "" + +#. module: crm_helpdesk +#: help:crm.helpdesk,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: crm_helpdesk +#: model:ir.actions.act_window,help:crm_helpdesk.crm_helpdesk_categ_action +msgid "" +"Create and manage helpdesk categories to better manage and classify your " +"support requests." +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Request Date" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Open Helpdesk Request" +msgstr "" + +#. module: crm_helpdesk +#: selection:crm.helpdesk,priority:0 +#: selection:crm.helpdesk.report,priority:0 +msgid "High" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +#: field:crm.helpdesk,section_id:0 +#: view:crm.helpdesk.report:0 +msgid "Sales Team" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,date_action_last:0 +msgid "Last Action" +msgstr "" + +#. module: crm_helpdesk +#: view:crm.helpdesk:0 +msgid "Assigned to Me or My Sales Team(s)" +msgstr "" + +#. module: crm_helpdesk +#: field:crm.helpdesk,duration:0 +msgid "Duration" +msgstr "" diff --git a/addons/crm_helpdesk/i18n/ko.po b/addons/crm_helpdesk/i18n/ko.po index 97889e7a7b5..ef0c8ddbc50 100644 --- a/addons/crm_helpdesk/i18n/ko.po +++ b/addons/crm_helpdesk/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: crm_helpdesk diff --git a/addons/crm_partner_assign/i18n/cs.po b/addons/crm_partner_assign/i18n/cs.po new file mode 100644 index 00000000000..ebe56d9a712 --- /dev/null +++ b/addons/crm_partner_assign/i18n/cs.po @@ -0,0 +1,931 @@ +# Czech 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-03-30 12:42+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_close:0 +msgid "Delay to Close" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,author_id:0 +msgid "Author" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,type:0 +msgid "" +"Message type: email for email message, notification for system message, " +"comment for other messages such as user replies" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,nbr:0 +msgid "# of Cases" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Group By..." +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,body:0 +msgid "Automatically sanitized HTML contents" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Forward" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Geo Localize" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,starred:0 +msgid "Starred" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Body" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,email_from:0 +msgid "" +"Email address of the sender. This field is set when no matching partner is " +"found for incoming emails." +msgstr "" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Date Partnership" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,type:0 +msgid "Lead" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Delay to close" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history_mode:0 +msgid "Whole Story" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,company_id:0 +msgid "Company" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,notification_ids:0 +msgid "Notifications" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,date_assign:0 +msgid "Partner Date" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +#: view:res.partner:0 +msgid "Salesperson" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Highest" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,day:0 +msgid "Day" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,message_id:0 +msgid "Message unique identifier" +msgstr "" + +#. module: crm_partner_assign +#: field:res.partner,date_review_next:0 +msgid "Next Partner Review" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history_mode:0 +msgid "Latest email" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead,partner_latitude:0 +#: field:res.partner,partner_latitude:0 +msgid "Geo Latitude" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Cancelled" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Geo Assignation" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead_forward_to_partner +msgid "Email composition wizard" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,turnover:0 +msgid "Turnover" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,date_closed:0 +msgid "Close Date" +msgstr "" + +#. module: crm_partner_assign +#: help:res.partner,partner_weight:0 +msgid "" +"Gives the probability to assign a lead to this partner. (0 means no " +"assignation.)" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Partner Activation" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,type:0 +msgid "System notification" +msgstr "" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:74 +#, python-format +msgid "Lead forward" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probability:0 +msgid "Avg Probability" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Previous" +msgstr "" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/partner_geo_assign.py:36 +#, python-format +msgid "Network error" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,email_from:0 +msgid "From" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.res_partner_grade_action +#: model:ir.ui.menu,name:crm_partner_assign.menu_res_partner_grade_action +#: view:res.partner.grade:0 +msgid "Partner Grade" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Section" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Send" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Next" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,priority:0 +msgid "Priority" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_expected:0 +msgid "Overpassed Deadline" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,type:0 +#: field:crm.lead.report.assign,type:0 +msgid "Type" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,type:0 +msgid "Email" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead,partner_assigned_id:0 +msgid "Partner this case has been forwarded/assigned to." +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Lowest" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Date Invoice" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,template_id:0 +msgid "Template" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Assign Date" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Leads Analysis" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,creation_date:0 +msgid "Creation Date" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_res_partner_activation +msgid "res.partner.activation" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,parent_id:0 +msgid "Parent Message" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,res_id:0 +msgid "Related Document ID" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Pending" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Partner Assignation" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,type:0 +msgid "Type is used to separate Leads and Opportunities" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "July" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Date Review" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,stage_id:0 +msgid "Stage" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,state:0 +msgid "Status" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,to_read:0 +msgid "To read" +msgstr "" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:74 +#, python-format +msgid "Fwd" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Geo Localization" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: view:crm.partner.report.assign:0 +msgid "Opportunities Assignment Analysis" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: view:res.partner:0 +msgid "Cancel" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,history_mode:0 +msgid "Send history" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Close" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "March" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_opportunity_assign +#: model:ir.ui.menu,name:crm_partner_assign.menu_report_crm_opportunities_assign_tree +msgid "Opp. Assignment Analysis" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,delay_close:0 +msgid "Number of Days to close the case" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,notified_partner_ids:0 +msgid "" +"Partners that have a notification pushing this message in their mailboxes" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,type:0 +msgid "Comment" +msgstr "" + +#. module: crm_partner_assign +#: field:res.partner,partner_weight:0 +msgid "Weight" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "April" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,grade_id:0 +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,grade_id:0 +msgid "Grade" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "December" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,vote_user_ids:0 +msgid "Users that voted for this message" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,month:0 +msgid "Month" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,opening_date:0 +msgid "Opening Date" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,child_ids:0 +msgid "Child Messages" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,date_review:0 +#: field:res.partner,date_review:0 +msgid "Latest Partner Review" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,subject:0 +msgid "Subject" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "or" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,body:0 +msgid "Contents" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,vote_user_ids:0 +msgid "Votes" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "#Opportunities" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,starred:0 +msgid "Current user has a starred notification linked to this message" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,date_partnership:0 +#: field:res.partner,date_partnership:0 +msgid "Partnership Date" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Team" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +msgid "Draft" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Low" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: selection:crm.lead.report.assign,state:0 +msgid "Closed" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_crm_send_mass_forward +msgid "Mass forward to partner" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +#: field:res.partner,opportunity_assigned_ids:0 +msgid "Assigned Opportunities" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead,date_assign:0 +msgid "Assignation Date" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probability_max:0 +msgid "Max Probability" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "August" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,record_name:0 +msgid "Name get of the related document." +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "Normal" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Escalate" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "June" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.report.assign,delay_open:0 +msgid "Number of Days to open the case" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,delay_open:0 +msgid "Delay to Open" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,user_id:0 +#: field:crm.partner.report.assign,user_id:0 +msgid "User" +msgstr "" + +#. module: crm_partner_assign +#: field:res.partner.grade,active:0 +msgid "Active" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "November" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Extended Filters..." +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead,partner_longitude:0 +#: field:res.partner,partner_longitude:0 +msgid "Geo Longitude" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,opp:0 +msgid "# of Opportunity" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Lead Assign" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "October" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Assignation" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "January" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +msgid "Send Mail" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,date:0 +msgid "Date" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Planned Revenues" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Partner Review" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.partner.report.assign,period_id:0 +msgid "Invoice Period" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_res_partner_grade +msgid "res.partner.grade" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,message_id:0 +msgid "Message-Id" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: field:crm.lead.forward.to.partner,attachment_ids:0 +msgid "Attachments" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,record_name:0 +msgid "Message Record Name" +msgstr "" + +#. module: crm_partner_assign +#: field:res.partner.activation,sequence:0 +#: field:res.partner.grade,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: crm_partner_assign +#: code:addons/crm_partner_assign/partner_geo_assign.py:37 +#, python-format +msgid "" +"Cannot contact geolocation servers. Please make sure that your internet " +"connection is up and running (%s)." +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "September" +msgstr "" + +#. module: crm_partner_assign +#: field:res.partner.grade,name:0 +msgid "Grade Name" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead,date_assign:0 +msgid "Last date this case was forwarded/assigned to a partner" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,state:0 +#: view:res.partner:0 +msgid "Open" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,subtype_id:0 +msgid "Subtype" +msgstr "" + +#. module: crm_partner_assign +#: field:res.partner,date_localization:0 +msgid "Geo Localization Date" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Current" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,notified_partner_ids:0 +msgid "Notified partners" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.forward.to.partner:0 +#: model:ir.actions.act_window,name:crm_partner_assign.crm_lead_forward_to_partner_act +msgid "Forward to Partner" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,section_id:0 +#: field:crm.partner.report.assign,section_id:0 +msgid "Sales Team" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "May" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,probable_revenue:0 +msgid "Probable Revenue" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,activation:0 +#: view:res.partner:0 +#: field:res.partner,activation:0 +#: view:res.partner.activation:0 +msgid "Activation" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead:0 +#: field:crm.lead,partner_assigned_id:0 +msgid "Assigned Partner" +msgstr "" + +#. module: crm_partner_assign +#: field:res.partner,grade_id:0 +msgid "Partner Level" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,to_read:0 +msgid "Current user has an unread notification linked to this message" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,type:0 +msgid "Opportunity" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,partner_id:0 +msgid "Customer" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,month:0 +msgid "February" +msgstr "" + +#. module: crm_partner_assign +#: field:res.partner.activation,name:0 +msgid "Name" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.res_partner_activation_act +#: model:ir.ui.menu,name:crm_partner_assign.res_partner_activation_config_mi +msgid "Partner Activations" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,country_id:0 +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,country_id:0 +msgid "Country" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,year:0 +msgid "Year" +msgstr "" + +#. module: crm_partner_assign +#: view:res.partner:0 +msgid "Convert to Opportunity" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead:0 +msgid "Geo Assign" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +msgid "Delay to open" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.actions.act_window,name:crm_partner_assign.action_report_crm_partner_assign +#: model:ir.ui.menu,name:crm_partner_assign.menu_report_crm_partner_assign_tree +msgid "Partnership Analysis" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,notification_ids:0 +msgid "" +"Technical field holding the message notifications. Use notified_partner_ids " +"to access notified partners." +msgstr "" + +#. module: crm_partner_assign +#: view:crm.partner.report.assign:0 +msgid "Partner assigned Analysis" +msgstr "" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_lead_report_assign +msgid "CRM Lead Report" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,composition_mode:0 +msgid "Composition mode" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,model:0 +msgid "Related Document Model" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.forward.to.partner,history_mode:0 +msgid "Case Information" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,author_id:0 +msgid "" +"Author of the message. If not set, email_from may hold an email address that " +"did not match any partner." +msgstr "" + +#. module: crm_partner_assign +#: model:ir.model,name:crm_partner_assign.model_crm_partner_report_assign +msgid "CRM Partner Report" +msgstr "" + +#. module: crm_partner_assign +#: selection:crm.lead.report.assign,priority:0 +msgid "High" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,partner_ids:0 +msgid "Additional contacts" +msgstr "" + +#. module: crm_partner_assign +#: help:crm.lead.forward.to.partner,parent_id:0 +msgid "Initial thread message." +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.report.assign,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: crm_partner_assign +#: field:crm.lead.forward.to.partner,filter_id:0 +msgid "Filters" +msgstr "" + +#. module: crm_partner_assign +#: view:crm.lead.report.assign:0 +#: field:crm.lead.report.assign,partner_assigned_id:0 +#: view:crm.partner.report.assign:0 +#: field:crm.partner.report.assign,partner_id:0 +#: model:ir.model,name:crm_partner_assign.model_res_partner +msgid "Partner" +msgstr "" diff --git a/addons/crm_partner_assign/i18n/ko.po b/addons/crm_partner_assign/i18n/ko.po index 966311289da..e05a3f07060 100644 --- a/addons/crm_partner_assign/i18n/ko.po +++ b/addons/crm_partner_assign/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: crm_partner_assign diff --git a/addons/crm_profiling/i18n/ko.po b/addons/crm_profiling/i18n/ko.po index e50ca2abb5c..8c18127702e 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: crm_profiling diff --git a/addons/crm_todo/i18n/cs.po b/addons/crm_todo/i18n/cs.po new file mode 100644 index 00000000000..6b6ce66727c --- /dev/null +++ b/addons/crm_todo/i18n/cs.po @@ -0,0 +1,85 @@ +# Czech 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-03-30 12:42+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_project_task +msgid "Task" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Timebox" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Lead" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For cancelling the task" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Next" +msgstr "" + +#. module: crm_todo +#: model:ir.actions.act_window,name:crm_todo.crm_todo_action +#: model:ir.ui.menu,name:crm_todo.menu_crm_todo +msgid "My Tasks" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +#: field:crm.lead,task_ids:0 +msgid "Tasks" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Done" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Cancel" +msgstr "" + +#. module: crm_todo +#: model:ir.model,name:crm_todo.model_crm_lead +msgid "Lead/Opportunity" +msgstr "" + +#. module: crm_todo +#: field:project.task,lead_id:0 +msgid "Lead / Opportunity" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "For changing to done state" +msgstr "" + +#. module: crm_todo +#: view:crm.lead:0 +msgid "Previous" +msgstr "" diff --git a/addons/crm_todo/i18n/ko.po b/addons/crm_todo/i18n/ko.po index 7d18d9a74ae..65eeb6368f3 100644 --- a/addons/crm_todo/i18n/ko.po +++ b/addons/crm_todo/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: crm_todo diff --git a/addons/crm_todo/i18n/mk.po b/addons/crm_todo/i18n/mk.po index 7088c685538..6c7be1e2e08 100644 --- a/addons/crm_todo/i18n/mk.po +++ b/addons/crm_todo/i18n/mk.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:38+0000\n" -"PO-Revision-Date: 2013-03-28 22:34+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:22+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -31,7 +31,7 @@ msgstr "Timebox" #. module: crm_todo #: view:crm.lead:0 msgid "Lead" -msgstr "Водечко" +msgstr "Трага" #. module: crm_todo #: view:crm.lead:0 @@ -73,7 +73,7 @@ msgstr "Трага/Можност" #. module: crm_todo #: field:project.task,lead_id:0 msgid "Lead / Opportunity" -msgstr "Водечко / Можност" +msgstr "Трага/Можност" #. module: crm_todo #: view:crm.lead:0 diff --git a/addons/document_page/i18n/mk.po b/addons/document_page/i18n/mk.po index f62c148db3a..353f814d602 100644 --- a/addons/document_page/i18n/mk.po +++ b/addons/document_page/i18n/mk.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:38+0000\n" -"PO-Revision-Date: 2013-03-28 22:44+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:21+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -30,7 +30,7 @@ msgstr "Категорија" #: view:document.page:0 #: field:document.page,write_uid:0 msgid "Last Contributor" -msgstr "Последен приложувач" +msgstr "Последен соработник" #. module: document_page #: view:document.page:0 @@ -77,8 +77,8 @@ msgstr "Урнек" msgid "" "that will be used as a content template for all new page of this category." msgstr "" -"што ќе се користи како шаблон за содржината на сите нови страници од оваа " -"категорија" +"кој ќе биде употребен како урнек за содржина за сите нови страници од оваа " +"категорија." #. module: document_page #: field:document.page,name:0 @@ -196,7 +196,7 @@ msgstr "Резиме" #. module: document_page #: view:document.page:0 msgid "e.g. Once upon a time..." -msgstr "на пр. Еднаш, многу одамна..." +msgstr "на пр. Едно време..." #. module: document_page #: model:ir.actions.act_window,help:document_page.action_page diff --git a/addons/document_webdav/i18n/mk.po b/addons/document_webdav/i18n/mk.po index 268f3247d6b..0fbdf90f5d9 100644 --- a/addons/document_webdav/i18n/mk.po +++ b/addons/document_webdav/i18n/mk.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:38+0000\n" -"PO-Revision-Date: 2013-03-28 22:45+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:19+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -38,7 +38,7 @@ msgstr "Својство на документ" #: view:document.webdav.dir.property:0 #: view:document.webdav.file.property:0 msgid "Search Document properties" -msgstr "Пребарувај ги својствата на документот" +msgstr "Барај својства на документ" #. module: document_webdav #: view:document.webdav.dir.property:0 @@ -151,7 +151,7 @@ msgstr "Креатор" #. module: document_webdav #: view:document.webdav.file.property:0 msgid "Document Property" -msgstr "Својство на документот" +msgstr "Својство на документ" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_properties diff --git a/addons/edi/i18n/cs.po b/addons/edi/i18n/cs.po new file mode 100644 index 00000000000..b63a5a05111 --- /dev/null +++ b/addons/edi/i18n/cs.po @@ -0,0 +1,87 @@ +# Czech 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-03-31 16:48+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: edi +#. openerp-web +#: code:addons/edi/static/src/js/edi.js:67 +#, python-format +msgid "Reason:" +msgstr "" + +#. module: edi +#. openerp-web +#: code:addons/edi/static/src/js/edi.js:60 +#, python-format +msgid "The document has been successfully imported!" +msgstr "" + +#. module: edi +#. openerp-web +#: code:addons/edi/static/src/js/edi.js:65 +#, python-format +msgid "Sorry, the document could not be imported." +msgstr "" + +#. module: edi +#: model:ir.model,name:edi.model_res_company +msgid "Companies" +msgstr "" + +#. module: edi +#: model:ir.model,name:edi.model_res_currency +msgid "Currency" +msgstr "" + +#. module: edi +#. openerp-web +#: code:addons/edi/static/src/js/edi.js:71 +#, python-format +msgid "Document Import Notification" +msgstr "" + +#. module: edi +#: code:addons/edi/models/edi.py:130 +#, python-format +msgid "Missing application." +msgstr "" + +#. module: edi +#: code:addons/edi/models/edi.py:131 +#, python-format +msgid "" +"The document you are trying to import requires the OpenERP `%s` application. " +"You can install it by connecting as the administrator and opening the " +"configuration assistant." +msgstr "" + +#. module: edi +#: code:addons/edi/models/edi.py:47 +#, python-format +msgid "'%s' is an invalid external ID" +msgstr "" + +#. module: edi +#: model:ir.model,name:edi.model_res_partner +msgid "Partner" +msgstr "" + +#. module: edi +#: model:ir.model,name:edi.model_edi_edi +msgid "EDI Subsystem" +msgstr "" diff --git a/addons/email_template/i18n/mk.po b/addons/email_template/i18n/mk.po index d2914179011..38d513b053e 100644 --- a/addons/email_template/i18n/mk.po +++ b/addons/email_template/i18n/mk.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-03-28 22:47+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:15+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -45,7 +45,7 @@ msgstr "Исклучи" #. module: email_template #: view:email.template:0 msgid "Email contents (in raw HTML format)" -msgstr "E-mail содржини (во HTML формат)" +msgstr "Содржина на е-пошта (во природен HTML формат)" #. module: email_template #: field:email.template,email_to:0 diff --git a/addons/event/i18n/mk.po b/addons/event/i18n/mk.po index 6879f81e870..0a995bda4be 100644 --- a/addons/event/i18n/mk.po +++ b/addons/event/i18n/mk.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:38+0000\n" -"PO-Revision-Date: 2013-03-28 22:49+0000\n" +"PO-Revision-Date: 2013-03-29 09:28+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -1135,7 +1135,7 @@ msgstr "Учесник / Контакт" #. module: event #: view:event.event:0 msgid "Current Registrations" -msgstr "Моментални запишувања" +msgstr "Тековни регистрации" #. module: event #: model:email.template,body_html:event.confirmation_registration @@ -1151,13 +1151,13 @@ msgid "" "

Best regards

" msgstr "" "\n" -"

Здраво ${object.name},

\n" +"

Почитувани ${object.name},

\n" "

Ви потврдуваме дека вашата регистрација за настанот " -"${object.event_id.name} е запишана.\n" -" Автоматски ќе добиете e-mail со информации (како распоред, дневен " -"ред...) штом ќе се потврди настанот.

\n" +"${object.event_id.name} беше запишана.\n" +" Автоматски ќе добиете е-пошта со повеќе практични информации (како " +"распоред, агенда...) веднаш штом настанот ќе биде потврден.

\n" "

Ви благодариме за учеството!

\n" -"

Со почит

" +"

Искрени поздрави

" #. module: event #: help:event.event,reply_to:0 @@ -1200,4 +1200,4 @@ msgstr "Година" #. module: event #: field:event.event,speaker_confirmed:0 msgid "Speaker Confirmed" -msgstr "Гласноговорникот е потврден" +msgstr "Говорникот е потврден" diff --git a/addons/event_moodle/i18n/cs.po b/addons/event_moodle/i18n/cs.po new file mode 100644 index 00000000000..e1e5501bf70 --- /dev/null +++ b/addons/event_moodle/i18n/cs.po @@ -0,0 +1,185 @@ +# Czech 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-03-31 16:48+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Connection with username and password" +msgstr "" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_moodle_config_wiz +msgid "event.moodle.config.wiz" +msgstr "" + +#. module: event_moodle +#: help:event.moodle.config.wiz,server_moodle:0 +msgid "" +"URL where you have your moodle server. For exemple: 'http://127.0.0.1' or " +"'http://localhost'" +msgstr "" + +#. module: event_moodle +#: field:event.registration,moodle_user_password:0 +msgid "Password for Moodle User" +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_password:0 +msgid "Moodle Password" +msgstr "" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:137 +#, python-format +msgid "Your email '%s' is wrong." +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Connection with a Token" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "" +"The easiest way to connect OpenERP with a moodle server is to create a " +"'token' in Moodle. It will be used to authenticate OpenERP as a trustable " +"application." +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,url:0 +msgid "URL to Moodle Server" +msgstr "" + +#. module: event_moodle +#: help:event.moodle.config.wiz,url:0 +msgid "The url that will be used for the connection with moodle in xml-rpc" +msgstr "" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_registration +msgid "Event Registration" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "" +"Another approach is to create a user for OpenERP in Moodle. If you do so, " +"make sure that this user has appropriate access rights." +msgstr "" + +#. module: event_moodle +#: field:event.registration,moodle_uid:0 +msgid "Moodle User ID" +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,server_moodle:0 +msgid "Moodle Server" +msgstr "" + +#. module: event_moodle +#: field:event.event,moodle_id:0 +msgid "Moodle ID" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Server" +msgstr "" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:57 +#: code:addons/event_moodle/event_moodle.py:105 +#: code:addons/event_moodle/event_moodle.py:137 +#, python-format +msgid "Error!" +msgstr "" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:105 +#, python-format +msgid "You must configure your moodle connection." +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_username:0 +#: field:event.registration,moodle_username:0 +msgid "Moodle Username" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +#: model:ir.actions.act_window,name:event_moodle.configure_moodle +msgid "Configure Moodle" +msgstr "" + +#. module: event_moodle +#: field:event.moodle.config.wiz,moodle_token:0 +msgid "Moodle Token" +msgstr "" + +#. module: event_moodle +#: help:event.moodle.config.wiz,moodle_username:0 +msgid "" +"You can also connect with your username that you define when you create a " +"token" +msgstr "" + +#. module: event_moodle +#: help:event.event,moodle_id:0 +msgid "The identifier of this event in Moodle" +msgstr "" + +#. module: event_moodle +#: help:event.moodle.config.wiz,moodle_token:0 +msgid "Put your token that you created in your moodle server" +msgstr "" + +#. module: event_moodle +#: model:ir.ui.menu,name:event_moodle.wizard_moodle +msgid "Moodle Configuration" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "or" +msgstr "" + +#. module: event_moodle +#: code:addons/event_moodle/event_moodle.py:57 +#, python-format +msgid "First configure your moodle connection." +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Apply" +msgstr "" + +#. module: event_moodle +#: view:event.moodle.config.wiz:0 +msgid "Cancel" +msgstr "" + +#. module: event_moodle +#: model:ir.model,name:event_moodle.model_event_event +msgid "Event" +msgstr "" diff --git a/addons/event_moodle/i18n/mk.po b/addons/event_moodle/i18n/mk.po index effb7e8305a..a1fffbb56e7 100644 --- a/addons/event_moodle/i18n/mk.po +++ b/addons/event_moodle/i18n/mk.po @@ -2,20 +2,21 @@ # 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. -# +# Sofce Dimitrijeva , 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-03-13 12:08+0000\n" -"Last-Translator: Aleksandar Panov \n" -"Language-Team: Macedonian \n" +"PO-Revision-Date: 2013-03-29 09:27+0000\n" +"Last-Translator: Софче Димитријева \n" +"Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" +"Language: mk\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 @@ -65,8 +66,8 @@ msgid "" "application." msgstr "" "Најлесен начин да се поврзете на OpenERP со moodle сервер е да креирате " -"токен во moodle. Тој ќе се користи за автентикација на OpenERP како " -"поверлива апликација." +"'токен' во Moodle. Тој ќе се користи за да се идентификува OpenERP како " +"доверлива апликација." #. module: event_moodle #: field:event.moodle.config.wiz,url:0 @@ -76,7 +77,7 @@ msgstr "URL на Moodle Сервер" #. module: event_moodle #: help:event.moodle.config.wiz,url:0 msgid "The url that will be used for the connection with moodle in xml-rpc" -msgstr "URL адресата што ќе се користи за врската со moodle во xml-rpc" +msgstr "URL која ќе се користи за конекција со moodle во xml-rpc" #. module: event_moodle #: model:ir.model,name:event_moodle.model_event_registration @@ -95,7 +96,7 @@ msgstr "" #. module: event_moodle #: field:event.registration,moodle_uid:0 msgid "Moodle User ID" -msgstr "Moodle корисничко ID" +msgstr "ID на Moodle корисник" #. module: event_moodle #: field:event.moodle.config.wiz,server_moodle:0 @@ -124,7 +125,7 @@ msgstr "Грешка!" #: code:addons/event_moodle/event_moodle.py:105 #, python-format msgid "You must configure your moodle connection." -msgstr "Мора да ја конфигурирате вашата moodle врска." +msgstr "Мора да ја конфигурирате вашата moodle конекција." #. module: event_moodle #: field:event.moodle.config.wiz,moodle_username:0 @@ -160,7 +161,7 @@ msgstr "Идентификувач на овој настан во Moodle" #. module: event_moodle #: help:event.moodle.config.wiz,moodle_token:0 msgid "Put your token that you created in your moodle server" -msgstr "Токенот што го креиравте, вметнете го во вашиот moodle сервер" +msgstr "Ставете го токенот кој го креиравте во вашиот Moodle сервер" #. module: event_moodle #: model:ir.ui.menu,name:event_moodle.wizard_moodle @@ -176,7 +177,7 @@ msgstr "или" #: code:addons/event_moodle/event_moodle.py:57 #, python-format msgid "First configure your moodle connection." -msgstr "Најпрво конфигурирајте ја вашата moodle врска" +msgstr "Најпрво конфигурирајте ја вашата moodle конекција." #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_sale/i18n/cs.po b/addons/event_sale/i18n/cs.po new file mode 100644 index 00000000000..17e370780db --- /dev/null +++ b/addons/event_sale/i18n/cs.po @@ -0,0 +1,90 @@ +# Czech 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-03-31 16:48+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: event_sale +#: model:ir.model,name:event_sale.model_product_product +msgid "Product" +msgstr "" + +#. module: event_sale +#: help:product.product,event_ok:0 +msgid "" +"Determine if a product needs to create automatically an event registration " +"at the confirmation of a sales order line." +msgstr "" + +#. module: event_sale +#: help:sale.order.line,event_id:0 +msgid "" +"Choose an event and it will automatically create a registration for this " +"event." +msgstr "" + +#. module: event_sale +#: model:event.event,name:event_sale.event_technical_training +msgid "Technical training in Grand-Rosiere" +msgstr "" + +#. module: event_sale +#: help:product.product,event_type_id:0 +msgid "" +"Select event types so when we use this product in sales order lines, it will " +"filter events of this type only." +msgstr "" + +#. module: event_sale +#: field:product.product,event_type_id:0 +msgid "Type of Event" +msgstr "" + +#. module: event_sale +#: field:sale.order.line,event_ok:0 +msgid "event_ok" +msgstr "" + +#. module: event_sale +#: field:product.product,event_ok:0 +msgid "Event Subscription" +msgstr "" + +#. module: event_sale +#: field:sale.order.line,event_type_id:0 +msgid "Event Type" +msgstr "" + +#. module: event_sale +#: model:product.template,name:event_sale.event_product_product_template +msgid "Technical Training" +msgstr "" + +#. module: event_sale +#: code:addons/event_sale/event_sale.py:88 +#, python-format +msgid "The registration %s has been created from the Sales Order %s." +msgstr "" + +#. module: event_sale +#: field:sale.order.line,event_id:0 +msgid "Event" +msgstr "" + +#. module: event_sale +#: model:ir.model,name:event_sale.model_sale_order_line +msgid "Sales Order Line" +msgstr "" diff --git a/addons/google_base_account/i18n/cs.po b/addons/google_base_account/i18n/cs.po new file mode 100644 index 00000000000..2b18cb29066 --- /dev/null +++ b/addons/google_base_account/i18n/cs.po @@ -0,0 +1,114 @@ +# Czech 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-03-31 16:49+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: google_base_account +#: field:res.users,gmail_user:0 +msgid "Username" +msgstr "" + +#. module: google_base_account +#: model:ir.actions.act_window,name:google_base_account.act_google_login_form +msgid "Google Login" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "Google Contacts Import Error!" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_res_users +msgid "Users" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "or" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Google login" +msgstr "" + +#. module: google_base_account +#: field:google.login,password:0 +msgid "Google Password" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Error!" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Google Account" +msgstr "" + +#. module: google_base_account +#: view:res.users:0 +msgid "Synchronization" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:77 +#, python-format +msgid "Authentication failed. Check the user and password." +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "e.g. user@gmail.com" +msgstr "" + +#. module: google_base_account +#: code:addons/google_base_account/wizard/google_login.py:29 +#, python-format +msgid "" +"Please install gdata-python-client from http://code.google.com/p/gdata-" +"python-client/downloads/list" +msgstr "" + +#. module: google_base_account +#: model:ir.model,name:google_base_account.model_google_login +msgid "Google Contact" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "Cancel" +msgstr "" + +#. module: google_base_account +#: field:google.login,user:0 +msgid "Google Username" +msgstr "" + +#. module: google_base_account +#: field:res.users,gmail_password:0 +msgid "Password" +msgstr "" + +#. module: google_base_account +#: view:google.login:0 +msgid "_Login" +msgstr "" diff --git a/addons/google_docs/i18n/cs.po b/addons/google_docs/i18n/cs.po new file mode 100644 index 00000000000..f685666ca9b --- /dev/null +++ b/addons/google_docs/i18n/cs.po @@ -0,0 +1,188 @@ +# Czech 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-03-31 16:49+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:167 +#, python-format +msgid "Key Error!" +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a presentation (slide show) document with url like " +"`https://docs.google.com/a/openerp.com/presentation/d/123456789/edit#slide=id" +".p`, the ID is `presentation:123456789`" +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a text document with url like " +"`https://docs.google.com/a/openerp.com/document/d/123456789/edit`, the ID is " +"`document:123456789`" +msgstr "" + +#. module: google_docs +#: field:google.docs.config,gdocs_resource_id:0 +msgid "Google Resource ID to Use as Template" +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a drawing document with url like " +"`https://docs.google.com/a/openerp.com/drawings/d/123456789/edit`, the ID is " +"`drawings:123456789`" +msgstr "" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/xml/gdocs.xml:6 +#, python-format +msgid "Add Google Doc..." +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"This is the id of the template document, on google side. You can find it " +"thanks to its URL:" +msgstr "" + +#. module: google_docs +#: model:ir.model,name:google_docs.model_google_docs_config +msgid "Google Docs templates config" +msgstr "" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/js/gdocs.js:25 +#, python-format +msgid "" +"The user google credentials are not set yet. Contact your administrator for " +"help." +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "" +"for a spreadsheet document with url like " +"`https://docs.google.com/a/openerp.com/spreadsheet/ccc?key=123456789#gid=0`, " +"the ID is `spreadsheet:123456789`" +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:129 +#, python-format +msgid "" +"Your resource id is not correct. You can find the id in the google docs URL." +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:153 +#, python-format +msgid "Creating google docs may only be done by one at a time." +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:83 +#: code:addons/google_docs/google_docs.py:129 +#: code:addons/google_docs/google_docs.py:153 +#, python-format +msgid "Google Docs Error!" +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:83 +#, python-format +msgid "Check your google configuration in Users/Users/Synchronization tab." +msgstr "" + +#. module: google_docs +#: model:ir.ui.menu,name:google_docs.menu_gdocs_config +msgid "Google Docs configuration" +msgstr "" + +#. module: google_docs +#: model:ir.actions.act_window,name:google_docs.action_google_docs_users_config +#: model:ir.ui.menu,name:google_docs.menu_gdocs_model_config +msgid "Models configuration" +msgstr "" + +#. module: google_docs +#: field:google.docs.config,model_id:0 +msgid "Model" +msgstr "" + +#. module: google_docs +#. openerp-web +#: code:addons/google_docs/static/src/js/gdocs.js:28 +#, python-format +msgid "User Google credentials are not yet set." +msgstr "" + +#. module: google_docs +#: code:addons/google_docs/google_docs.py:167 +#, python-format +msgid "Your Google Doc Name Pattern's key does not found in object." +msgstr "" + +#. module: google_docs +#: help:google.docs.config,name_template:0 +msgid "" +"Choose how the new google docs will be named, on google side. Eg. " +"gdoc_%(field_name)s" +msgstr "" + +#. module: google_docs +#: view:google.docs.config:0 +msgid "Google Docs Configuration" +msgstr "" + +#. module: google_docs +#: help:google.docs.config,gdocs_resource_id:0 +msgid "" +"\n" +"This is the id of the template document, on google side. You can find it " +"thanks to its URL: \n" +"*for a text document with url like " +"`https://docs.google.com/a/openerp.com/document/d/123456789/edit`, the ID is " +"`document:123456789`\n" +"*for a spreadsheet document with url like " +"`https://docs.google.com/a/openerp.com/spreadsheet/ccc?key=123456789#gid=0`, " +"the ID is `spreadsheet:123456789`\n" +"*for a presentation (slide show) document with url like " +"`https://docs.google.com/a/openerp.com/presentation/d/123456789/edit#slide=id" +".p`, the ID is `presentation:123456789`\n" +"*for a drawing document with url like " +"`https://docs.google.com/a/openerp.com/drawings/d/123456789/edit`, the ID is " +"`drawings:123456789`\n" +"...\n" +msgstr "" + +#. module: google_docs +#: model:ir.model,name:google_docs.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: google_docs +#: field:google.docs.config,name_template:0 +msgid "Google Doc Name Pattern" +msgstr "" diff --git a/addons/google_docs/i18n/mk.po b/addons/google_docs/i18n/mk.po index b6c9764b5ce..4a6af30202c 100644 --- a/addons/google_docs/i18n/mk.po +++ b/addons/google_docs/i18n/mk.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:38+0000\n" -"PO-Revision-Date: 2013-03-12 12:49+0000\n" -"Last-Translator: Ivica Dimitrijev \n" +"PO-Revision-Date: 2013-03-31 17:10+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: Macedonian \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-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: google_docs @@ -48,7 +48,7 @@ msgstr "" #. module: google_docs #: field:google.docs.config,gdocs_resource_id:0 msgid "Google Resource ID to Use as Template" -msgstr "" +msgstr "Google Resource ID како урнек" #. module: google_docs #: view:google.docs.config:0 @@ -74,6 +74,8 @@ msgid "" "This is the id of the template document, on google side. You can find it " "thanks to its URL:" msgstr "" +"Ова е id на документот урнек на страната на google. Може да го пронајдето со " +"неговото URL:" #. module: google_docs #: model:ir.model,name:google_docs.model_google_docs_config @@ -201,4 +203,4 @@ msgstr "ir.attachment" #. module: google_docs #: field:google.docs.config,name_template:0 msgid "Google Doc Name Pattern" -msgstr "" +msgstr "Шаблон на име на Google Doc" diff --git a/addons/hr/i18n/mk.po b/addons/hr/i18n/mk.po index b29640fe88e..70ade2e50a8 100644 --- a/addons/hr/i18n/mk.po +++ b/addons/hr/i18n/mk.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-28 23:01+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:14+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -412,7 +412,7 @@ msgstr "Контакт на вработен" #. module: hr #: view:hr.employee:0 msgid "e.g. Part Time" -msgstr "на пр. Дел од времето" +msgstr "на пр. пола работно време" #. module: hr #: model:ir.actions.act_window,help:hr.action_hr_job diff --git a/addons/hr_evaluation/i18n/cs.po b/addons/hr_evaluation/i18n/cs.po new file mode 100644 index 00000000000..d56facd1c03 --- /dev/null +++ b/addons/hr_evaluation/i18n/cs.po @@ -0,0 +1,924 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:49+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,send_anonymous_manager:0 +msgid "Send an anonymous summary to the manager" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Start Appraisal" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr.evaluation.report:0 +#: view:hr_evaluation.plan:0 +msgid "Group By..." +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Cancel Appraisal" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,request_id:0 +#: field:hr.evaluation.report,request_id:0 +msgid "Request_id" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "March" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,delay_date:0 +msgid "Delay to Start" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Appraisal that are in waiting appreciation state" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan:0 +#: field:hr_evaluation.plan,company_id:0 +#: field:hr_evaluation.plan.phase,company_id:0 +msgid "Company" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,evaluation_id:0 +#: field:hr_evaluation.plan.phase,survey_id:0 +msgid "Appraisal Form" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,day:0 +msgid "Day" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan:0 +#: field:hr_evaluation.plan,phase_ids:0 +msgid "Appraisal Phases" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Send Request" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan,month_first:0 +msgid "" +"This number of months will be used to schedule the first evaluation date of " +"the employee when selecting an evaluation plan. " +msgstr "" + +#. module: hr_evaluation +#: view:hr.employee:0 +#: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree +msgid "Appraisals" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "(eval_name)s:Appraisal Name" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_ids:0 +#: field:hr_evaluation.evaluation,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Mail Body" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,wait:0 +msgid "Wait Previous Phases" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_evaluation +msgid "Employee Appraisal" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,state:0 +#: selection:hr_evaluation.evaluation,state:0 +msgid "Cancelled" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Did not meet expectations" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +#: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_tree +#: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr +msgid "Appraisal" +msgstr "" + +#. module: hr_evaluation +#: help:hr.evaluation.interview,message_unread:0 +#: help:hr_evaluation.evaluation,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Send to Managers" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.evaluation,date_close:0 +msgid "Ending Date" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan,month_first:0 +msgid "First Appraisal in (months)" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Send to Employees" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:84 +#, python-format +msgid "" +"\n" +"Date: %(date)s\n" +"\n" +"Dear %(employee_name)s,\n" +"\n" +"I am doing an evaluation regarding %(eval_name)s.\n" +"\n" +"Kindly submit your response.\n" +"\n" +"\n" +"Thanks,\n" +"--\n" +"%(user_signature)s\n" +"\n" +" " +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Appraisal that are in Plan In Progress state" +msgstr "" + +#. module: hr_evaluation +#: help:hr.evaluation.interview,message_summary:0 +#: help:hr_evaluation.evaluation,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Reset to Draft" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,deadline:0 +msgid "Deadline" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:235 +#: code:addons/hr_evaluation/hr_evaluation.py:320 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "In progress Evaluations" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_survey_request +msgid "survey.request" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Cancel Survey" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "(date)s: Current Date" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,name:hr_evaluation.act_hr_employee_2_hr__evaluation_interview +msgid "Interviews" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:83 +#, python-format +msgid "Regarding " +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_follower_ids:0 +#: field:hr_evaluation.evaluation,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_unread:0 +#: field:hr_evaluation.evaluation,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,employee_id:0 +#: view:hr_evaluation.evaluation:0 +#: field:hr_evaluation.evaluation,employee_id:0 +#: model:ir.model,name:hr_evaluation.model_hr_employee +msgid "Employee" +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.evaluation,state:0 +msgid "New" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,mail_body:0 +msgid "Email" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Exceeds expectations" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,mail_feature:0 +msgid "" +"Check this box if you want to send mail to employees coming under this phase" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "Creation Date" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,send_answer_manager:0 +msgid "Send all answers to the manager" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,state:0 +#: selection:hr_evaluation.evaluation,state:0 +msgid "Plan In Progress" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Public Notes" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Send Reminder Email" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr_evaluation.evaluation,rating:0 +msgid "Appreciation" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Print Interview" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,closed:0 +msgid "closed" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Meet expectations" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,nbr:0 +msgid "# of Requests" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "July" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,state:0 +#: view:hr_evaluation.evaluation:0 +#: field:hr_evaluation.evaluation,state:0 +msgid "Status" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_plans_installer +msgid "Review Appraisal Plans" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,help:hr_evaluation.action_evaluation_plans_installer +msgid "" +"

\n" +" Click to define a new appraisal plan.\n" +"

\n" +" You can define appraisal plans (ex: first interview after 6\n" +" months, then every year). Then, each employee can be linked " +"to\n" +" an appraisal plan so that OpenERP can automatically " +"generate\n" +" interview requests to managers and/or subordinates.\n" +"

\n" +" " +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Action to Perform" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.evaluation,note_action:0 +msgid "Action Plan" +msgstr "" + +#. module: hr_evaluation +#: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr_config +msgid "Periodic Appraisal" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan,month_next:0 +msgid "Periodicity of Appraisal (months)" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Significantly exceeds expectations" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "In progress" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Interview Request" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,send_answer_employee:0 +#: field:hr_evaluation.plan.phase,send_answer_manager:0 +msgid "All Answers" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Answer Survey" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "September" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "December" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,month:0 +msgid "Month" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Group by..." +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Mail Settings" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,name:hr_evaluation.evaluation_reminders +msgid "Appraisal Reminders" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,wait:0 +msgid "" +"Check this box if you want to wait that all preceding phases are finished " +"before launching this phase." +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Legend" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.evaluation,note_action:0 +msgid "" +"If the evaluation does not meet the expectations, you can proposean action " +"plan" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,state:0 +msgid "Draft" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,send_anonymous_employee:0 +#: field:hr_evaluation.plan.phase,send_anonymous_manager:0 +msgid "Anonymous Summary" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Pending" +msgstr "" + +#. module: hr_evaluation +#: field:hr.employee,evaluation_plan_id:0 +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.plan:0 +#: field:hr_evaluation.plan,name:0 +#: field:hr_evaluation.plan.phase,plan_id:0 +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan +msgid "Appraisal Plan" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Print Survey" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "August" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "June" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,rating:0 +#: selection:hr_evaluation.evaluation,rating:0 +msgid "Significantly bellow expectations" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Validate Appraisal" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid " (employee_name)s: Partner name" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_is_follower:0 +#: field:hr_evaluation.evaluation,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,plan_id:0 +#: view:hr_evaluation.evaluation:0 +#: field:hr_evaluation.evaluation,plan_id:0 +msgid "Plan" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan,active:0 +msgid "Active" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "November" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,send_anonymous_employee:0 +msgid "Send an anonymous summary to the employee" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan_phase +msgid "Appraisal Plan Phase" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "January" +msgstr "" + +#. module: hr_evaluation +#: view:hr.employee:0 +msgid "Appraisal Interviews" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,message_summary:0 +#: field:hr_evaluation.evaluation,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Date" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Survey" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,action:0 +msgid "Action" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: selection:hr.evaluation.report,state:0 +msgid "Final Validation" +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.evaluation,state:0 +msgid "Waiting Appreciation" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_report_all +#: model:ir.ui.menu,name:hr_evaluation.menu_evaluation_report_all +msgid "Appraisal Analysis" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.evaluation,date:0 +msgid "Appraisal Deadline" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,rating:0 +msgid "Overall Rating" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Interviewer" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_report +msgid "Evaluations Statistics" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "Deadline Date" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.evaluation,rating:0 +msgid "This is the appreciation on which the evaluation is summarized." +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.plan.phase,action:0 +msgid "Top-Down Appraisal Requests" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "General" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan.phase,send_answer_employee:0 +msgid "Send all answers to the employee" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr.evaluation.report:0 +#: selection:hr.evaluation.report,state:0 +#: view:hr_evaluation.evaluation:0 +#: selection:hr_evaluation.evaluation,state:0 +msgid "Done" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan:0 +#: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_plan_tree +#: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_plan_tree +msgid "Appraisal Plans" +msgstr "" + +#. module: hr_evaluation +#: model:ir.model,name:hr_evaluation.model_hr_evaluation_interview +msgid "Appraisal Interview" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "In Progress" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +msgid "To Do" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +msgid "Final Validation Evaluations" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,mail_feature:0 +msgid "Send mail for this phase" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,email_subject:0 +msgid "char" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "October" +msgstr "" + +#. module: hr_evaluation +#: help:hr.employee,evaluation_date:0 +msgid "" +"The date of the next appraisal is computed by the appraisal plan's dates " +"(first appraisal + periodicity)." +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,overpass_delay:0 +msgid "Overpassed Deadline" +msgstr "" + +#. module: hr_evaluation +#: help:hr_evaluation.plan,month_next:0 +msgid "" +"The number of month that depicts the delay between each evaluation of this " +"plan (after the first one)." +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.plan.phase,action:0 +msgid "Self Appraisal Requests" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +#: field:hr_evaluation.evaluation,survey_request_ids:0 +msgid "Appraisal Forms" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "May" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,help:hr_evaluation.open_view_hr_evaluation_tree +msgid "" +"

\n" +" Click to create a new appraisal.\n" +"

\n" +" Each employee may be assigned an Appraisal Plan. Such a " +"plan\n" +" defines the frequency and the way you manage your periodic\n" +" personnel evaluation. You will be able to define steps and\n" +" attach interviews to each step. OpenERP manages all kinds " +"of\n" +" evaluations: bottom-up, top-down, self-evaluation and final\n" +" evaluation by the manager.\n" +"

\n" +" " +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Internal Notes" +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.plan.phase,action:0 +msgid "Final Interview" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,name:0 +msgid "Phase" +msgstr "" + +#. module: hr_evaluation +#: selection:hr_evaluation.plan.phase,action:0 +msgid "Bottom-Up Appraisal Requests" +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "February" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Interview Appraisal" +msgstr "" + +#. module: hr_evaluation +#: field:survey.request,is_evaluation:0 +msgid "Is Appraisal?" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:320 +#, python-format +msgid "You cannot start evaluation without Appraisal." +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Appraisal Summary..." +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.interview,user_to_review_id:0 +msgid "Employee to Interview" +msgstr "" + +#. module: hr_evaluation +#: code:addons/hr_evaluation/hr_evaluation.py:235 +#, python-format +msgid "" +"You cannot change state, because some appraisal(s) are in waiting answer or " +"draft state." +msgstr "" + +#. module: hr_evaluation +#: selection:hr.evaluation.report,month:0 +msgid "April" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "Appraisal Plan Phases" +msgstr "" + +#. module: hr_evaluation +#: model:ir.actions.act_window,help:hr_evaluation.action_hr_evaluation_interview_tree +msgid "" +"

\n" +" Click to create a new interview request related to a " +"personal evaluation. \n" +"

\n" +" Interview requests are usually generated automatically by\n" +" OpenERP according to an employee's appraisal plan. Each " +"user\n" +" receives automatic emails and requests to evaluate their\n" +" colleagues periodically.\n" +"

\n" +" " +msgstr "" + +#. module: hr_evaluation +#: help:hr.evaluation.interview,message_ids:0 +#: help:hr_evaluation.evaluation,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.interview:0 +#: view:hr_evaluation.evaluation:0 +msgid "Search Appraisal" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.plan.phase,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.plan.phase:0 +msgid "(user_signature)s: User name" +msgstr "" + +#. module: hr_evaluation +#: view:board.board:0 +#: model:ir.actions.act_window,name:hr_evaluation.action_hr_evaluation_interview_board +#: model:ir.actions.act_window,name:hr_evaluation.action_hr_evaluation_interview_tree +#: model:ir.ui.menu,name:hr_evaluation.menu_open_hr_evaluation_interview_requests +msgid "Interview Requests" +msgstr "" + +#. module: hr_evaluation +#: field:hr.evaluation.report,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: hr_evaluation +#: view:hr.evaluation.report:0 +#: field:hr.evaluation.report,year:0 +msgid "Year" +msgstr "" + +#. module: hr_evaluation +#: field:hr_evaluation.evaluation,note_summary:0 +msgid "Appraisal Summary" +msgstr "" + +#. module: hr_evaluation +#: field:hr.employee,evaluation_date:0 +msgid "Next Appraisal Date" +msgstr "" + +#. module: hr_evaluation +#: view:hr_evaluation.evaluation:0 +msgid "Action Plan..." +msgstr "" diff --git a/addons/hr_holidays/i18n/mk.po b/addons/hr_holidays/i18n/mk.po index 25fca875129..a47cda69b5e 100644 --- a/addons/hr_holidays/i18n/mk.po +++ b/addons/hr_holidays/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/hr_payroll_account/i18n/cs.po b/addons/hr_payroll_account/i18n/cs.po new file mode 100644 index 00000000000..ddd59713b1b --- /dev/null +++ b/addons/hr_payroll_account/i18n/cs.po @@ -0,0 +1,126 @@ +# Czech 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-03-31 16:50+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: hr_payroll_account +#: field:hr.salary.rule,account_credit:0 +msgid "Credit Account" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#, python-format +msgid "Payslip of %s" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#, python-format +msgid "" +"The Expense Journal \"%s\" has not properly configured the Credit Account!" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.payslip,move_id:0 +msgid "Accounting Entry" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#, python-format +msgid "" +"The Expense Journal \"%s\" has not properly configured the Debit Account!" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.salary.rule,account_tax_id:0 +msgid "Tax Code" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.payslip,period_id:0 +msgid "Force Period" +msgstr "" + +#. module: hr_payroll_account +#: help:hr.payslip,period_id:0 +msgid "Keep empty to use the period of the validation(Payslip) date." +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_contract +msgid "Contract" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.contract,analytic_account_id:0 +#: field:hr.salary.rule,analytic_account_id:0 +msgid "Analytic Account" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.salary.rule,account_debit:0 +msgid "Debit Account" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payslip_run +msgid "Payslip Batches" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payslip_employees +msgid "Generate payslips for all selected employees" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#, python-format +msgid "Configuration Error!" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_salary_rule +msgid "hr.salary.rule" +msgstr "" + +#. module: hr_payroll_account +#: view:hr.contract:0 +#: view:hr.salary.rule:0 +msgid "Accounting" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payslip +msgid "Pay Slip" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:158 +#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#, python-format +msgid "Adjustment Entry" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.contract,journal_id:0 +#: field:hr.payslip,journal_id:0 +#: field:hr.payslip.run,journal_id:0 +msgid "Salary Journal" +msgstr "" diff --git a/addons/hr_payroll_account/i18n/mk.po b/addons/hr_payroll_account/i18n/mk.po index 881388efe1b..bb0ff20d27e 100644 --- a/addons/hr_payroll_account/i18n/mk.po +++ b/addons/hr_payroll_account/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/hr_recruitment/i18n/cs.po b/addons/hr_recruitment/i18n/cs.po new file mode 100644 index 00000000000..db14a4889ac --- /dev/null +++ b/addons/hr_recruitment/i18n/cs.po @@ -0,0 +1,1282 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:50+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: hr_recruitment +#: help:hr.applicant,active:0 +msgid "" +"If the active field is set to false, it will allow you to hide the case " +"without removing it." +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +#: field:hr.recruitment.stage,requirements:0 +msgid "Requirements" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Application Summary" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Start Interview" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Mobile:" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,fold:0 +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 "" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_graduate +msgid "Graduate" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Group By..." +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Filter and view on next actions and date" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,department_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,department_id:0 +msgid "Department" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,date_action:0 +msgid "Next Action Date" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,salary_expected_extra:0 +msgid "Expected Salary Extra" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Jobs" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Extra advantages..." +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Pending Jobs" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,company_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,company_id:0 +msgid "Company" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.source:0 +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_source_action +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_source +msgid "Sources of Applicants" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:445 +#, python-format +msgid "You must define Applied Job for this applicant." +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Job" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.partner.create,close:0 +msgid "Close job request" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,help:hr_recruitment.crm_case_categ0_act_job +msgid "" +"

\n" +" Click to add a new job applicant.\n" +"

\n" +" OpenERP helps you track applicants in the recruitment\n" +" process and follow up all operations: meetings, interviews, " +"etc.\n" +"

\n" +" If you setup the email gateway, applicants and their " +"attached\n" +" CV are created automatically when an email is sent to\n" +" jobs@yourcompany.com. If you install the document " +"management\n" +" modules, all resumes are indexed automatically, so that you " +"can\n" +" easily search through their content.\n" +"

\n" +" " +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.crm_case_categ0_act_job +#: model:ir.ui.menu,name:hr_recruitment.menu_crm_case_categ0_act_job +msgid "Applications" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,emp_id:0 +msgid "employee" +msgstr "" + +#. module: hr_recruitment +#: field:hr.config.settings,fetchmail_applicants:0 +msgid "Create applicants from an incoming email account" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,day:0 +msgid "Day" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.partner.create:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_partner_create +msgid "Create Contact" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Refuse" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_licenced +msgid "Master Degree" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_mobile:0 +msgid "Mobile" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Next Actions" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:38 +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 +#, python-format +msgid "Error!" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_bac5 +msgid "Doctoral Degree" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,job_id:0 +#: field:hr.recruitment.report,job_id:0 +msgid "Applied Job" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,department_id:0 +msgid "" +"Stages of the recruitment process may be different per department. If this " +"stage is common to all departments, keep this field empty." +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,color:0 +msgid "Color Index" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.act_hr_applicant_to_meeting +msgid "Meetings" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_applicants_status +msgid "Applicants Status" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "My Recruitment" +msgstr "" + +#. module: hr_recruitment +#: field:hr.job,survey_id:0 +msgid "Interview Form" +msgstr "" + +#. module: hr_recruitment +#: help:hr.job,survey_id:0 +msgid "" +"Choose an interview form for this job position and you will be able to " +"print/answer this interview from all applicants who apply for this job" +msgstr "" + +#. module: hr_recruitment +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_recruitment +msgid "Recruitment" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:445 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_prop:0 +msgid "Salary Proposed" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Avg Proposed Salary" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,availability:0 +#: field:hr.recruitment.report,available:0 +msgid "Availability" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,salary_proposed:0 +#: view:hr.recruitment.report:0 +msgid "Proposed Salary" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_source +msgid "Source of Applicants" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.partner.create:0 +msgid "Convert To Partner" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_report +msgid "Recruitments Statistics" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Print interview report" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Hired employees" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_job +msgid "Job Description" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,source_id:0 +msgid "Source" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,year:0 +msgid "Year" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.source,name:hr_recruitment.source_monster +msgid "Monster" +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,name:hr_recruitment.mt_applicant_hired +msgid "Applicant Hired" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,email_from:0 +msgid "Email" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,help:hr_recruitment.hr_job_stage_act +msgid "" +"

\n" +" Click to add a new stage in the recruitment process.\n" +"

\n" +" Define here your stages of the recruitment process, for " +"example:\n" +" qualification call, first interview, second interview, refused,\n" +" hired.\n" +"

\n" +" " +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Available" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,title_action:0 +msgid "Next Action" +msgstr "" + +#. module: hr_recruitment +#: help:hr.job,alias_id:0 +msgid "" +"Email alias for this job position. New emails will automatically create new " +"applicants for this job position." +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Good" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "August" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,create_date:0 +#: view:hr.recruitment.report:0 +msgid "Creation Date" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_hired_employee +#: model:ir.model,name:hr_recruitment.model_hired_employee +msgid "Create Employee" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,priority:0 +#: field:hr.recruitment.report,priority:0 +msgid "Appreciation" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job1 +msgid "Initial Qualification" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Print Interview" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,stage_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,stage_id:0 +#: view:hr.recruitment.stage:0 +msgid "Stage" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job3 +msgid "Second Interview" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.hr_job_stage_act +msgid "Recruitment / Applicants Stages" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,salary_expected:0 +#: view:hr.recruitment.report:0 +msgid "Expected Salary" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "July" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,email_cc:0 +msgid "Watchers Emails" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Applicants" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:360 +#, python-format +msgid "No Subject" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_exp:0 +msgid "Salary Expected" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_applicant +msgid "Applicant" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,sequence:0 +msgid "Gives the sequence order when displaying a list of stages." +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:347 +#: field:hr.applicant,partner_id:0 +#, python-format +msgid "Contact" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,salary_expected_extra:0 +msgid "Salary Expected by Applicant, extra advantages" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +"If the case is in progress the status is set to 'Open'. " +"When the case is over, the status is set to 'Done'. If " +"the case needs to be reviewed then the status is set " +"to 'Pending'." +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "March" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_act +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_stage +msgid "Stages" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Draft recruitment" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Delete" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "In progress" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Hire & Create Employee" +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,description:hr_recruitment.mt_applicant_hired +msgid "Applicant hired" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Jobs - Recruitment Form" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,probability:0 +msgid "Probability" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "April" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "September" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "December" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:39 +#, python-format +msgid "A contact is already defined on this job request." +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,categ_ids:0 +msgid "Tags" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_applicant_category +msgid "Category of applicant" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "e.g. Call for interview" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,month:0 +msgid "Month" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Answer related job question" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_degree +msgid "Degree of Recruitment" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: hr_recruitment +#: view:hired.employee:0 +msgid "Yes" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,name:0 +msgid "Subject" +msgstr "" + +#. module: hr_recruitment +#: view:hired.employee:0 +#: view:hr.recruitment.partner.create:0 +msgid "or" +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,name:hr_recruitment.mt_applicant_refused +msgid "Applicant Refused" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Schedule Meeting" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_name:0 +msgid "Applicant's Name" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Very Good" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,user_email:0 +msgid "User Email" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,date_open:0 +msgid "Opened" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Group By ..." +msgstr "" + +#. module: hr_recruitment +#: view:hired.employee:0 +msgid "No" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,salary_expected:0 +msgid "Salary Expected by Applicant" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "All Initial Jobs" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: hr_recruitment +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_degree +msgid "Degrees" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,date_closed:0 +#: field:hr.recruitment.report,date_closed:0 +msgid "Closed" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +msgid "Stage Definition" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,delay_close:0 +msgid "Avg. Delay to Close" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,salary_proposed:0 +msgid "Salary Proposed by the Organisation" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +#: selection:hr.recruitment.stage,state:0 +msgid "Pending" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,state:0 +#: field:hr.recruitment.report,state:0 +#: field:hr.recruitment.stage,state:0 +msgid "Status" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Schedule interview with this applicant" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:407 +#, python-format +msgid "Applicant created" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,type_id:0 +#: view:hr.recruitment.degree:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,type_id:0 +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_degree_action +msgid "Degree" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_phone:0 +msgid "Phone" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "June" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,day_close:0 +msgid "Days to Close" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,user_id:0 +msgid "User" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Excellent" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,active:0 +msgid "Active" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,nbr:0 +msgid "# of Applications" +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,help:hr_recruitment.hr_recruitment_stage_act +msgid "" +"

\n" +" Click to add a new stage in the recruitment process.\n" +"

\n" +" Don't forget to specify the department if your recruitment " +"process\n" +" is different according to the job position.\n" +"

\n" +" " +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,response:0 +msgid "Response" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "October" +msgstr "" + +#. module: hr_recruitment +#: field:hr.config.settings,module_document_ftp:0 +msgid "Allow the automatic indexation of resumes" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,salary_proposed_extra:0 +msgid "Proposed Salary Extra" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "January" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 +#, python-format +msgid "A contact is already existing with the same name." +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_form_installer +msgid "Review Recruitment Stages" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Contact:" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Search Jobs" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,date:0 +#: field:hr.recruitment.report,date:0 +msgid "Date" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,survey:0 +msgid "Survey" +msgstr "" + +#. module: hr_recruitment +#: view:hired.employee:0 +msgid "Would you like to create an employee ?" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Degree:" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Extended Filters..." +msgstr "" + +#. module: hr_recruitment +#: model:ir.actions.act_window,help:hr_recruitment.hr_recruitment_stage_form_installer +msgid "" +"Check if the following stages are matching your recruitment process. Don't " +"forget to specify the department if your recruitment process is different " +"according to the job position." +msgstr "" + +#. module: hr_recruitment +#: view:hr.config.settings:0 +msgid "Configure" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job4 +msgid "Contract Proposed" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.source,name:hr_recruitment.source_website_company +msgid "Company Website" +msgstr "" + +#. module: hr_recruitment +#: sql_constraint:hr.recruitment.degree:0 +msgid "The name of the Degree of Recruitment must be unique!" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:349 +#, python-format +msgid "Contact Email" +msgstr "" + +#. module: hr_recruitment +#: view:hired.employee:0 +#: view:hr.recruitment.partner.create:0 +msgid "Cancel" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.partner.create:0 +msgid "Are you sure you want to create a contact based on this job request ?" +msgstr "" + +#. module: hr_recruitment +#: help:hr.config.settings,fetchmail_applicants:0 +msgid "" +"Allow applicants to send their job application to an email address " +"(jobs@mycompany.com),\n" +" and create automatically application documents in the system." +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: selection:hr.recruitment.stage,state:0 +msgid "In Progress" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Subject / Applicant" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.degree,sequence:0 +msgid "Gives the sequence order when displaying a list of degrees." +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,description:hr_recruitment.mt_stage_changed +msgid "Stage changed" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,user_id:0 +#: view:hr.recruitment.report:0 +msgid "Responsible" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_report_all +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_report_all +msgid "Recruitment Analysis" +msgstr "" + +#. module: hr_recruitment +#: view:hired.employee:0 +msgid "Create New Employee" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.source,name:hr_recruitment.source_linkedin +msgid "LinkedIn" +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,name:hr_recruitment.mt_job_new_applicant +msgid "New Applicant" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_stage +msgid "Stage of Recruitment" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Cases By Stage and Estimates" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +#: selection:hr.recruitment.stage,state:0 +msgid "New" +msgstr "" + +#. module: hr_recruitment +#: model:crm.meeting.type,name:hr_recruitment.categ_meet_interview +#: view:hr.job:0 +msgid "Interview" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.source,name:0 +msgid "Source Name" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Day(s)" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,description:0 +msgid "Description" +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,name:hr_recruitment.mt_stage_changed +msgid "Stage Changed" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "May" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job5 +msgid "Contract Signed" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.source,name:hr_recruitment.source_word +msgid "Word of Mouth" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.stage,fold:0 +msgid "Hide in views if empty" +msgstr "" + +#. module: hr_recruitment +#: help:hr.config.settings,module_document_ftp:0 +msgid "" +"Manage your CV's and motivation letter related to all applicants.\n" +" This installs the module document_ftp. This will install the " +"knowledge management module in order to allow you to search using specific " +"keywords through the content of all documents (PDF, .DOCx...)" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,state:0 +#: selection:hr.recruitment.report,state:0 +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job6 +#: selection:hr.recruitment.stage,state:0 +msgid "Refused" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +#: selection:hr.recruitment.stage,state:0 +msgid "Hired" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,reference:0 +msgid "Referred By" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Departement:" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "On Average" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job2 +msgid "First Interview" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_prop_avg:0 +msgid "Avg. Proposed Salary" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Open Jobs" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "February" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Not Good" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant_category,name:0 +#: field:hr.recruitment.degree,name:0 +#: field:hr.recruitment.stage,name:0 +msgid "Name" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "November" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_exp_avg:0 +msgid "Avg. Expected Salary" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Avg Expected Salary" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_partner_create +msgid "Create Partner from job application" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,email_from:0 +msgid "These people will receive email." +msgstr "" + +#. module: hr_recruitment +#: field:hr.job,alias_id:0 +msgid "Alias" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Feedback of interviews..." +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Pending recruitment" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Contract" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: hr_recruitment +#: model:mail.message.subtype,description:hr_recruitment.mt_applicant_refused +msgid "Applicant refused" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.stage,department_id:0 +msgid "Specific to a Department" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "In progress recruitment" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.degree,sequence:0 +#: field:hr.recruitment.stage,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_bachelor +msgid "Bachelor Degree" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Unassigned Recruitments" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_config_settings +msgid "hr.config.settings" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,state:0 +msgid "" +"The related status for the stage. The status of your document will " +"automatically change according to the selected stage. Example, a stage is " +"related to the status 'Close', when your document reach this stage, it will " +"be automatically closed." +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,salary_proposed_extra:0 +msgid "Salary Proposed by the Organisation, extra advantages" +msgstr "" + +#. module: hr_recruitment +#: help:hr.recruitment.report,delay_close:0 +msgid "Number of Days to close the project issue" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,state:0 +msgid "Open" +msgstr "" + +#. module: hr_recruitment +#: view:board.board:0 +msgid "Applications to be Processed" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Schedule Interview" +msgstr "" diff --git a/addons/hr_timesheet/i18n/mk.po b/addons/hr_timesheet/i18n/mk.po index 4e17fca4d24..2ddab7b0704 100644 --- a/addons/hr_timesheet/i18n/mk.po +++ b/addons/hr_timesheet/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/hr_timesheet_invoice/i18n/mk.po b/addons/hr_timesheet_invoice/i18n/mk.po index da4ce460b84..9f061c00c8a 100644 --- a/addons/hr_timesheet_invoice/i18n/mk.po +++ b/addons/hr_timesheet_invoice/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_invoice diff --git a/addons/hr_timesheet_sheet/i18n/mk.po b/addons/hr_timesheet_sheet/i18n/mk.po index aa3d0d3e432..a3f6dcaee84 100644 --- a/addons/hr_timesheet_sheet/i18n/mk.po +++ b/addons/hr_timesheet_sheet/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: hr_timesheet_sheet diff --git a/addons/knowledge/i18n/mk.po b/addons/knowledge/i18n/mk.po index 81ac3e19097..d5e4ba56f00 100644 --- a/addons/knowledge/i18n/mk.po +++ b/addons/knowledge/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/mail/i18n/mk.po b/addons/mail/i18n/mk.po index 16e4a3143d5..4fa97690d20 100644 --- a/addons/mail/i18n/mk.po +++ b/addons/mail/i18n/mk.po @@ -16,7 +16,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/marketing/i18n/cs.po b/addons/marketing/i18n/cs.po index 1201e656f81..886499ca3a2 100644 --- a/addons/marketing/i18n/cs.po +++ b/addons/marketing/i18n/cs.po @@ -8,19 +8,19 @@ 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-03-30 02:24+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \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:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings msgid "marketing.config.settings" -msgstr "" +msgstr "marketing.config.settings" #. module: marketing #: help:marketing.config.settings,module_marketing_campaign_crm_demo:0 @@ -29,33 +29,36 @@ msgid "" "Campaigns.\n" " This installs the module marketing_campaign_crm_demo." msgstr "" +"Nainstaluje ukázková data marketingových kampaní jako zájemce, kampaně a " +"segmenty.\n" +" Nainstaluje modul marketing_campaign_crm_demo." #. module: marketing #: model:ir.actions.act_window,name:marketing.action_marketing_configuration #: view:marketing.config.settings:0 msgid "Configure Marketing" -msgstr "" +msgstr "Konfigurace marketingu" #. module: marketing #: view:crm.lead:0 #: model:ir.ui.menu,name:marketing.menu_marketing_configuration msgid "Marketing" -msgstr "" +msgstr "Marketing" #. module: marketing #: field:marketing.config.settings,module_marketing_campaign:0 msgid "Marketing campaigns" -msgstr "" +msgstr "Marketingové kampaně" #. module: marketing #: view:marketing.config.settings:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: marketing #: view:marketing.config.settings:0 msgid "Campaigns" -msgstr "" +msgstr "Kampaně" #. module: marketing #: model:res.groups,name:marketing.group_marketing_manager @@ -70,22 +73,22 @@ msgstr "Uživatel" #. module: marketing #: view:marketing.config.settings:0 msgid "Campaigns Settings" -msgstr "" +msgstr "Nastavení kampaní" #. module: marketing #: field:marketing.config.settings,module_crm_profiling:0 msgid "Track customer profile to focus your campaigns" -msgstr "" +msgstr "Sledovat profil zákazníka pro zacílení kampaní" #. module: marketing #: view:marketing.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Zrušit" #. module: marketing #: view:marketing.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Použít" #. module: marketing #: help:marketing.config.settings,module_marketing_campaign:0 @@ -95,6 +98,11 @@ msgid "" "CRM leads.\n" " This installs the module marketing_campaign." msgstr "" +"Umožňuje automatické získávání zájemců prostřednictvím marketingových " +"kampaní.\n" +" Kampaně mohou být ve skutečnosti vytvořeny z jakýchkoliv " +"zdrojů, nejen z CRM zájemců.\n" +" Nainstaluje modul marketing_campaign." #. module: marketing #: help:marketing.config.settings,module_crm_profiling:0 @@ -102,8 +110,10 @@ msgid "" "Allows users to perform segmentation within partners.\n" " This installs the module crm_profiling." msgstr "" +"Dovoluje uživatelům provádět segmentaci mezi partnery.\n" +" Nainstaluje se modul crm_profiling." #. module: marketing #: field:marketing.config.settings,module_marketing_campaign_crm_demo:0 msgid "Demo data for marketing campaigns" -msgstr "" +msgstr "Ukázková data marketingových kampaní" diff --git a/addons/marketing_campaign/i18n/cs.po b/addons/marketing_campaign/i18n/cs.po index 191c58806ef..6e0203f146a 100644 --- a/addons/marketing_campaign/i18n/cs.po +++ b/addons/marketing_campaign/i18n/cs.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:38+0000\n" -"PO-Revision-Date: 2013-03-05 18:04+0000\n" +"PO-Revision-Date: 2013-03-29 18:12+0000\n" "Last-Translator: Radomil Urbánek \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-03-28 05:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign @@ -258,7 +258,7 @@ msgstr "" #. module: marketing_campaign #: view:marketing.campaign.segment:0 msgid "Cancel Segment" -msgstr "" +msgstr "Zrušit segment" #. module: marketing_campaign #: view:res.partner:0 @@ -500,7 +500,7 @@ msgstr "Nově upraveno" #. module: marketing_campaign #: view:marketing.campaign.workitem:0 msgid "Cancel Workitem" -msgstr "" +msgstr "Zrušit pracovní kroky" #. module: marketing_campaign #: model:ir.actions.act_window,help:marketing_campaign.action_marketing_campaign_form @@ -844,7 +844,7 @@ msgstr "Náhled není k dispozici" #. module: marketing_campaign #: view:marketing.campaign:0 msgid "Cancel Campaign" -msgstr "" +msgstr "Zrušit kampaň" #. module: marketing_campaign #: view:marketing.campaign.workitem:0 diff --git a/addons/marketing_campaign/i18n/mk.po b/addons/marketing_campaign/i18n/mk.po index 1ba3af89fb9..ef894c61060 100644 --- a/addons/marketing_campaign/i18n/mk.po +++ b/addons/marketing_campaign/i18n/mk.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:38+0000\n" -"PO-Revision-Date: 2013-03-28 23:24+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:41+0000\n" +"Last-Translator: Aleksandar Panov \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -593,7 +593,7 @@ msgstr "" #. module: marketing_campaign #: selection:marketing.campaign,mode:0 msgid "Test in Realtime" -msgstr "" +msgstr "Тестирање во реално време" #. module: marketing_campaign #: selection:marketing.campaign,mode:0 diff --git a/addons/marketing_campaign/i18n/tr.po b/addons/marketing_campaign/i18n/tr.po index e4212a96372..dc1719f8b0e 100644 --- a/addons/marketing_campaign/i18n/tr.po +++ b/addons/marketing_campaign/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:38+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-30 19:44+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:48+0000\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: marketing_campaign @@ -72,7 +72,7 @@ msgstr "Tetik" #. module: marketing_campaign #: view:marketing.campaign:0 msgid "Follow-Up" -msgstr "" +msgstr "Takip" #. module: marketing_campaign #: field:campaign.analysis,count:0 diff --git a/addons/marketing_campaign_crm_demo/i18n/mk.po b/addons/marketing_campaign_crm_demo/i18n/mk.po index 4ed961aa14a..acbbdac9885 100644 --- a/addons/marketing_campaign_crm_demo/i18n/mk.po +++ b/addons/marketing_campaign_crm_demo/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/mrp/i18n/mk.po b/addons/mrp/i18n/mk.po index b4d2cc2fdd5..bd3cfd68e97 100644 --- a/addons/mrp/i18n/mk.po +++ b/addons/mrp/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 1b22525ea84..bc5da2e2ab7 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/i18n/sl.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-02-24 22:40+0000\n" +"PO-Revision-Date: 2013-04-01 12:11+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:49+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: mrp @@ -1853,7 +1853,7 @@ msgstr "Čas enega cikla (ure)" #. module: mrp #: view:mrp.production:0 msgid "Cancel Production" -msgstr "" +msgstr "Preklic proizvodnje" #. module: mrp #: model:ir.actions.report.xml,name:mrp.report_mrp_production_report diff --git a/addons/mrp_operations/i18n/mk.po b/addons/mrp_operations/i18n/mk.po index d1c59cae523..b6e95efe505 100644 --- a/addons/mrp_operations/i18n/mk.po +++ b/addons/mrp_operations/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/mrp_repair/i18n/mk.po b/addons/mrp_repair/i18n/mk.po index 2bf336264f0..ed90cd8893f 100644 --- a/addons/mrp_repair/i18n/mk.po +++ b/addons/mrp_repair/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/multi_company/i18n/cs.po b/addons/multi_company/i18n/cs.po index 6d0b0343013..732833cc080 100644 --- a/addons/multi_company/i18n/cs.po +++ b/addons/multi_company/i18n/cs.po @@ -8,19 +8,19 @@ 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-03-16 03:17+0000\n" +"PO-Revision-Date: 2013-03-30 09:28+0000\n" "Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \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:50+0000\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany msgid "Multi-Companies" -msgstr "Více společností" +msgstr "Více firem" #. module: multi_company #: model:product.category,name:multi_company.Odoo1 @@ -59,12 +59,12 @@ msgstr "" #. module: multi_company #: view:multi_company.default:0 msgid "Multi Company" -msgstr "Více společností" +msgstr "Více firem" #. module: multi_company #: model:ir.actions.act_window,name:multi_company.action_inventory_form msgid "Default Company per Object" -msgstr "Výchozí společnost podle objektu" +msgstr "Výchozí firma pro objekt" #. module: multi_company #: model:product.template,name:multi_company.product_product_odoo1_product_template diff --git a/addons/multi_company/i18n/tr.po b/addons/multi_company/i18n/tr.po index 9be2d5fe3e1..28043b40d1f 100644 --- a/addons/multi_company/i18n/tr.po +++ b/addons/multi_company/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:38+0000\n" -"PO-Revision-Date: 2013-03-10 10:30+0000\n" +"PO-Revision-Date: 2013-04-01 12:33+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:51+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: multi_company @@ -45,12 +45,12 @@ msgid "" "Thank you in advance for your cooperation.\n" "Best Regards," msgstr "" -"Dear Yetkili,\n" +"Sayın Yetkili,\n" "\n" "Kayıtlarımıza göre hesabınızda halen yapılmamış ödemeler bulunmaktadır. " "Lütfen aşağıdaki ayrıntıları inceleyin.\n" "Eğer ödeme yaptıysanız, lütfen bu yazımızı dikkate almayın. Aksi durumda, " -"lütfen aşağıda belirtilen tutarı tarafımıza ödeyin.\n" +"aşağıda belirtilen tutarı tarafımıza ödemenizi rica ederiz.\n" "Hesabınızla ilgili herhangi bir sorunuz olursa, lütfen bize danışın.\n" "\n" "İşbirliğiniz için şimdiden teşekkür ederiz.\n" diff --git a/addons/note_pad/i18n/cs.po b/addons/note_pad/i18n/cs.po new file mode 100644 index 00000000000..9baec4a531f --- /dev/null +++ b/addons/note_pad/i18n/cs.po @@ -0,0 +1,28 @@ +# Czech 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-03-30 09:13+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: note_pad +#: model:ir.model,name:note_pad.model_note_note +msgid "Note" +msgstr "" + +#. module: note_pad +#: field:note.note,note_pad_url:0 +msgid "Pad Url" +msgstr "" diff --git a/addons/plugin_outlook/i18n/cs.po b/addons/plugin_outlook/i18n/cs.po new file mode 100644 index 00000000000..c21621bddd7 --- /dev/null +++ b/addons/plugin_outlook/i18n/cs.po @@ -0,0 +1,89 @@ +# Czech 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-03-31 16:52+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: plugin_outlook +#: field:outlook.installer,plugin32:0 +msgid "Outlook Plug-in 32bits" +msgstr "" + +#. module: plugin_outlook +#: view:sale.config.settings:0 +msgid "Download and install the plug-in" +msgstr "" + +#. module: plugin_outlook +#: model:ir.model,name:plugin_outlook.model_outlook_installer +msgid "outlook.installer" +msgstr "" + +#. module: plugin_outlook +#: view:outlook.installer:0 +msgid "MS .Net Framework 3.5 or above." +msgstr "" + +#. module: plugin_outlook +#: model:ir.actions.act_window,name:plugin_outlook.action_outlook_installer +#: model:ir.actions.act_window,name:plugin_outlook.action_outlook_wizard +#: model:ir.ui.menu,name:plugin_outlook.menu_base_config_plugins_outlook +#: view:outlook.installer:0 +msgid "Install Outlook Plug-In" +msgstr "" + +#. module: plugin_outlook +#: view:outlook.installer:0 +msgid "System requirements:" +msgstr "" + +#. module: plugin_outlook +#: view:outlook.installer:0 +msgid "title" +msgstr "" + +#. module: plugin_outlook +#: view:outlook.installer:0 +msgid "" +"Click on the link above to download the installer for either 32 or 64 bits, " +"and execute it." +msgstr "" + +#. module: plugin_outlook +#: view:outlook.installer:0 +msgid "MS Outlook 2005 or above." +msgstr "" + +#. module: plugin_outlook +#: view:outlook.installer:0 +msgid "Close" +msgstr "" + +#. module: plugin_outlook +#: field:outlook.installer,plugin64:0 +msgid "Outlook Plug-in 64bits" +msgstr "" + +#. module: plugin_outlook +#: view:outlook.installer:0 +msgid "Installation and Configuration Steps" +msgstr "" + +#. module: plugin_outlook +#: help:outlook.installer,plugin32:0 +#: help:outlook.installer,plugin64:0 +msgid "Outlook plug-in file. Save this file and install it in Outlook." +msgstr "" diff --git a/addons/point_of_sale/i18n/mk.po b/addons/point_of_sale/i18n/mk.po index 9a7df21e676..13ca28d59f9 100644 --- a/addons/point_of_sale/i18n/mk.po +++ b/addons/point_of_sale/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/portal/i18n/cs.po b/addons/portal/i18n/cs.po index a7356a0d452..7d53bab250a 100644 --- a/addons/portal/i18n/cs.po +++ b/addons/portal/i18n/cs.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:38+0000\n" -"PO-Revision-Date: 2012-12-31 13:23+0000\n" -"Last-Translator: Jan Grmela \n" +"PO-Revision-Date: 2013-03-29 22:16+0000\n" +"Last-Translator: Radomil Urbánek \n" "Language-Team: Czech \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:53+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: portal @@ -46,7 +46,7 @@ msgstr "" #. module: portal #: model:mail.group,name:portal.company_jobs msgid "Company Jobs" -msgstr "Zaměstnání společnosti" +msgstr "Pracovní místa" #. module: portal #: view:portal.payment.acquirer:0 @@ -62,6 +62,7 @@ msgstr "Kontakty" #: view:portal.wizard:0 msgid "This text is included in the email sent to new portal users." msgstr "" +"Tento text je přidán do emailu, který se odesílá novým uživatelům portálu." #. module: portal #: view:share.wizard:0 @@ -78,7 +79,7 @@ msgstr "Skupiny portálu" #: code:addons/portal/mail_mail.py:52 #, python-format msgid "

Access this document directly in OpenERP

" -msgstr "" +msgstr "

Zpřístupnění dokumentu přímo v OpenERP

" #. module: portal #: field:portal.wizard,welcome_message:0 @@ -107,7 +108,7 @@ msgstr "Prosíme vyberte nejméně jednu skupinu, s kterou chcete sdílet" #: model:ir.actions.client,name:portal.action_mail_archives_feeds_portal #: model:ir.ui.menu,name:portal.portal_mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "Archivy" #. module: portal #: model:ir.ui.menu,name:portal.portal_orders @@ -151,7 +152,7 @@ msgid "" " " msgstr "" "

\n" -" Nemáte žádné nepřečtené novinky společnosti.\n" +" Máte všechny firemní novinky přečteny.\n" "

\n" " " @@ -169,7 +170,7 @@ msgstr "nebo" #: model:ir.actions.client,name:portal.action_mail_star_feeds_portal #: model:ir.ui.menu,name:portal.portal_mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Úkoly" #. module: portal #: code:addons/portal/wizard/portal_wizard.py:194 @@ -177,14 +178,14 @@ msgstr "" msgid "" "You must have an email address in your User Preferences to send emails." msgstr "" -"Musíte mít emailovou adresu ve vašich uživatelských předvolbách pro zasílání " -"emailů." +"Pro zasílání e-mailů musíte mít nastavenu e-mailovou adresu ve vašich " +"uživatelských předvolbách." #. module: portal #: model:ir.actions.client,name:portal.action_jobs #: model:ir.ui.menu,name:portal.portal_jobs msgid "Jobs" -msgstr "Místa" +msgstr "Pracovní místa" #. module: portal #: field:portal.wizard,user_ids:0 @@ -232,7 +233,7 @@ msgid "" " " msgstr "" "

\n" -" Nemáte nepřečtené nabídky pracovních míst.\n" +" Máte všechny nabídky pracovních míst přečteny.\n" "

\n" " " @@ -248,6 +249,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné zprávy nebyly dosud ani přijaty ani odeslány.\n" +"

\n" +" Klepnutím na ikonu s obálkou v pravém horním rohu " +"obrazovky\n" +" můžete vytvořit novou zprávu. Půjde-li o interní " +"kontakt,\n" +" zpráva bude odeslána e-mailem.\n" +"

\n" +" " #. module: portal #: model:ir.ui.menu,name:portal.portal_menu @@ -310,7 +321,7 @@ msgstr "Projekty" #: model:ir.actions.client,name:portal.action_mail_inbox_feeds_portal #: model:ir.ui.menu,name:portal.portal_inbox msgid "Inbox" -msgstr "Doručené zprávy" +msgstr "Příchozí zprávy" #. module: portal #: view:share.wizard:0 @@ -353,6 +364,8 @@ msgid "" "

Access your messages and personal documents through our " "Customer Portal

" msgstr "" +"

Zpřístupnění zpráv a osobních dokumentů prostřednictvím našeho zákaznického portálu

" #. module: portal #: field:portal.payment.acquirer,form_template:0 @@ -399,7 +412,7 @@ msgstr "Online příjemce plateb" #. module: portal #: model:mail.group,name:portal.company_news_feed msgid "Company News" -msgstr "Novinky společnosti" +msgstr "Firemní novinky" #. module: portal #: code:addons/portal/acquirer.py:76 @@ -429,13 +442,14 @@ msgid "" " " msgstr "" "

\n" -" Dobrá práce! Vaše složka příchozí pošty je " -"prázdná.\n" +" Výborně! Nemáte žádnou nezpracovanou zprávu v " +"příchozí schránce.\n" "

\n" -" Vaše příchozí pošta obsahuje vaše soukromé zprávy nebo\n" -" emaily a informace spojené s dokumenty nebo lidmi, " -"které\n" -" sledujete.\n" +" Vaše příchozí schránka obsahuje Vám adresované zprávy a " +"e-maily\n" +" a také informace týkající se dokumentů, které " +"odebíráte,\n" +" nebo osob, jejichž zprávy odebíráte.\n" "

\n" " " @@ -617,6 +631,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Žádné úkoly.\n" +"

\n" +" Když procházíte příchozí poštu, můžete některé zprávy " +"označit\n" +" jako úkol. Z tohoto menu pak můžete zpracovávat " +"vaše úkoly.\n" +"

\n" +" " #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/de.po b/addons/portal/i18n/de.po index 61fc4608a6c..4becf6eab02 100644 --- a/addons/portal/i18n/de.po +++ b/addons/portal/i18n/de.po @@ -8,14 +8,13 @@ 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-01-05 14:17+0000\n" -"Last-Translator: Thorsten Vocks (OpenBig.org) \n" +"PO-Revision-Date: 2013-04-01 16:00+0000\n" +"Last-Translator: Felix Schubert \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:53+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: portal @@ -64,6 +63,8 @@ msgstr "Kontakte" #: view:portal.wizard:0 msgid "This text is included in the email sent to new portal users." msgstr "" +"Dieser Text wird an die E-Mail angefügt, die dem neuen Portal Usern " +"geschickt wird." #. module: portal #: view:share.wizard:0 @@ -80,7 +81,7 @@ msgstr "Portalgruppen" #: code:addons/portal/mail_mail.py:52 #, python-format msgid "

Access this document directly in OpenERP

" -msgstr "" +msgstr "

Öffnen Sie das Dokument direkt in OpenERP

" #. module: portal #: field:portal.wizard,welcome_message:0 @@ -109,7 +110,7 @@ msgstr "Bitte wählen Sie mindestens eine Gruppe zur Freigabe" #: model:ir.actions.client,name:portal.action_mail_archives_feeds_portal #: model:ir.ui.menu,name:portal.portal_mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "Archiv" #. module: portal #: model:ir.ui.menu,name:portal.portal_orders @@ -169,7 +170,7 @@ msgstr "oder" #: model:ir.actions.client,name:portal.action_mail_star_feeds_portal #: model:ir.ui.menu,name:portal.portal_mail_starfeeds msgid "To-do" -msgstr "" +msgstr "To-Do" #. module: portal #: code:addons/portal/wizard/portal_wizard.py:194 @@ -248,6 +249,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Es wurde keine Nachricht gefunden und auch keine " +"Mitteilung gesendet.\n" +" \n" +" Klicken Sie auf den \"E-Mail schreiben\" Button , um " +"eine Nachricht zu verfassen. Diese\n" +" Mitteilung wird per E-Mail gesendet, wenn es sich um " +"einen internen Kontakt handelt.\n" +" \n" +" " #. module: portal #: model:ir.ui.menu,name:portal.portal_menu @@ -355,6 +366,8 @@ msgid "" "

Access your messages and personal documents through our " "Customer Portal

" msgstr "" +"

Öffnen Sie Ihre Nachrichten und unternehmensbezogenen Dokumente direkt in unserem Kunden Portal

" #. module: portal #: field:portal.payment.acquirer,form_template:0 @@ -619,6 +632,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Keine To-Do's.\n" +"

\n" +" Wenn Sie die Nachrichten in Ihrem Posteingang " +"bearbeiten, können Sie diese als\n" +" To-Do markieren. Mit diesem Menu können sie alle " +"To-Do's bearbeiten.\n" +"

\n" +" " #. module: portal #: view:portal.payment.acquirer:0 diff --git a/addons/portal/i18n/mk.po b/addons/portal/i18n/mk.po index 08c656dc6cf..b0adc23b2f4 100644 --- a/addons/portal/i18n/mk.po +++ b/addons/portal/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/portal_crm/i18n/cs.po b/addons/portal_crm/i18n/cs.po new file mode 100644 index 00000000000..c9d1f7fd113 --- /dev/null +++ b/addons/portal_crm/i18n/cs.po @@ -0,0 +1,571 @@ +# Czech 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-03-29 18:40+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-30 06:08+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,type:0 +msgid "Lead" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,title:0 +msgid "Title" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,probability:0 +msgid "Success Rate (%)" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Contact us" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_action:0 +msgid "Next Action Date" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,fax:0 +msgid "Fax" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,zip:0 +msgid "Zip" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,company_id:0 +msgid "Company" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Thank you for your interest, we'll respond to your request shortly." +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "Highest" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,mobile:0 +msgid "Mobile" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,description:0 +msgid "Notes" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,color:0 +msgid "Color Index" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_latitude:0 +msgid "Geo Latitude" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_name:0 +msgid "Customer Name" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,state:0 +msgid "Cancelled" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,channel_id:0 +msgid "Communication channel (mail, direct, phone, ...)" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,type_id:0 +msgid "Campaign" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,ref:0 +msgid "Reference" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_action_next:0 +#: field:portal_crm.crm_contact_us,title_action:0 +msgid "Next Action" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_id:0 +msgid "Partner" +msgstr "" + +#. module: portal_crm +#: model:ir.actions.act_window,name:portal_crm.action_contact_us +msgid "Contact Us" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,name:0 +msgid "Subject" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,opt_out:0 +msgid "Opt-Out" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,priority:0 +msgid "Priority" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,state_id:0 +msgid "State" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,partner_id:0 +msgid "Linked partner (optional). Usually created when converting the lead." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,payment_mode:0 +msgid "Payment Mode" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,state:0 +msgid "New" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,type:0 +msgid "Type" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,email_from:0 +msgid "Email" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,channel_id:0 +msgid "Channel" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Name" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "Lowest" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,create_date:0 +msgid "Creation Date" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Content..." +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Close" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,state:0 +msgid "Pending" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,type:0 +msgid "Type is used to separate Leads and Opportunities" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,categ_ids:0 +msgid "Categories" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,stage_id:0 +msgid "Stage" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,user_login:0 +msgid "User Login" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,opt_out:0 +msgid "" +"If opt-out is checked, this contact has refused to receive emails or " +"unsubscribed to a campaign." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,contact_name:0 +msgid "Contact Name" +msgstr "" + +#. module: portal_crm +#: model:ir.ui.menu,name:portal_crm.portal_company_contact +msgid "Contact" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Your name..." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_address_email:0 +msgid "Partner Contact Email" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,planned_revenue:0 +msgid "Expected Revenue" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,task_ids:0 +msgid "Tasks" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Contact form" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,company_currency:0 +msgid "Currency" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Your email..." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_deadline:0 +msgid "Expected Closing" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,ref2:0 +msgid "Reference 2" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,user_email:0 +msgid "User Email" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_open:0 +msgid "Opened" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,state:0 +msgid "In Progress" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,partner_name:0 +msgid "" +"The name of the future partner company that will be created while converting " +"the lead into opportunity" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,planned_cost:0 +msgid "Planned Costs" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,date_deadline:0 +msgid "Estimate of the date on which the opportunity will be won." +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "Low" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_closed:0 +#: selection:portal_crm.crm_contact_us,state:0 +msgid "Closed" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_assign:0 +msgid "Assignation Date" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,state:0 +msgid "Status" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "Normal" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,email_cc:0 +msgid "Global CC" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,street2:0 +msgid "Street2" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,id:0 +msgid "ID" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,phone:0 +msgid "Phone" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,active:0 +msgid "Active" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,user_id:0 +msgid "Salesperson" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,day_close:0 +msgid "Days to Close" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,company_ids:0 +msgid "Companies" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Subject..." +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,section_id:0 +msgid "" +"When sending mails, the default email address is taken from the sales team." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_address_name:0 +msgid "Partner Contact Name" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_longitude:0 +msgid "Geo Longitude" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Your phone number..." +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,date_assign:0 +msgid "Last date this case was forwarded/assigned to a partner" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,email_from:0 +msgid "Email address of the contact" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,city:0 +msgid "City" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Submit" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,function:0 +msgid "Function" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,referred:0 +msgid "Referred By" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,partner_assigned_id:0 +msgid "Assigned Partner" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,type:0 +msgid "Opportunity" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,partner_assigned_id:0 +msgid "Partner this case has been forwarded/assigned to." +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,country_id:0 +msgid "Country" +msgstr "" + +#. module: portal_crm +#: view:portal_crm.crm_contact_us:0 +msgid "Thank you" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,state:0 +msgid "" +"The Status is set to 'Draft', when a case is created. If the case is in " +"progress the Status is set to 'Open'. When the case is over, the Status is " +"set to 'Done'. If the case needs to be reviewed then the Status is set to " +"'Pending'." +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: portal_crm +#: help:portal_crm.crm_contact_us,type_id:0 +msgid "" +"From which campaign (seminar, marketing campaign, mass mailing, ...) did " +"this contact come from?" +msgstr "" + +#. module: portal_crm +#: selection:portal_crm.crm_contact_us,priority:0 +msgid "High" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,section_id:0 +msgid "Sales Team" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,street:0 +msgid "Street" +msgstr "" + +#. module: portal_crm +#: field:portal_crm.crm_contact_us,date_action_last:0 +msgid "Last Action" +msgstr "" + +#. module: portal_crm +#: model:ir.model,name:portal_crm.model_portal_crm_crm_contact_us +msgid "Contact form for the portal" +msgstr "" diff --git a/addons/portal_crm/i18n/mk.po b/addons/portal_crm/i18n/mk.po index 21e2d52c2aa..32ecd7e573e 100644 --- a/addons/portal_crm/i18n/mk.po +++ b/addons/portal_crm/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/portal_event/i18n/mk.po b/addons/portal_event/i18n/mk.po index c2150e358b0..f050a3064d5 100644 --- a/addons/portal_event/i18n/mk.po +++ b/addons/portal_event/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/portal_hr_employees/i18n/cs.po b/addons/portal_hr_employees/i18n/cs.po new file mode 100644 index 00000000000..e65674a1da8 --- /dev/null +++ b/addons/portal_hr_employees/i18n/cs.po @@ -0,0 +1,100 @@ +# Czech 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-03-30 09:15+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: portal_hr_employees +#: view:hr.employee:0 +msgid "Here you can write information about you to be shown in the portal..." +msgstr "" + +#. module: portal_hr_employees +#: view:hr.employee:0 +msgid "Coach" +msgstr "" + +#. module: portal_hr_employees +#: model:ir.actions.act_window,name:portal_hr_employees.action_team +#: view:portal_crm.crm_contact_us:0 +msgid "Our Team" +msgstr "" + +#. module: portal_hr_employees +#: view:hr.employee:0 +msgid "Group By..." +msgstr "" + +#. module: portal_hr_employees +#: view:hr.employee:0 +msgid "Company" +msgstr "" + +#. module: portal_hr_employees +#: selection:hr.employee,visibility:0 +msgid "Public" +msgstr "" + +#. module: portal_hr_employees +#: help:hr.employee,visibility:0 +msgid "Employee's visibility in the portal's contact page" +msgstr "" + +#. module: portal_hr_employees +#: selection:hr.employee,visibility:0 +msgid "Private" +msgstr "" + +#. module: portal_hr_employees +#: view:hr.employee:0 +msgid "Manager" +msgstr "" + +#. module: portal_hr_employees +#: model:ir.model,name:portal_hr_employees.model_hr_employee +msgid "Employee" +msgstr "" + +#. module: portal_hr_employees +#: view:hr.employee:0 +msgid "Job" +msgstr "" + +#. module: portal_hr_employees +#: field:hr.employee,visibility:0 +msgid "Visibility" +msgstr "" + +#. module: portal_hr_employees +#: field:hr.employee,public_info:0 +msgid "Public Info" +msgstr "" + +#. module: portal_hr_employees +#: model:ir.model,name:portal_hr_employees.model_portal_crm_crm_contact_us +msgid "Contact form for the portal" +msgstr "" + +#. module: portal_hr_employees +#: view:hr.employee:0 +msgid "Department" +msgstr "" + +#. module: portal_hr_employees +#: view:hr.employee:0 +#: field:portal_crm.crm_contact_us,employee_ids:0 +msgid "Employees" +msgstr "" diff --git a/addons/portal_hr_employees/i18n/mk.po b/addons/portal_hr_employees/i18n/mk.po index 31dc620a59d..0afa333a145 100644 --- a/addons/portal_hr_employees/i18n/mk.po +++ b/addons/portal_hr_employees/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/portal_project_issue/i18n/mk.po b/addons/portal_project_issue/i18n/mk.po index 32210133dd9..e4ab7e2818a 100644 --- a/addons/portal_project_issue/i18n/mk.po +++ b/addons/portal_project_issue/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/portal_sale/i18n/mk.po b/addons/portal_sale/i18n/mk.po index ca149660337..16fec40d0c3 100644 --- a/addons/portal_sale/i18n/mk.po +++ b/addons/portal_sale/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/procurement/i18n/mk.po b/addons/procurement/i18n/mk.po index 74ed6911d98..3354f6affc9 100644 --- a/addons/procurement/i18n/mk.po +++ b/addons/procurement/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/procurement/i18n/sl.po b/addons/procurement/i18n/sl.po index 1f70809cfc3..75652eed857 100644 --- a/addons/procurement/i18n/sl.po +++ b/addons/procurement/i18n/sl.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:38+0000\n" -"PO-Revision-Date: 2013-02-09 11:35+0000\n" +"PO-Revision-Date: 2013-03-31 12:02+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:54+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:32+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: procurement @@ -67,7 +67,7 @@ msgstr "" #. module: procurement #: view:procurement.order:0 msgid "External note..." -msgstr "" +msgstr "Eksterna zabeležka..." #. module: procurement #: view:product.product:0 @@ -168,7 +168,7 @@ msgstr "Sporočila" #. module: procurement #: view:procurement.order:0 msgid "Cancel Procurement" -msgstr "" +msgstr "Preklic oskrbe" #. module: procurement #: view:product.product:0 @@ -493,7 +493,7 @@ msgstr "Izračun zaloge" #. module: procurement #: view:procurement.order:0 msgid "e.g. SO005" -msgstr "" +msgstr "npr. SO005" #. module: procurement #: field:stock.warehouse.orderpoint,procurement_draft_ids:0 @@ -534,7 +534,7 @@ msgstr "Omogoča umik iz uporabe , brez brisanja." #. module: procurement #: view:procurement.order:0 msgid "Internal note..." -msgstr "" +msgstr "Interna zabeležka.." #. module: procurement #: help:procurement.orderpoint.compute,automatic:0 diff --git a/addons/product/i18n/mk.po b/addons/product/i18n/mk.po index 4a532442f62..15d736620dc 100644 --- a/addons/product/i18n/mk.po +++ b/addons/product/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/product/i18n/sl.po b/addons/product/i18n/sl.po index 174acc8a318..82bc41d77fe 100644 --- a/addons/product/i18n/sl.po +++ b/addons/product/i18n/sl.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:38+0000\n" -"PO-Revision-Date: 2013-02-24 22:46+0000\n" +"PO-Revision-Date: 2013-03-31 12:07+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:55+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:32+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: product @@ -480,7 +480,7 @@ msgstr "Količina-3" #. module: product #: model:res.groups,name:product.group_product_variant msgid "Product Variant (not supported)" -msgstr "" +msgstr "Variante izdelkov (ni podprto)" #. module: product #: field:product.price_list,qty4:0 @@ -790,7 +790,7 @@ msgstr "External Hard disk" #. module: product #: view:product.product:0 msgid "describe the product characteristics..." -msgstr "" +msgstr "opis karakteristik izdelka" #. module: product #: help:product.template,standard_price:0 @@ -1324,7 +1324,7 @@ msgstr "Minimalna razlika v ceni." #. module: product #: field:product.product,name_template:0 msgid "Template Name" -msgstr "" +msgstr "Ime predloge" #. module: product #: field:product.template,weight_net:0 @@ -1356,7 +1356,7 @@ msgstr "" #. module: product #: view:product.product:0 msgid "This note will be displayed on requests for quotation..." -msgstr "" +msgstr "Opomba na zahtevah za ponudbo.." #. module: product #: view:product.product:0 @@ -1946,7 +1946,7 @@ msgstr "Sestavni deli" #. module: product #: view:product.product:0 msgid "e.g. 5901234123457" -msgstr "" +msgstr "npr. 5901234123457" #. module: product #: model:ir.model,name:product.model_product_pricelist_type @@ -2476,7 +2476,7 @@ msgstr "Dobaviteljeva enota mere" #. module: product #: view:product.product:0 msgid "note to be displayed on quotations..." -msgstr "" +msgstr "opombaa na ponudbah" #. module: product #: view:product.product:0 diff --git a/addons/product_expiry/i18n/mk.po b/addons/product_expiry/i18n/mk.po index 7304240b6d4..1b674a944a5 100644 --- a/addons/product_expiry/i18n/mk.po +++ b/addons/product_expiry/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/product_margin/i18n/mk.po b/addons/product_margin/i18n/mk.po index 74798835f89..17561bd9721 100644 --- a/addons/product_margin/i18n/mk.po +++ b/addons/product_margin/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/project/i18n/mk.po b/addons/project/i18n/mk.po index 5f9c63386fc..f73797b8b03 100644 --- a/addons/project/i18n/mk.po +++ b/addons/project/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/project/i18n/tr.po b/addons/project/i18n/tr.po index 58310632283..beb2b057270 100644 --- a/addons/project/i18n/tr.po +++ b/addons/project/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-03-09 20:57+0000\n" +"PO-Revision-Date: 2013-03-30 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-03-28 05:56+0000\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: project @@ -348,7 +348,7 @@ msgstr "Haziran" #. module: project #: view:project.task:0 msgid "Gantt View" -msgstr "" +msgstr "Gantt Görünümü" #. module: project #: selection:report.project.task.user,month:0 @@ -387,7 +387,7 @@ msgstr "Özet" #. module: project #: view:project.task:0 msgid "Task summary..." -msgstr "" +msgstr "Görev özeti..." #. module: project #: view:project.project:0 @@ -485,7 +485,7 @@ msgstr "TakmaAd" #. module: project #: view:project.task:0 msgid "oe_kanban_text_red" -msgstr "" +msgstr "oe_kanban_text_red" #. module: project #: model:mail.message.subtype,description:project.mt_task_blocked @@ -505,7 +505,7 @@ msgstr "Oluşturma Tarihi" #. module: project #: view:project.task:0 msgid "Add a Description..." -msgstr "" +msgstr "Bir Açıklama Ekle..." #. module: project #: view:res.partner:0 @@ -588,7 +588,7 @@ msgstr "_Değerlendirme" #: view:report.project.task.user:0 #: field:report.project.task.user,opening_days:0 msgid "Days to Open" -msgstr "" +msgstr "Açılış için Kalan Günler" #. module: project #: selection:report.project.task.user,priority:0 @@ -631,7 +631,7 @@ msgstr "Yönetim" #. module: project #: field:project.config.settings,group_tasks_work_on_tasks:0 msgid "Log work activities on tasks" -msgstr "" +msgstr "Görevlerdeki iş etkinlikleri kayıtı" #. module: project #: model:project.task.type,name:project.project_tt_analysis @@ -798,7 +798,7 @@ msgstr "Taslak Açık Görev" #. module: project #: field:project.project,alias_model:0 msgid "Alias Model" -msgstr "" +msgstr "Rumuz Modeli" #. module: project #: help:report.project.task.user,closing_days:0 @@ -877,7 +877,7 @@ msgstr "Harcanan Zaman" #: view:project.project:0 #: view:project.task:0 msgid "í" -msgstr "" +msgstr "í" #. module: project #: field:account.analytic.account,company_uom_id:0 @@ -921,6 +921,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 #: model:ir.model,name:project.model_res_company @@ -955,11 +959,16 @@ msgid "" " * Ready for next stage indicates the task is ready to be pulled to the next " "stage" msgstr "" +"Bir görevin kanban durumu aşağıdakileri etkileyen özel durumlar belirtir:\n" +" * Normal varsayılan durumdur\n" +" * Bloke bir şeyin bu görevin yürütülmesini engellediğini gösterir\n" +" * Sonraki aşama için Hazır görevin sonraki aşamaya çekilmeye hazır olduğunu " +"gösterir" #. module: project #: view:project.task:0 msgid "10" -msgstr "" +msgstr "10" #. module: project #: view:project.project:0 @@ -1005,6 +1014,8 @@ msgid "" "Sum of spent hours of all tasks related to this project and its child " "projects." msgstr "" +"Bu proje ve alt projeleriyle ilişkili tüm görevler için harcanan sürelerin " +"toplamı." #. module: project #: view:project.project:0 @@ -1039,6 +1050,10 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" " #. module: project #: model:ir.ui.menu,name:project.menu_task_types_view @@ -1227,7 +1242,7 @@ msgstr "# nın görevleri" #. module: project #: field:project.project,doc_count:0 msgid "Number of documents attached" -msgstr "" +msgstr "Ekli belge sayısı" #. module: project #: field:project.task,priority:0 @@ -1301,7 +1316,7 @@ msgstr "Temmuz" #. module: project #: model:ir.model,name:project.model_project_task_reevaluate msgid "project.task.reevaluate" -msgstr "" +msgstr "project.task.reevaluate" #. module: project #: field:project.task,delay_hours:0 @@ -1311,7 +1326,7 @@ msgstr "Gecikme Saatleri" #. module: project #: view:project.task.type:0 msgid "Add a description..." -msgstr "" +msgstr "Bir açıklama ekle..." #. module: project #: view:project.project:0 @@ -1429,7 +1444,7 @@ msgstr "" #. module: project #: help:project.config.settings,group_manage_delegation_task:0 msgid "Allows you to delegate tasks to other users." -msgstr "" +msgstr "Başka kullanıcıları görevlendirmenizi sağlar" #. module: project #: field:project.project,active:0 @@ -1484,7 +1499,7 @@ msgstr "Ekkler" #. module: project #: view:project.category:0 msgid "Issue Version" -msgstr "" +msgstr "Sorun Sürümü" #. module: project #: code:addons/project/project.py:182 @@ -1550,7 +1565,7 @@ msgstr "Toplam Saatler" #. module: project #: model:ir.model,name:project.model_project_config_settings msgid "project.config.settings" -msgstr "" +msgstr "project.config.settings" #. module: project #: model:project.task.type,name:project.project_tt_development @@ -1587,7 +1602,7 @@ msgstr "" #. module: project #: field:project.task,id:0 msgid "ID" -msgstr "" +msgstr "ID" #. module: project #: model:ir.actions.act_window,name:project.action_view_task_overpassed_draft @@ -1601,6 +1616,8 @@ msgid "" "Child task still open.\n" "Please cancel or complete child task first." msgstr "" +"Alt görevler hala açık.\n" +"Lütfen önce alt görevi iptal edin ya da tamamlayın." #. module: project #: field:project.task.delegate,user_id:0 @@ -1638,6 +1655,8 @@ 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 "" +"Bu aşama görünür değil, örneğin; durum çubuğunda ya da kanban görünümünde, o " +"aşamada görüntülenecek hiç kayıt yoksa." #. module: project #: view:project.task:0 diff --git a/addons/project_gtd/i18n/mk.po b/addons/project_gtd/i18n/mk.po index 15a63e413f1..250b08037e9 100644 --- a/addons/project_gtd/i18n/mk.po +++ b/addons/project_gtd/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/project_issue/i18n/cs.po b/addons/project_issue/i18n/cs.po new file mode 100644 index 00000000000..fc6fe015730 --- /dev/null +++ b/addons/project_issue/i18n/cs.po @@ -0,0 +1,981 @@ +# Czech 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:37+0000\n" +"PO-Revision-Date: 2013-03-31 16:53+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_03 +msgid "Deadly bug" +msgstr "" + +#. module: project_issue +#: help:project.config.settings,fetchmail_issue:0 +msgid "" +"Allows you to configure your incoming mail server, and create issues from " +"incoming emails." +msgstr "" + +#. module: project_issue +#: field:project.issue.report,delay_open:0 +msgid "Avg. Delay to Open" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +msgid "Group By..." +msgstr "" + +#. module: project_issue +#: field:project.issue,working_hours_open:0 +msgid "Working Hours to Open the Issue" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_started +msgid "Issue started" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_open:0 +msgid "Opened" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,opening_date:0 +msgid "Date of Opening" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "March" +msgstr "" + +#. module: project_issue +#: field:project.issue,progress:0 +msgid "Progress (%)" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: project_issue +#: field:project.issue,company_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,company_id:0 +msgid "Company" +msgstr "" + +#. module: project_issue +#: field:project.issue,email_cc:0 +msgid "Watchers Emails" +msgstr "" + +#. module: project_issue +#: help:project.issue,kanban_state:0 +msgid "" +"A Issue's kanban state indicates special situations affecting it:\n" +" * Normal is the default situation\n" +" * Blocked indicates something is preventing the progress of this issue\n" +" * Ready for next stage indicates the issue is ready to be pulled to the " +"next stage" +msgstr "" + +#. module: project_issue +#: help:project.issue,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: project_issue +#: help:account.analytic.account,use_issues:0 +msgid "Check this field if this project manages issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:473 +#, python-format +msgid "" +"You cannot escalate this issue.\n" +"The relevant Project has not configured the Escalation Project!" +msgstr "" + +#. module: project_issue +#: constraint:project.project:0 +msgid "Error! You cannot assign escalation to the same project!" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Highest" +msgstr "" + +#. module: project_issue +#: help:project.issue,inactivity_days:0 +msgid "Difference in days between last action and current date" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,day:0 +msgid "Day" +msgstr "" + +#. module: project_issue +#: field:project.issue,days_since_creation:0 +msgid "Days since creation date" +msgstr "" + +#. module: project_issue +#: field:project.issue,task_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,task_id:0 +msgid "Task" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_project_issue_stage +msgid "Issue Stage Changed" +msgstr "" + +#. module: project_issue +#: field:project.issue,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: project_issue +#: field:project.issue,inactivity_days:0 +msgid "Days since last action" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_project +#: view:project.issue:0 +#: field:project.issue,project_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,project_id:0 +msgid "Project" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_categ_act0 +msgid "" +"

\n" +" Click to report a new issue.\n" +"

\n" +" The OpenERP issues tacker allows you to efficiantly manage " +"things\n" +" like internal requests, software development bugs, customer\n" +" complaints, project troubles, material breakdowns, etc.\n" +"

\n" +" " +msgstr "" + +#. module: project_issue +#: selection:project.issue,state:0 +#: selection:project.issue.report,state:0 +msgid "Cancelled" +msgstr "" + +#. module: project_issue +#: field:project.issue,description:0 +msgid "Private Note" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,date_closed:0 +msgid "Date of Closing" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Issue Tracker Search" +msgstr "" + +#. module: project_issue +#: field:project.issue,color:0 +msgid "Color Index" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,working_hours_open:0 +msgid "Avg. Working Hours to Open" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_account_analytic_account +msgid "Analytic Account" +msgstr "" + +#. module: project_issue +#: help:project.issue,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: project_issue +#: help:project.project,project_escalation_id:0 +msgid "" +"If any issue is escalated from the current Project, it will be listed under " +"the project selected here." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Extra Info" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:473 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Edit..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Responsible" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_blocked +#: model:mail.message.subtype,name:project_issue.mt_project_issue_blocked +msgid "Issue Blocked" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Statistics" +msgstr "" + +#. module: project_issue +#: field:project.issue,kanban_state:0 +msgid "Kanban State" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:368 +#, python-format +msgid "Project issue converted to task." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,priority:0 +#: view:project.issue.report:0 +#: field:project.issue.report,priority:0 +msgid "Priority" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,version_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,version_id:0 +msgid "Version" +msgstr "" + +#. module: project_issue +#: field:project.issue,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "New" +msgstr "" + +#. module: project_issue +#: view:project.project:0 +msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" +msgstr "" + +#. module: project_issue +#: field:project.issue,email_from:0 +msgid "Email" +msgstr "" + +#. module: project_issue +#: field:project.issue,channel_id:0 +#: field:project.issue.report,channel_id:0 +msgid "Channel" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Lowest" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:390 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Unassigned Issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,create_date:0 +#: view:project.issue.report:0 +#: field:project.issue.report,creation_date:0 +msgid "Creation Date" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.project_issue_version_action +#: model:ir.ui.menu,name:project_issue.menu_project_issue_version_act +msgid "Versions" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "To Do Issues" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_version +msgid "project.issue.version" +msgstr "" + +#. module: project_issue +#: field:project.config.settings,fetchmail_issue:0 +msgid "Create issues from an incoming email account " +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +msgid "Done" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "July" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.action_project_issue_report +msgid "" +"This report on the project issues allows you to analyse the quality of your " +"support or after-sales services. You can track the issues per age. You can " +"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 "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,stage_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,stage_id:0 +msgid "Stage" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.action_project_issue_report +#: model:ir.ui.menu,name:project_issue.menu_project_issue_report_tree +#: view:project.issue.report:0 +msgid "Issues Analysis" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:507 +#, python-format +msgid "No Subject" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,name:project_issue.action_view_my_project_issue_tree +msgid "My Project Issues" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,partner_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,partner_id:0 +msgid "Contact" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Delete" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:373 +#, python-format +msgid "Tasks" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,nbr:0 +msgid "# of Issues" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "September" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "December" +msgstr "" + +#. module: project_issue +#: field:project.issue,categ_ids:0 +msgid "Tags" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Issue Tracker Tree" +msgstr "" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_01 +msgid "Little problem" +msgstr "" + +#. module: project_issue +#: view:project.project:0 +msgid "creates" +msgstr "" + +#. module: project_issue +#: field:project.issue,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Project:" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Open Features" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_action_next:0 +msgid "Next Action" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,kanban_state:0 +msgid "Blocked" +msgstr "" + +#. module: project_issue +#: field:project.issue,user_email:0 +msgid "User Email" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "#Number of Project Issues" +msgstr "" + +#. module: project_issue +#: help:project.issue,channel_id:0 +msgid "Communication channel." +msgstr "" + +#. module: project_issue +#: help:project.issue,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,state:0 +msgid "Draft" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Low" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_closed:0 +#: selection:project.issue.report,state:0 +msgid "Closed" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,delay_close:0 +msgid "Avg. Delay to Close" +msgstr "" + +#. module: project_issue +#: selection:project.issue,state:0 +#: view:project.issue.report:0 +#: selection:project.issue.report,state:0 +msgid "Pending" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,state:0 +#: field:project.issue.report,state:0 +msgid "Status" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "#Project Issues" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "August" +msgstr "" + +#. module: project_issue +#: selection:project.issue,kanban_state:0 +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "Normal" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Category:" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "June" +msgstr "" + +#. module: project_issue +#: help:project.issue,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "New Issues" +msgstr "" + +#. module: project_issue +#: field:project.issue,day_close:0 +msgid "Days to Close" +msgstr "" + +#. module: project_issue +#: field:project.issue,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: project_issue +#: help:project.issue,state:0 +msgid "" +"The status is set to 'Draft', when a case is created. " +"If the case is in progress the status is set to 'Open'. " +"When the case is over, the status is set to 'Done'. If " +"the case needs to be reviewed then the status is set " +"to 'Pending'." +msgstr "" + +#. module: project_issue +#: field:project.issue,active:0 +#: field:project.issue.version,active:0 +msgid "Active" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "November" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:492 +#, python-format +msgid "Customer Email" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +msgid "Search" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Creation Month" +msgstr "" + +#. module: project_issue +#: help:project.issue,days_since_creation:0 +msgid "Difference in days between creation date and current date" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "January" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature Tracker Tree" +msgstr "" + +#. module: project_issue +#: help:project.issue,email_from:0 +msgid "These people will receive email." +msgstr "" + +#. module: project_issue +#: field:project.issue,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: project_issue +#: field:project.issue,date:0 +msgid "Date" +msgstr "" + +#. module: project_issue +#: field:project.issue,user_id:0 +#: view:project.issue.report:0 +#: field:project.issue.report,user_id:0 +msgid "Assigned to" +msgstr "" + +#. module: project_issue +#: view:project.config.settings:0 +msgid "Configure" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_closed +msgid "Issue closed" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Current Features" +msgstr "" + +#. module: project_issue +#: view:project.issue.version:0 +msgid "Issue Version" +msgstr "" + +#. module: project_issue +#: field:project.issue.version,name:0 +msgid "Version Number" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,state:0 +msgid "Open" +msgstr "" + +#. module: project_issue +#: field:account.analytic.account,use_issues:0 +#: model:ir.actions.act_window,name:project_issue.act_project_project_2_project_issue_all +#: model:ir.actions.act_window,name:project_issue.project_issue_categ_act0 +#: model:ir.ui.menu,name:project_issue.menu_project_confi +#: model:ir.ui.menu,name:project_issue.menu_project_issue_track +#: view:project.issue:0 +#: view:project.project:0 +msgid "Issues" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,state:0 +msgid "In Progress" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +msgid "To Do" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue +#: view:project.issue.report:0 +msgid "Project Issue" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Add an internal note..." +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Cancel Issue" +msgstr "" + +#. module: project_issue +#: help:project.issue,progress:0 +msgid "Computed as: Time Spent / Total Time." +msgstr "" + +#. module: project_issue +#: field:project.project,issue_count:0 +msgid "Unclosed Issues" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: selection:project.issue,kanban_state:0 +msgid "Ready for next stage" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "October" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,section_id:0 +msgid "Sale Team" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: view:project.issue.report:0 +#: field:project.issue.report,month:0 +msgid "Month" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +#: field:project.issue,name:0 +#: view:project.project:0 +msgid "Issue" +msgstr "" + +#. module: project_issue +#: model:project.category,name:project_issue.project_issue_category_02 +msgid "PBCK" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature Tracker Search" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Description" +msgstr "" + +#. module: project_issue +#: field:project.issue,section_id:0 +msgid "Sales Team" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "May" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_config_settings +msgid "project.config.settings" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_closed +#: model:mail.message.subtype,name:project_issue.mt_project_issue_closed +msgid "Issue Closed" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,email:0 +msgid "# Emails" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_new +#: model:mail.message.subtype,name:project_issue.mt_project_issue_new +msgid "Issue Created" +msgstr "" + +#. module: project_issue +#: code:addons/project_issue/project_issue.py:490 +#, python-format +msgid "Customer" +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "February" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_stage +#: model:mail.message.subtype,description:project_issue.mt_project_issue_stage +msgid "Stage changed" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "Feature description" +msgstr "" + +#. module: project_issue +#: field:project.project,project_escalation_id:0 +msgid "Project Escalation" +msgstr "" + +#. module: project_issue +#: model:ir.actions.act_window,help:project_issue.project_issue_version_action +msgid "" +"

\n" +" Click to add a new version.\n" +"

\n" +" Define here the different versions of your products on " +"which\n" +" you can work on issues.\n" +"

\n" +" " +msgstr "" + +#. module: project_issue +#: help:project.issue,section_id:0 +msgid "" +"Sales team to which Case belongs to. Define " +"Responsible user and Email account for mail gateway." +msgstr "" + +#. module: project_issue +#: view:board.board:0 +msgid "My Issues" +msgstr "" + +#. module: project_issue +#: help:project.issue.report,delay_open:0 +msgid "Number of Days to open the project issue." +msgstr "" + +#. module: project_issue +#: selection:project.issue.report,month:0 +msgid "April" +msgstr "" + +#. module: project_issue +#: view:project.issue:0 +msgid "⇒ Escalate" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_new +msgid "Issue created" +msgstr "" + +#. module: project_issue +#: field:project.issue,working_hours_close:0 +msgid "Working Hours to Close the Issue" +msgstr "" + +#. module: project_issue +#: field:project.issue,id:0 +msgid "ID" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,description:project_issue.mt_issue_blocked +msgid "Issue blocked" +msgstr "" + +#. module: project_issue +#: model:ir.model,name:project_issue.model_project_issue_report +msgid "project.issue.report" +msgstr "" + +#. module: project_issue +#: help:project.issue.report,delay_close:0 +msgid "Number of Days to close the project issue" +msgstr "" + +#. module: project_issue +#: field:project.issue.report,working_hours_close:0 +msgid "Avg. Working Hours to Close" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_stage +msgid "Stage Changed" +msgstr "" + +#. module: project_issue +#: selection:project.issue,priority:0 +#: selection:project.issue.report,priority:0 +msgid "High" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_deadline:0 +msgid "Deadline" +msgstr "" + +#. module: project_issue +#: field:project.issue,date_action_last:0 +msgid "Last Action" +msgstr "" + +#. module: project_issue +#: view:project.issue.report:0 +#: field:project.issue.report,name:0 +msgid "Year" +msgstr "" + +#. module: project_issue +#: field:project.issue,duration:0 +msgid "Duration" +msgstr "" + +#. module: project_issue +#: model:mail.message.subtype,name:project_issue.mt_issue_started +#: model:mail.message.subtype,name:project_issue.mt_project_issue_started +msgid "Issue Started" +msgstr "" diff --git a/addons/project_issue/i18n/mk.po b/addons/project_issue/i18n/mk.po index 0ef479c02a0..7303ef1472d 100644 --- a/addons/project_issue/i18n/mk.po +++ b/addons/project_issue/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/project_issue_sheet/i18n/cs.po b/addons/project_issue_sheet/i18n/cs.po new file mode 100644 index 00000000000..c933081f49a --- /dev/null +++ b/addons/project_issue_sheet/i18n/cs.po @@ -0,0 +1,72 @@ +# Czech 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-03-31 16:53+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: project_issue_sheet +#: code:addons/project_issue_sheet/project_issue_sheet.py:57 +#, python-format +msgid "The Analytic Account is pending !" +msgstr "" + +#. module: project_issue_sheet +#: model:ir.model,name:project_issue_sheet.model_account_analytic_line +msgid "Analytic Line" +msgstr "" + +#. module: project_issue_sheet +#: model:ir.model,name:project_issue_sheet.model_project_issue +msgid "Project Issue" +msgstr "" + +#. module: project_issue_sheet +#: model:ir.model,name:project_issue_sheet.model_hr_analytic_timesheet +msgid "Timesheet Line" +msgstr "" + +#. module: project_issue_sheet +#: view:project.issue:0 +msgid "on_change_project(project_id)" +msgstr "" + +#. module: project_issue_sheet +#: code:addons/project_issue_sheet/project_issue_sheet.py:57 +#: field:project.issue,analytic_account_id:0 +#, python-format +msgid "Analytic Account" +msgstr "" + +#. module: project_issue_sheet +#: view:project.issue:0 +msgid "Worklogs" +msgstr "" + +#. module: project_issue_sheet +#: field:account.analytic.line,create_date:0 +msgid "Create Date" +msgstr "" + +#. module: project_issue_sheet +#: view:project.issue:0 +#: field:project.issue,timesheet_ids:0 +msgid "Timesheets" +msgstr "" + +#. module: project_issue_sheet +#: field:hr.analytic.timesheet,issue_id:0 +msgid "Issue" +msgstr "" diff --git a/addons/project_issue_sheet/i18n/mk.po b/addons/project_issue_sheet/i18n/mk.po index fda59f6bc4d..776caaeb7d3 100644 --- a/addons/project_issue_sheet/i18n/mk.po +++ b/addons/project_issue_sheet/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/project_long_term/i18n/cs.po b/addons/project_long_term/i18n/cs.po new file mode 100644 index 00000000000..1af6933e2b2 --- /dev/null +++ b/addons/project_long_term/i18n/cs.po @@ -0,0 +1,507 @@ +# Czech 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-03-31 16:54+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: project_long_term +#: help:project.phase,constraint_date_end:0 +msgid "force the phase to finish before this date" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: selection:project.phase,state:0 +msgid "In Progress" +msgstr "" + +#. module: project_long_term +#: field:account.analytic.account,use_phases:0 +#: model:ir.actions.act_window,name:project_long_term.act_project_phases +#: view:project.project:0 +msgid "Phases" +msgstr "" + +#. module: project_long_term +#: model:ir.actions.act_window,name:project_long_term.act_resouce_allocation +#: model:ir.ui.menu,name:project_long_term.menu_resouce_allocation +#: view:project.phase:0 +#: view:project.user.allocation:0 +msgid "Team Planning" +msgstr "" + +#. module: project_long_term +#: field:project.phase,user_ids:0 +msgid "Assigned Users" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: field:project.phase,next_phase_ids:0 +msgid "Next Phases" +msgstr "" + +#. module: project_long_term +#: model:ir.model,name:project_long_term.model_project_user_allocation +msgid "Phase User Allocation" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Project's Tasks" +msgstr "" + +#. module: project_long_term +#: model:ir.actions.act_window,help:project_long_term.action_project_compute_phases +msgid "" +"To schedule phases of all or a specified project. It then open a gantt " +"view.\n" +" " +msgstr "" + +#. module: project_long_term +#: field:project.phase,task_ids:0 +msgid "Project Tasks" +msgstr "" + +#. module: project_long_term +#: model:ir.actions.act_window,name:project_long_term.action_project_compute_phases +#: model:ir.ui.menu,name:project_long_term.menu_compute_phase +#: view:project.compute.phases:0 +msgid "Schedule Phases" +msgstr "" + +#. module: project_long_term +#: field:project.phase,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: project_long_term +#: field:project.compute.phases,target_project:0 +msgid "Action" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Start Phase" +msgstr "" + +#. module: project_long_term +#: model:ir.model,name:project_long_term.model_project_task +msgid "Task" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Draft" +msgstr "" + +#. module: project_long_term +#: view:project.compute.phases:0 +#: view:project.compute.tasks:0 +msgid "C_ompute" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: selection:project.phase,state:0 +msgid "New" +msgstr "" + +#. module: project_long_term +#: field:project.phase,product_uom:0 +msgid "Duration Unit of Measure" +msgstr "" + +#. module: project_long_term +#: model:ir.ui.menu,name:project_long_term.menu_view_resource_calendar_leaves +msgid "Resource Leaves" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: selection:project.phase,state:0 +msgid "Pending" +msgstr "" + +#. module: project_long_term +#: help:project.phase,progress:0 +msgid "Computed based on related tasks" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "In Progress Phases" +msgstr "" + +#. module: project_long_term +#: code:addons/project_long_term/project_long_term.py:140 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: project_long_term +#: code:addons/project_long_term/wizard/project_compute_phases.py:48 +#, python-format +msgid "Please specify a project to schedule." +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: view:project.user.allocation:0 +msgid "Group By..." +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Remaining Hours" +msgstr "" + +#. module: project_long_term +#: field:project.phase,constraint_date_start:0 +msgid "Minimum Start Date" +msgstr "" + +#. module: project_long_term +#: help:project.phase,product_uom:0 +msgid "" +"Unit of Measure (Unit of Measure) is the unit of measurement for Duration" +msgstr "" + +#. module: project_long_term +#: help:project.phase,user_ids:0 +msgid "" +"The resources on the project can be computed automatically by the scheduler." +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Cancel Phase" +msgstr "" + +#. module: project_long_term +#: help:account.analytic.account,use_phases:0 +msgid "Check this field if you plan to use phase-based scheduling" +msgstr "" + +#. module: project_long_term +#: help:project.phase,state:0 +msgid "" +"If the phase is created the status 'Draft'.\n" +" If the phase is started, the status becomes 'In Progress'.\n" +" If review is needed the phase is in 'Pending' status. " +" \n" +" If the phase is over, the status is set to 'Done'." +msgstr "" + +#. module: project_long_term +#: field:project.phase,progress:0 +msgid "Progress" +msgstr "" + +#. module: project_long_term +#: model:ir.ui.menu,name:project_long_term.menu_pm_users_project1 +#: model:ir.ui.menu,name:project_long_term.menu_view_resource +msgid "Resources" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "My Projects" +msgstr "" + +#. module: project_long_term +#: view:project.project:0 +#: view:project.user.allocation:0 +msgid "Phase" +msgstr "" + +#. module: project_long_term +#: help:project.phase,duration:0 +msgid "By default in days" +msgstr "" + +#. module: project_long_term +#: model:ir.ui.menu,name:project_long_term.menu_view_resource_calendar +msgid "Working Time" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Pending Phases" +msgstr "" + +#. module: project_long_term +#: help:project.user.allocation,date_start:0 +msgid "Starting Date" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Related Tasks" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Start Month" +msgstr "" + +#. module: project_long_term +#: field:project.phase,date_end:0 +#: field:project.user.allocation,date_end:0 +msgid "End Date" +msgstr "" + +#. module: project_long_term +#: model:ir.model,name:project_long_term.model_project_compute_tasks +msgid "Project Compute Tasks" +msgstr "" + +#. module: project_long_term +#: model:ir.actions.act_window,help:project_long_term.act_project_phase +msgid "" +"A project can be split into the different phases. For each phase, you can " +"define your users allocation, describe different tasks and link your phase " +"to previous and next phases, add date constraints for the automated " +"scheduling. Use the long term planning in order to planify your available " +"users, convert your phases into a series of tasks when you start working on " +"the project." +msgstr "" + +#. module: project_long_term +#: selection:project.compute.phases,target_project:0 +msgid "Compute a Single Project" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: field:project.phase,previous_phase_ids:0 +msgid "Previous Phases" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "New Phases" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Tasks Details" +msgstr "" + +#. module: project_long_term +#: field:project.project,phase_count:0 +msgid "Open Phases" +msgstr "" + +#. module: project_long_term +#: help:project.phase,date_end:0 +msgid "" +" It's computed by the scheduler according to the start date and the duration." +msgstr "" + +#. module: project_long_term +#: constraint:project.phase:0 +msgid "Loops in phases not allowed" +msgstr "" + +#. module: project_long_term +#: view:project.user.allocation:0 +#: field:project.user.allocation,user_id:0 +msgid "User" +msgstr "" + +#. module: project_long_term +#: model:ir.model,name:project_long_term.model_project_project +#: field:project.compute.phases,project_id:0 +#: field:project.compute.tasks,project_id:0 +#: view:project.phase:0 +#: field:project.phase,project_id:0 +#: view:project.task:0 +#: view:project.user.allocation:0 +#: field:project.user.allocation,project_id:0 +msgid "Project" +msgstr "" + +#. module: project_long_term +#: view:project.compute.phases:0 +#: view:project.compute.tasks:0 +msgid "Cancel" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Project Users" +msgstr "" + +#. module: project_long_term +#: model:ir.model,name:project_long_term.model_project_phase +#: view:project.phase:0 +#: view:project.task:0 +#: field:project.task,phase_id:0 +#: field:project.user.allocation,phase_id:0 +msgid "Project Phase" +msgstr "" + +#. module: project_long_term +#: model:ir.ui.menu,name:project_long_term.menu_phase_schedule +msgid "Scheduling" +msgstr "" + +#. module: project_long_term +#: constraint:project.phase:0 +msgid "Phase start-date must be lower than phase end-date." +msgstr "" + +#. module: project_long_term +#: selection:project.phase,state:0 +msgid "Cancelled" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Total Hours" +msgstr "" + +#. module: project_long_term +#: model:ir.model,name:project_long_term.model_project_compute_phases +msgid "Project Compute Phases" +msgstr "" + +#. module: project_long_term +#: field:project.phase,date_start:0 +#: field:project.user.allocation,date_start:0 +msgid "Start Date" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Constraints" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: field:project.phase,state:0 +msgid "Status" +msgstr "" + +#. module: project_long_term +#: help:project.phase,sequence:0 +msgid "Gives the sequence order when displaying a list of phases." +msgstr "" + +#. module: project_long_term +#: model:ir.actions.act_window,name:project_long_term.project_phase_task_list +msgid "Tasks" +msgstr "" + +#. module: project_long_term +#: help:project.user.allocation,date_end:0 +msgid "Ending Date" +msgstr "" + +#. module: project_long_term +#: code:addons/project_long_term/wizard/project_compute_phases.py:48 +#, python-format +msgid "Error!" +msgstr "" + +#. module: project_long_term +#: help:project.phase,date_start:0 +msgid "" +"It's computed by the scheduler according the project date or the end date of " +"the previous phase." +msgstr "" + +#. module: project_long_term +#: model:ir.actions.act_window,name:project_long_term.act_project_phase +#: model:ir.actions.act_window,name:project_long_term.act_project_phase_list +#: model:ir.ui.menu,name:project_long_term.menu_project_phase +#: model:ir.ui.menu,name:project_long_term.menu_project_phase_list +#: view:project.phase:0 +#: field:project.project,phase_ids:0 +msgid "Project Phases" +msgstr "" + +#. module: project_long_term +#: help:project.phase,constraint_date_start:0 +msgid "force the phase to start after this date" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +msgid "Month" +msgstr "" + +#. module: project_long_term +#: model:ir.model,name:project_long_term.model_account_analytic_account +msgid "Analytic Account" +msgstr "" + +#. module: project_long_term +#: field:project.phase,constraint_date_end:0 +msgid "Deadline" +msgstr "" + +#. module: project_long_term +#: view:project.user.allocation:0 +msgid "Project User Allocation" +msgstr "" + +#. module: project_long_term +#: model:ir.actions.act_window,name:project_long_term.action_project_compute_tasks +#: model:ir.ui.menu,name:project_long_term.menu_compute_tasks +#: view:project.compute.tasks:0 +msgid "Schedule Tasks" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: selection:project.phase,state:0 +msgid "Done" +msgstr "" + +#. module: project_long_term +#: selection:project.compute.phases,target_project:0 +msgid "Compute All My Projects" +msgstr "" + +#. module: project_long_term +#: field:project.phase,user_force_ids:0 +msgid "Force Assigned Users" +msgstr "" + +#. module: project_long_term +#: view:project.phase:0 +#: field:project.phase,duration:0 +msgid "Duration" +msgstr "" + +#. module: project_long_term +#: view:project.user.allocation:0 +msgid "Users" +msgstr "" + +#. module: project_long_term +#: field:project.phase,name:0 +msgid "Name" +msgstr "" + +#. module: project_long_term +#: view:project.compute.phases:0 +#: view:project.compute.tasks:0 +msgid "or" +msgstr "" diff --git a/addons/project_long_term/i18n/mk.po b/addons/project_long_term/i18n/mk.po index ac5460c5320..acd1fb93403 100644 --- a/addons/project_long_term/i18n/mk.po +++ b/addons/project_long_term/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/project_mrp/i18n/mk.po b/addons/project_mrp/i18n/mk.po index cf084f97c8c..78abce37f92 100644 --- a/addons/project_mrp/i18n/mk.po +++ b/addons/project_mrp/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/project_timesheet/i18n/mk.po b/addons/project_timesheet/i18n/mk.po index 1f0375b7f40..a9fa492754d 100644 --- a/addons/project_timesheet/i18n/mk.po +++ b/addons/project_timesheet/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/purchase/i18n/id.po b/addons/purchase/i18n/id.po index 82faf38f45e..5e72fcc5687 100644 --- a/addons/purchase/i18n/id.po +++ b/addons/purchase/i18n/id.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: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-29 11:11+0000\n" +"Last-Translator: opix \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:58+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: purchase @@ -30,7 +30,7 @@ msgstr "" #. module: purchase #: view:board.board:0 msgid "Monthly Purchases by Category" -msgstr "" +msgstr "Pembelian Bulanan Berdasarkan Kategori" #. module: purchase #: help:purchase.config.settings,module_warning:0 @@ -67,7 +67,7 @@ msgstr "Hari" #. module: purchase #: view:purchase.order:0 msgid "Cancel Order" -msgstr "" +msgstr "Batalkan order" #. module: purchase #: view:purchase.report:0 @@ -107,19 +107,20 @@ msgstr "" #: code:addons/purchase/purchase.py:1024 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Konfigurasi error !" #. module: purchase #: code:addons/purchase/purchase.py:587 #, python-format msgid "You must first cancel all receptions related to this purchase order." msgstr "" +"Daftar penerimaan atas pembelian ini harus anda batalkan terlebih dahulu" #. module: purchase #: model:ir.model,name:purchase.model_res_partner #: field:purchase.order.line,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Rekanan" #. module: purchase #: field:purchase.report,negociation:0 @@ -130,7 +131,7 @@ msgstr "Standar Harga Pembelian" #: code:addons/purchase/purchase.py:1011 #, python-format msgid "No supplier defined for this product !" -msgstr "" +msgstr "Supplier belum didefinisikan untuk produk ini" #. module: purchase #: model:ir.actions.act_window,help:purchase.action_picking_tree4_picking_to_invoice @@ -184,7 +185,7 @@ msgstr "Alamat pengiriman :" #. module: purchase #: view:purchase.order:0 msgid "Confirm Order" -msgstr "" +msgstr "konfirmasi Order" #. module: purchase #: field:purchase.config.settings,module_warning:0 @@ -226,6 +227,7 @@ msgstr "" #, python-format msgid "In order to delete a purchase order, you must cancel it first." msgstr "" +"Untuk menghapus order pembelian, anda harus membatalkan terlebih dahulu" #. module: purchase #: view:product.product:0 @@ -235,7 +237,7 @@ msgstr "" #. module: purchase #: view:purchase.order:0 msgid "Approved purchase orders" -msgstr "" +msgstr "Pembelian disetujui" #. module: purchase #: model:email.template,subject:purchase.email_template_edi_purchase @@ -271,7 +273,7 @@ msgstr "" #: field:purchase.order.line,state:0 #: view:purchase.report:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: purchase #: selection:purchase.report,month:0 diff --git a/addons/purchase/i18n/mk.po b/addons/purchase/i18n/mk.po index b1f1d3bba77..f7f95eb57e5 100644 --- a/addons/purchase/i18n/mk.po +++ b/addons/purchase/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/purchase_double_validation/i18n/cs.po b/addons/purchase_double_validation/i18n/cs.po new file mode 100644 index 00000000000..567efafe250 --- /dev/null +++ b/addons/purchase_double_validation/i18n/cs.po @@ -0,0 +1,49 @@ +# Czech 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-03-31 16:54+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: purchase_double_validation +#: model:ir.model,name:purchase_double_validation.model_purchase_config_settings +msgid "purchase.config.settings" +msgstr "" + +#. module: purchase_double_validation +#: view:purchase.order:0 +msgid "Purchase orders which are not approved yet." +msgstr "" + +#. module: purchase_double_validation +#: field:purchase.config.settings,limit_amount:0 +msgid "limit to require a second approval" +msgstr "" + +#. module: purchase_double_validation +#: view:board.board:0 +#: model:ir.actions.act_window,name:purchase_double_validation.purchase_waiting +msgid "Purchase Orders Waiting Approval" +msgstr "" + +#. module: purchase_double_validation +#: view:purchase.order:0 +msgid "To Approve" +msgstr "" + +#. module: purchase_double_validation +#: help:purchase.config.settings,limit_amount:0 +msgid "Amount after which validation of purchase is required." +msgstr "" diff --git a/addons/purchase_requisition/i18n/cs.po b/addons/purchase_requisition/i18n/cs.po new file mode 100644 index 00000000000..5da5146f5ac --- /dev/null +++ b/addons/purchase_requisition/i18n/cs.po @@ -0,0 +1,483 @@ +# Czech 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-03-31 16:55+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Request a Quotation" +msgstr "" + +#. module: purchase_requisition +#: selection:purchase.requisition,exclusive:0 +msgid "Multiple Requisitions" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition.line,product_uom_id:0 +msgid "Product Unit of Measure" +msgstr "" + +#. module: purchase_requisition +#: model:ir.actions.act_window,help:purchase_requisition.action_purchase_requisition +msgid "" +"

\n" +" Click to start a new purchase requisition process. \n" +"

\n" +" A purchase requisition is the step before a request for " +"quotation.\n" +" In a purchase requisition (or purchase tender), you can record " +"the\n" +" products you need to buy and trigger the creation of RfQs to\n" +" suppliers. After the negotiation, once you have reviewed all " +"the\n" +" supplier's offers, you can validate some and cancel others.\n" +"

\n" +" " +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: field:purchase.requisition,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Cancel Requisition" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: field:purchase.requisition,state:0 +msgid "Status" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Send to Suppliers" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Group By..." +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "Purchase Done" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,message_follower_ids:0 +msgid "Followers" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Purchase Requisition in negociation" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition.partner,partner_id:0 +msgid "Supplier" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "New" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Product Detail" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Qty" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Type" +msgstr "" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.action_purchase_requisition_partner +#: model:ir.actions.report.xml,name:purchase_requisition.report_purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition +#: model:ir.module.category,name:purchase_requisition.module_category_purchase_requisition +#: field:product.product,purchase_requisition:0 +#: field:purchase.order,requisition_id:0 +#: view:purchase.requisition:0 +#: field:purchase.requisition.line,requisition_id:0 +#: view:purchase.requisition.partner:0 +msgid "Purchase Requisition" +msgstr "" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition_line +msgid "Purchase Requisition Line" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.order:0 +msgid "Purchase Orders with requisition" +msgstr "" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_product_product +#: field:purchase.requisition.line,product_id:0 +msgid "Product" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Quotations" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Terms and Conditions" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,description:0 +msgid "Description" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,message_unread:0 +msgid "Unread Messages" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,company_id:0 +#: field:purchase.requisition.line,company_id:0 +msgid "Company" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition.partner:0 +msgid "Create Quotation" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "e.g. PO0025" +msgstr "" + +#. module: purchase_requisition +#: help:purchase.requisition,message_ids:0 +msgid "Messages and communication history" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Approved by Supplier" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition.partner:0 +msgid "or" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Reset to Draft" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Current Purchase Requisition" +msgstr "" + +#. module: purchase_requisition +#: model:res.groups,name:purchase_requisition.group_purchase_requisition_user +msgid "User" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Order Reference" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,message_is_follower:0 +msgid "Is a Follower" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition.line,product_qty:0 +msgid "Quantity" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Unassigned Requisition" +msgstr "" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.action_purchase_requisition +#: model:ir.ui.menu,name:purchase_requisition.menu_purchase_requisition_pro_mgt +msgid "Purchase Requisitions" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Quotation Detail" +msgstr "" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/purchase_requisition.py:134 +#, python-format +msgid "" +"You have already one %s purchase order for this partner, you must cancel " +"this purchase order to create a new quotation." +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "End Date" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,name:0 +msgid "Requisition Reference" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,line_ids:0 +msgid "Products to Purchase" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "Sent to Suppliers" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Search Purchase Requisition" +msgstr "" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 +#, python-format +msgid "No Product in Tender." +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Date Ordered" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,message_ids:0 +msgid "Messages" +msgstr "" + +#. module: purchase_requisition +#: help:purchase.requisition,exclusive:0 +msgid "" +"Purchase Requisition (exclusive): On the confirmation of a purchase order, " +"it cancels the remaining purchase order.\n" +"Purchase Requisition(Multiple): It allows to have multiple purchase " +"orders.On confirmation of a purchase order it does not cancel the remaining " +"orders" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Cancel Purchase Order" +msgstr "" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_order +#: view:purchase.requisition:0 +msgid "Purchase Order" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,origin:0 +msgid "Source Document" +msgstr "" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:41 +#, python-format +msgid "Error!" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,exclusive:0 +msgid "Requisition Type" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "New Purchase Requisition" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Products" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Order Date" +msgstr "" + +#. module: purchase_requisition +#: selection:purchase.requisition,state:0 +msgid "Cancelled" +msgstr "" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition_partner +msgid "Purchase Requisition Partner" +msgstr "" + +#. module: purchase_requisition +#: help:purchase.requisition,message_unread:0 +msgid "If checked new messages require your attention." +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Purchase for Requisitions" +msgstr "" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.act_res_partner_2_purchase_order +msgid "Purchase orders" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,date_end:0 +msgid "Requisition Deadline" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,message_summary:0 +msgid "Summary" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Reference" +msgstr "" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_procurement_order +msgid "Procurement" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: view:purchase.requisition:0 +msgid "Source" +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,warehouse_id:0 +msgid "Warehouse" +msgstr "" + +#. module: purchase_requisition +#: field:procurement.order,requisition_id:0 +msgid "Latest Requisition" +msgstr "" + +#. module: purchase_requisition +#: model:res.groups,name:purchase_requisition.group_purchase_requisition_manager +msgid "Manager" +msgstr "" + +#. module: purchase_requisition +#: selection:purchase.requisition,exclusive:0 +msgid "Purchase Requisition (exclusive)" +msgstr "" + +#. module: purchase_requisition +#: help:purchase.requisition,message_summary:0 +msgid "" +"Holds the Chatter summary (number of messages, ...). This summary is " +"directly in html format in order to be inserted in kanban views." +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Product UoM" +msgstr "" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/purchase_requisition.py:134 +#, python-format +msgid "Warning!" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Confirm Purchase Order" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition.partner:0 +msgid "Cancel" +msgstr "" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,date_start:0 +msgid "Requisition Date" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Start Date" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Unassigned" +msgstr "" + +#. module: purchase_requisition +#: view:purchase.order:0 +msgid "Requisition" +msgstr "" + +#. module: purchase_requisition +#: help:product.product,purchase_requisition:0 +msgid "" +"Check this box to generates purchase requisition instead of generating " +"requests for quotation from procurement." +msgstr "" + +#. module: purchase_requisition +#: field:purchase.requisition,purchase_ids:0 +msgid "Purchase Orders" +msgstr "" diff --git a/addons/purchase_requisition/i18n/mk.po b/addons/purchase_requisition/i18n/mk.po index daea0b97503..bb34982a807 100644 --- a/addons/purchase_requisition/i18n/mk.po +++ b/addons/purchase_requisition/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/report_intrastat/i18n/mk.po b/addons/report_intrastat/i18n/mk.po index 2c165f7a8c7..7afaca554d1 100644 --- a/addons/report_intrastat/i18n/mk.po +++ b/addons/report_intrastat/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/report_webkit/i18n/cs.po b/addons/report_webkit/i18n/cs.po new file mode 100644 index 00000000000..78c70bc672f --- /dev/null +++ b/addons/report_webkit/i18n/cs.po @@ -0,0 +1,517 @@ +# Czech 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-03-31 16:55+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: report_webkit +#: view:ir.actions.report.xml:0 +msgid "Webkit Template (used if Report File is not found)" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "Tabloid 29 279.4 x 431.8 mm" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "Ledger 28 431.8 x 279.4 mm" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:233 +#, python-format +msgid "No header defined for this Webkit report!" +msgstr "" + +#. module: report_webkit +#: help:ir.header_img,type:0 +msgid "Image type(png,gif,jpeg)" +msgstr "" + +#. module: report_webkit +#: help:ir.actions.report.xml,precise_mode:0 +msgid "" +"This mode allow more precise element " +" position as each object is printed on a separate HTML. " +" but memory and disk " +"usage is wider" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "Executive 4 7.5 x 10 inches, 190.5 x 254 mm" +msgstr "" + +#. module: report_webkit +#: field:ir.header_img,company_id:0 +#: field:ir.header_webkit,company_id:0 +msgid "Company" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:234 +#, python-format +msgid "Please set a header in company settings." +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "DLE 26 110 x 220 mm" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B7 21 88 x 125 mm" +msgstr "" + +#. module: report_webkit +#: view:res.company:0 +msgid "Headers" +msgstr "" + +#. module: report_webkit +#: help:ir.header_img,name:0 +msgid "Name of Image" +msgstr "" + +#. module: report_webkit +#: model:ir.actions.act_window,name:report_webkit.action_header_webkit +#: model:ir.ui.menu,name:report_webkit.menu_header_webkit +msgid "Webkit Headers/Footers" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "Legal 3 8.5 x 14 inches, 215.9 x 355.6 mm" +msgstr "" + +#. module: report_webkit +#: model:ir.model,name:report_webkit.model_ir_header_webkit +msgid "ir.header_webkit" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A4 0 210 x 297 mm, 8.26 x 11.69 inches" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:176 +#, python-format +msgid "Webkit error" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B2 17 500 x 707 mm" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:260 +#: code:addons/report_webkit/webkit_report.py:271 +#: code:addons/report_webkit/webkit_report.py:280 +#: code:addons/report_webkit/webkit_report.py:293 +#: code:addons/report_webkit/webkit_report.py:304 +#, python-format +msgid "Webkit render!" +msgstr "" + +#. module: report_webkit +#: model:ir.model,name:report_webkit.model_ir_header_img +msgid "ir.header_img" +msgstr "" + +#. module: report_webkit +#: field:ir.actions.report.xml,precise_mode:0 +msgid "Precise Mode" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:96 +#, python-format +msgid "" +"Please install executable on your system (sudo apt-get install wkhtmltopdf) " +"or download it from here: " +"http://code.google.com/p/wkhtmltopdf/downloads/list and set the path in the " +"ir.config_parameter with the webkit_path key.Minimal version is 0.9.9" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A0 5 841 x 1189 mm" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "C5E 24 163 x 229 mm" +msgstr "" + +#. module: report_webkit +#: field:ir.header_img,type:0 +msgid "Type" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/wizard/report_webkit_actions.py:133 +#, python-format +msgid "Client Actions Connections" +msgstr "" + +#. module: report_webkit +#: field:res.company,header_image:0 +msgid "Available Images" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,html:0 +msgid "webkit header" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B1 15 707 x 1000 mm" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A1 6 594 x 841 mm" +msgstr "" + +#. module: report_webkit +#: help:ir.actions.report.xml,webkit_header:0 +msgid "The header linked to the report" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:95 +#, python-format +msgid "Wkhtmltopdf library path is not set" +msgstr "" + +#. module: report_webkit +#: view:ir.actions.report.xml:0 +#: view:res.company:0 +msgid "Webkit" +msgstr "" + +#. module: report_webkit +#: help:ir.header_webkit,format:0 +msgid "Select Proper Paper size" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B5 1 176 x 250 mm, 6.93 x 9.84 inches" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A7 11 74 x 105 mm" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A6 10 105 x 148 mm" +msgstr "" + +#. module: report_webkit +#: help:ir.actions.report.xml,report_webkit_data:0 +msgid "This template will be used if the main report file is not found" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "Folio 27 210 x 330 mm" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,margin_top:0 +msgid "Top Margin (mm)" +msgstr "" + +#. module: report_webkit +#: view:report.webkit.actions:0 +msgid "_Ok" +msgstr "" + +#. module: report_webkit +#: help:report.webkit.actions,print_button:0 +msgid "" +"Check this to add a Print action for this Report in the sidebar of the " +"corresponding document types" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B3 18 353 x 500 mm" +msgstr "" + +#. module: report_webkit +#: field:ir.actions.report.xml,webkit_header:0 +msgid "Webkit Header" +msgstr "" + +#. module: report_webkit +#: help:ir.actions.report.xml,webkit_debug:0 +msgid "Enable the webkit engine debugger" +msgstr "" + +#. module: report_webkit +#: field:ir.header_img,img:0 +msgid "Image" +msgstr "" + +#. module: report_webkit +#: view:ir.header_img:0 +msgid "Header Image" +msgstr "" + +#. module: report_webkit +#: field:res.company,header_webkit:0 +msgid "Available html" +msgstr "" + +#. module: report_webkit +#: help:report.webkit.actions,open_action:0 +msgid "" +"Check this to view the newly added internal print action after creating it " +"(technical view) " +msgstr "" + +#. module: report_webkit +#: view:res.company:0 +msgid "Images" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,orientation:0 +msgid "Portrait" +msgstr "" + +#. module: report_webkit +#: view:report.webkit.actions:0 +msgid "or" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,orientation:0 +msgid "Landscape" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B8 22 62 x 88 mm" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:177 +#, python-format +msgid "The command 'wkhtmltopdf' failed with error code = %s. Message: %s" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A2 7 420 x 594 mm" +msgstr "" + +#. module: report_webkit +#: field:report.webkit.actions,print_button:0 +msgid "Add print button" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A9 13 37 x 52 mm" +msgstr "" + +#. module: report_webkit +#: model:ir.model,name:report_webkit.model_res_company +msgid "Companies" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,margin_bottom:0 +msgid "Bottom Margin (mm)" +msgstr "" + +#. module: report_webkit +#: model:ir.model,name:report_webkit.model_report_webkit_actions +msgid "Webkit Actions" +msgstr "" + +#. module: report_webkit +#: field:report.webkit.actions,open_action:0 +msgid "Open added action" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,margin_right:0 +msgid "Right Margin (mm)" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:228 +#, python-format +msgid "Webkit report template not found!" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,orientation:0 +msgid "Orientation" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B6 20 125 x 176 mm" +msgstr "" + +#. module: report_webkit +#: help:ir.header_webkit,html:0 +msgid "Set Webkit Report Header" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,format:0 +msgid "Paper size" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid ":B10 16 31 x 44 mm" +msgstr "" + +#. module: report_webkit +#: view:report.webkit.actions:0 +msgid "Cancel" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,css:0 +msgid "Header CSS" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B4 19 250 x 353 mm" +msgstr "" + +#. module: report_webkit +#: model:ir.actions.act_window,name:report_webkit.action_header_img +#: model:ir.ui.menu,name:report_webkit.menu_header_img +msgid "Webkit Logos" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:172 +#, python-format +msgid "No diagnosis message was provided" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A3 8 297 x 420 mm" +msgstr "" + +#. module: report_webkit +#: field:ir.actions.report.xml,report_webkit_data:0 +msgid "Webkit Template" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,footer_html:0 +msgid "webkit footer" +msgstr "" + +#. module: report_webkit +#: field:ir.actions.report.xml,webkit_debug:0 +msgid "Webkit debug" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "Letter 2 8.5 x 11 inches, 215.9 x 279.4 mm" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B0 14 1000 x 1414 mm" +msgstr "" + +#. module: report_webkit +#: field:ir.header_img,name:0 +#: field:ir.header_webkit,name:0 +msgid "Name" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A5 9 148 x 210 mm" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "A8 12 52 x 74 mm" +msgstr "" + +#. module: report_webkit +#: model:ir.actions.act_window,name:report_webkit.wizard_ofdo_report_actions +#: view:report.webkit.actions:0 +msgid "Add Print Buttons" +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "Comm10E 25 105 x 241 mm, U.S. Common 10 Envelope" +msgstr "" + +#. module: report_webkit +#: field:ir.header_webkit,margin_left:0 +msgid "Left Margin (mm)" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:228 +#, python-format +msgid "Error!" +msgstr "" + +#. module: report_webkit +#: help:ir.header_webkit,footer_html:0 +msgid "Set Webkit Report Footer." +msgstr "" + +#. module: report_webkit +#: selection:ir.header_webkit,format:0 +msgid "B9 23 33 x 62 mm" +msgstr "" + +#. module: report_webkit +#: model:ir.model,name:report_webkit.model_ir_actions_report_xml +msgid "ir.actions.report.xml" +msgstr "" + +#. module: report_webkit +#: code:addons/report_webkit/webkit_report.py:174 +#, python-format +msgid "The following diagnosis message was provided:\n" +msgstr "" + +#. module: report_webkit +#: view:ir.header_webkit:0 +msgid "HTML Header" +msgstr "" diff --git a/addons/report_webkit/i18n/mk.po b/addons/report_webkit/i18n/mk.po index 02a057aa5d1..21d5e3beaa5 100644 --- a/addons/report_webkit/i18n/mk.po +++ b/addons/report_webkit/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/sale/i18n/ko.po b/addons/sale/i18n/ko.po index 12e80234e45..52c6f301b5d 100644 --- a/addons/sale/i18n/ko.po +++ b/addons/sale/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: sale diff --git a/addons/sale/i18n/mk.po b/addons/sale/i18n/mk.po index e08837eb8a6..6714e971bd1 100644 --- a/addons/sale/i18n/mk.po +++ b/addons/sale/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/sale_crm/i18n/mk.po b/addons/sale_crm/i18n/mk.po index 7fb32755083..f0d735c0654 100644 --- a/addons/sale_crm/i18n/mk.po +++ b/addons/sale_crm/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/sale_journal/i18n/mk.po b/addons/sale_journal/i18n/mk.po index 739ef357694..2425fd475dc 100644 --- a/addons/sale_journal/i18n/mk.po +++ b/addons/sale_journal/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/sale_margin/i18n/cs.po b/addons/sale_margin/i18n/cs.po new file mode 100644 index 00000000000..fd0c6378552 --- /dev/null +++ b/addons/sale_margin/i18n/cs.po @@ -0,0 +1,46 @@ +# Czech 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:39+0000\n" +"PO-Revision-Date: 2013-03-30 12:41+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: sale_margin +#: field:sale.order.line,purchase_price:0 +msgid "Cost Price" +msgstr "" + +#. module: sale_margin +#: model:ir.model,name:sale_margin.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_margin +#: field:sale.order,margin:0 +#: field:sale.order.line,margin:0 +msgid "Margin" +msgstr "" + +#. module: sale_margin +#: model:ir.model,name:sale_margin.model_sale_order_line +msgid "Sales Order Line" +msgstr "" + +#. module: sale_margin +#: help:sale.order,margin:0 +msgid "" +"It gives profitability by calculating the difference between the Unit Price " +"and the cost price." +msgstr "" diff --git a/addons/sale_mrp/i18n/cs.po b/addons/sale_mrp/i18n/cs.po new file mode 100644 index 00000000000..ac30f180632 --- /dev/null +++ b/addons/sale_mrp/i18n/cs.po @@ -0,0 +1,43 @@ +# Czech 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:39+0000\n" +"PO-Revision-Date: 2013-03-30 12:41+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: sale_mrp +#: model:ir.model,name:sale_mrp.model_mrp_production +msgid "Manufacturing Order" +msgstr "" + +#. module: sale_mrp +#: help:mrp.production,sale_name:0 +msgid "Indicate the name of sales order." +msgstr "" + +#. module: sale_mrp +#: help:mrp.production,sale_ref:0 +msgid "Indicate the Customer Reference from sales order." +msgstr "" + +#. module: sale_mrp +#: field:mrp.production,sale_ref:0 +msgid "Sale Reference" +msgstr "" + +#. module: sale_mrp +#: field:mrp.production,sale_name:0 +msgid "Sale Name" +msgstr "" diff --git a/addons/sale_order_dates/i18n/cs.po b/addons/sale_order_dates/i18n/cs.po new file mode 100644 index 00000000000..68412332f45 --- /dev/null +++ b/addons/sale_order_dates/i18n/cs.po @@ -0,0 +1,58 @@ +# Czech 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:39+0000\n" +"PO-Revision-Date: 2013-03-30 12:41+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: sale_order_dates +#: view:sale.order:0 +msgid "Dates" +msgstr "" + +#. module: sale_order_dates +#: field:sale.order,commitment_date:0 +msgid "Commitment Date" +msgstr "" + +#. module: sale_order_dates +#: field:sale.order,effective_date:0 +msgid "Effective Date" +msgstr "" + +#. module: sale_order_dates +#: help:sale.order,effective_date:0 +msgid "Date on which picking is created." +msgstr "" + +#. module: sale_order_dates +#: help:sale.order,requested_date:0 +msgid "Date requested by the customer for the sale." +msgstr "" + +#. module: sale_order_dates +#: field:sale.order,requested_date:0 +msgid "Requested Date" +msgstr "" + +#. module: sale_order_dates +#: model:ir.model,name:sale_order_dates.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_order_dates +#: help:sale.order,commitment_date:0 +msgid "Committed date for delivery." +msgstr "" diff --git a/addons/sale_order_dates/i18n/mk.po b/addons/sale_order_dates/i18n/mk.po index 0f1cca20d7a..8f67be1a5d0 100644 --- a/addons/sale_order_dates/i18n/mk.po +++ b/addons/sale_order_dates/i18n/mk.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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/sale_stock/i18n/mk.po b/addons/sale_stock/i18n/mk.po index a51ba7c9e69..2aa8e44add1 100644 --- a/addons/sale_stock/i18n/mk.po +++ b/addons/sale_stock/i18n/mk.po @@ -15,7 +15,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-03-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/share/i18n/mk.po b/addons/share/i18n/mk.po index eb364825acb..c3fb55e65a6 100644 --- a/addons/share/i18n/mk.po +++ b/addons/share/i18n/mk.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:39+0000\n" -"PO-Revision-Date: 2013-03-28 23:28+0000\n" +"PO-Revision-Date: 2013-03-29 09:11+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -377,7 +377,7 @@ msgstr "" #: help:share.wizard,share_root_url:0 msgid "Main access page for users that are granted shared access" msgstr "" -"Страница за главен пристап за корисници кои имаат доделено споделен пристап" +"Главна страница за пристап за корисници кои имаа доделено споделен пристап" #. module: share #: code:addons/share/wizard/share_wizard.py:206 @@ -565,7 +565,7 @@ msgid "" "The documents have been automatically added to your subscriptions.\n" "\n" msgstr "" -"Документите беа автоматски додадени на вашите претплати.\n" +"Документите беа автоматски додадени во вашите претплати.\n" "\n" #. module: share diff --git a/addons/stock/i18n/mk.po b/addons/stock/i18n/mk.po index a2938c3138e..a0135a65ffa 100644 --- a/addons/stock/i18n/mk.po +++ b/addons/stock/i18n/mk.po @@ -11,13 +11,13 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-03-28 23:28+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:46+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:32+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -107,7 +107,7 @@ msgstr "Следи ги излезните групи" #: model:ir.actions.act_window,name:stock.action_stock_line_date #: model:ir.ui.menu,name:stock.menu_report_stock_line_date msgid "Last Product Inventories" -msgstr "Пописи на последен производ" +msgstr "Последни залихи на производ" #. module: stock #: view:stock.move:0 @@ -159,7 +159,7 @@ msgstr "" #, python-format msgid "You cannot perform this operation on more than one Stock Inventories." msgstr "" -"Не можете да ја изведете оваа операција на повеќе од еден попис на залихата." +"Не може да ја изведете оваа операција на повеќе од еден попис на залиха." #. module: stock #: code:addons/stock/wizard/stock_change_product_qty.py:91 @@ -234,7 +234,7 @@ msgstr "Влезни" #: code:addons/stock/wizard/stock_move.py:223 #, python-format msgid "Unable to assign all lots to this move!" -msgstr "Не е можно да се доделат сите лотови на ова движење!" +msgstr "Не може да се доделат сите лотови на ова движење!" #. module: stock #: help:stock.move,partner_id:0 @@ -722,7 +722,8 @@ msgstr "Приемно ливче" msgid "" "Serial number quantity %d of %s is larger than available quantity (%d)!" msgstr "" -"Серискиот број на количината %d од %s е поголем од достапната количина (%d)!" +"Количината на серискиот број %d од %s е поголема од расположливата количина " +"(%d) !" #. module: stock #: report:stock.picking.list:0 @@ -1060,7 +1061,7 @@ msgstr "Промени количина на производ" #: code:addons/stock/product.py:463 #, python-format msgid "Future P&L" -msgstr "Идно P&L" +msgstr "Идни P&L" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree4 @@ -1232,7 +1233,7 @@ msgstr "Заостанати обврски" #. module: stock #: field:stock.location,stock_virtual:0 msgid "Virtual Stock" -msgstr "Виртуелана залиха" +msgstr "Виртуелна залиха" #. module: stock #: selection:report.stock.inventory,location_type:0 @@ -1496,8 +1497,7 @@ msgstr "Налог за испорака" #. module: stock #: help:stock.location,chained_delay:0 msgid "Delay between original move and chained move in days" -msgstr "" -"Оддолжување помеѓу оригиналното движење и поврзаното движење во денови" +msgstr "Доцнење помеѓу оригиналното движење и поврзаното движење во денови" #. module: stock #: model:ir.actions.act_window,help:stock.action_stock_journal_form @@ -1518,15 +1518,14 @@ msgstr "" "

\n" " Кликнете за да креирате нов дневник. \n" "

\n" -" Системот дневник на залиха ви овозможува да ја доделите " -"секоја операција\n" -" за залихите на одреден дневник според типот на операцијата " -"која треба да се \n" -" изврши од работникот/тимот кој треба да ја изврши " -"операцијата.\n" -" Примери за дневници за залиха може да бидат: контрола на " -"квалитет,\n" -" листи за требување, пакување, и.т.н.\n" +" Системот Дневник на залиха ви овозможува да доделите " +"посебен\n" +" дневник за секоја операција на залихата според типот на " +"операцијата \n" +" за извршување или работникот/тимот кој треба да ја изврши\n" +" операцијата. Примери за дневници за залиха може да бидат: " +"контрола\n" +" на квалитет, требувања, пакување и.т.н.\n" "

\n" " " @@ -1578,9 +1577,9 @@ msgid "" "Technical field used to record the product cost set by the user during a " "picking confirmation (when average price costing method is used)" msgstr "" -"Техничко поле кое се користи за да се зачуваат трошоците за производот " -"подесено од страна на корисникот за време на потврдувањето на требувањето " -"(кога се користи метод на просечна цена на чинење)" +"Техничкото поле се користи за запишување на цената на чинење на производот " +"која е подесена од страна на корисникот во текот на потврдувањето на " +"требувањето (кога се користи метод на средна цена на трошоци на чинење)" #. module: stock #: code:addons/stock/stock.py:1890 @@ -2172,7 +2171,7 @@ msgstr "_Достави" #: code:addons/stock/wizard/stock_inventory_merge.py:64 #, python-format msgid "Merging is only allowed on draft inventories." -msgstr "Спојување е дозволено единствено на нацрт пописи." +msgstr "Спојувањето е дозволено единствено на нацрт пописи." #. module: stock #: help:stock.picking.out,state:0 @@ -2359,10 +2358,10 @@ msgid "" "moves. Use this report when you want to analyse the different routes taken " "by your products and inventory management performance." msgstr "" -"Анализите на движењата ви овозможуваат полесно да ги означите и анализирате " -"движењата на залихата на вашата компанија. Употребете го овој извештај кога " +"Анализите на движења ви овозможуваат полесно да ги проверите и анализирате " +"движењата на залихата на вашата компанија. Користете го овој извештај кога " "сакате да ги анализирате различните рути кои се прават од вашите производи и " -"изведбата на управувањето со пописот." +"изведувањето на управувањето со залихата." #. module: stock #: constraint:stock.move:0 @@ -2578,8 +2577,8 @@ msgid "" "Move date: scheduled date until move is done, then date of actual move " "processing" msgstr "" -"Датум на движење: закажан датум се додека движењето е завршено, потоа датум " -"на процесирање на актуелно движење" +"Датум на движење: планиран датум пред да биде направено движењето, потоа " +"датумот на извршувањето на движењето" #. module: stock #: view:report.stock.inventory:0 @@ -2842,7 +2841,7 @@ msgstr "Движење" #: code:addons/stock/product.py:465 #, python-format msgid "P&L Qty" -msgstr "P&L Количина" +msgstr "P&L кол." #. module: stock #: model:ir.model,name:stock.model_stock_config_settings @@ -3028,10 +3027,10 @@ msgid "" "need this report in order to ensure that the stock of each product is " "controlled at least once a year." msgstr "" -"Прикажи ги последните пописи направени на вашите производи и сортирајте ги " -"истите според одредени критериуми за филтрирање. Доколку правите почести и " -"парцијални пописи, овој извештај ќе ви биде потребен за да се осигурате дека " -"залихата на секој производ е контролирана најмалку еднаш годишно." +"Прикажи ги последните пописи направени за вашите производи и сортирајте ги " +"лесно со специфични критериуми за филтрирање. Доколку правите чести и " +"делумни помиси, овој извештај ќе ви биде потребен за да се осигурате дека " +"залихата на секој производ е контролирана барем еднаш годишно." #. module: stock #: code:addons/stock/wizard/stock_invoice_onshipping.py:112 @@ -3387,7 +3386,7 @@ msgstr "" msgid "" "Allows to configure inventory valuations on products and product categories." msgstr "" -"Овозможува конфигурирање на проценката на залихите на производите и " +"Ви овозможува да конфигурирате валуацијата на пописите на производите и " "категориите на производи." #. module: stock @@ -3692,7 +3691,7 @@ msgstr "Доделени внатрешни белешки" #: code:addons/stock/stock.py:790 #, python-format msgid "You cannot process picking without stock moves." -msgstr "Не можете да извршите требување без движења на залихи." +msgstr "Не може да извршите требување без движења на залиха." #. module: stock #: field:stock.production.lot,move_ids:0 @@ -4244,16 +4243,16 @@ msgid "" "* Fixed Location: The chained location is taken from the next field: Chained " "Location if Fixed." msgstr "" -"Определува дали оваа локација е поврзана со друга локација, на пр. влезните " -"производи на оваа локација \n" -"треба да одат до поврзаната локација. Поврзаната локација е определена " -"според типот :\n" -"* Ниедна: Нема воопшто поврзување\n" -"* Купувач: Поврзаната локација ќе биде превземена од полето за локација на " -"купувачот на формуларот на Партнерот кој е назначен во листата за требување " -"од влезните производи.\n" -"* Фиксна локација: Поврзаната локација за превзема од наредното поле: " -"Поврзана локација доколку е фиксно." +"Определува дали оваа локација е поврзана со друга локација, на пр. секој " +"влезен производ во оваа локација\n" +"следно треба да оди во поврзаната локациоја. Поврзаната локација е " +"определена според типот:\n" +"*Ниедна: Нема воопшто поврзување\n" +"*Купувач: Поврзаната локација ќе биде превземена од полето за локацијата на " +"купувачот од формуларот за Партнерот кој е назначен на Листата за требување " +"на влезните производи.\n" +"*Фиксна локација: Поврзаната локација е земена од следното поле: Поврзана " +"локација доколку е фиксна." #. module: stock #: code:addons/stock/stock.py:1853 @@ -4409,10 +4408,10 @@ msgid "" "stock input account will be debited." msgstr "" "Доколку цената на чинење е зголемена, сметката за варијација на залиха ќе " -"биде задолжена и сметката за излез на залиха ќе има побарување со вредност= " -"(разлика на износ * достапна количина).\n" -"Доколку чената на чинење е намалена, сметката за варијација на залиха ќе има " -"побарување а сметката за влез на залиха ќе биде задолжена." +"биде задолжена и сметката за излез на залиха ќе има побарување со вредност = " +"(разлика на износ * расположлива количина).\n" +"Доколку цената на чинење е намалена, сметката за варијација на залиха ќе има " +"побарување и сметката за влез на залиха ќе биде задолжена." #. module: stock #: code:addons/stock/stock.py:2811 @@ -4435,7 +4434,7 @@ msgstr "" #. module: stock #: field:stock.location,chained_journal_id:0 msgid "Chaining Journal" -msgstr "Поврзуван дневник" +msgstr "Поврзување на дневник" #. module: stock #: code:addons/stock/stock.py:768 @@ -4459,11 +4458,11 @@ msgid "" "be done with care." msgstr "" "Ова е количината на производи од пописна гледна точка. За движења во " -"состојба 'завршено', ова е количината на производи кои се преместени. За " -"другите движења, ова е количината на производ кој се планира да биде " -"преместен. Намалувањето на оваа количина не генерира повлекување на налогот. " -"Менувањето на оваа количина на доделени движења влијае на резервацијата на " -"производот, и треба да биде внимателно извршено." +"состојба 'завршено', ова е количината ма производите кои се навистина " +"преместени. За други движења, ова е количината на производот кој се планира " +"да биде преместен. Намалувањето на оваа количина не генерира заостаната " +"обврска. Промената на оваа количина на доделени движења влијае на " +"резервацијата на производот, и треба да биде направена внимателно." #. module: stock #: help:stock.location,valuation_in_account_id:0 @@ -4547,9 +4546,9 @@ msgid "" "Technical field used to record the currency chosen by the user during a " "picking confirmation (when average price costing method is used)" msgstr "" -"Техничко поле кое се користи за да се зачува валутата избрана од страна на " -"корисникот за време на потврдувањето на требувањето (кога се користи метод " -"на средна цена на чинење)" +"Техничкото поле се користи за запишување на валутата која е избрана од " +"страна на корисникот во текот на потврдувањето на требувањето (кога се " +"користи метод на средна цена на трошоци на чинење)" #. module: stock #: help:stock.production.lot,name:0 @@ -4689,11 +4688,11 @@ msgid "" " When the picking it done the state is 'Done'. \n" "The state is 'Waiting' if the move is waiting for another one." msgstr "" -"Кога движењето на залихата е креирано, тоа е во состојба 'Нацрт'.\n" -" После тоа е подесено во состојба 'Потврдено'.\n" +"Кога се креира движење на залиха тоа е во состојба 'Нацрт'.\n" +" После тоа е подесено во состојба 'Потврдено'.\n" " Доколку залихата е достапна состојбата е подесена на 'Достапно'.\n" " Кога требувањето е направено состојбата е 'Завршено'. \n" -"Состојбата е 'Чекам' доколку движењето чека некое друго движење." +"Состојбата е 'Чекам' доколку движењето чека друго движење." #. module: stock #: view:stock.inventory.merge:0 @@ -4717,8 +4716,8 @@ msgid "" "Please define inventory valuation account on the product category: \"%s\" " "(id: %d)" msgstr "" -"Дефинирајте сметка за проценка на залиха на категорија производ: \"%s\" (id: " -"%d)" +"Дефинирајте сметка за вреднување на залиха на категоријата производ: \"%s\" " +"(id: %d)" #. module: stock #: model:ir.model,name:stock.model_stock_production_lot_revision @@ -5233,9 +5232,9 @@ msgid "" "would let a quantity of \"%s %s\" to ship and only roundings of \"%s %s\" is " "accepted by the uom." msgstr "" -"Заокружувањето на основната ЕМ не ви дозволува да испорачате \"%s %s\", како " -"што би дозволило испорачување на количина од \"%s %s\" и единствено " -"заокружувања од \"%s %s\" се прифатливи за оваа ЕМ." +"Заокружувањето на првичната ЕМ не ви дозволува да испорачате \"%s %s\", како " +"што ќе ви дозволи да испорачате количина од \"%s %s\" и единствено " +"заокружувања од \"%s %s\" се прифатени за таа ЕМ." #. module: stock #: help:stock.move,move_dest_id:0 diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index 04ba8bdebb7..52445f6bec9 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/i18n/sl.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-03-03 09:48+0000\n" +"PO-Revision-Date: 2013-04-01 12:30+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 06:03+0000\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: stock @@ -165,7 +165,7 @@ msgstr "Dobavnica" #. module: stock #: view:stock.inventory:0 msgid "e.g. Annual inventory" -msgstr "" +msgstr "npr. Letna inventura" #. module: stock #: report:lot.stock.overview:0 @@ -854,7 +854,7 @@ msgstr "Lokacija oskrbe" #. module: stock #: view:stock.picking:0 msgid "e.g. PO0032" -msgstr "" +msgstr "npr. PO0032" #. module: stock #: model:ir.actions.act_window,name:stock.action_location_tree @@ -2817,7 +2817,7 @@ msgstr "Prekliči inventuro" #. module: stock #: view:stock.move:0 msgid "Cancel Move" -msgstr "" +msgstr "Preklic" #. module: stock #: code:addons/stock/stock.py:2246 @@ -3371,7 +3371,7 @@ msgstr "Načrtovano" #. module: stock #: view:stock.picking:0 msgid "Add an internal note..." -msgstr "" +msgstr "Dodajanje zaznamka" #. module: stock #: model:ir.actions.act_window,name:stock.action_warehouse_form @@ -3803,7 +3803,7 @@ msgstr "Enota mere izdelka" #. module: stock #: view:stock.move:0 msgid "Put in current pack" -msgstr "" +msgstr "Dodajanje v trenutni paket" #. module: stock #: view:stock.inventory:0 diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index a44714f4b3b..d929b294bdc 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-03-28 19:39+0000\n" +"PO-Revision-Date: 2013-03-30 19:18+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-29 05:08+0000\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: stock @@ -2181,6 +2181,22 @@ msgid "" "\n" " * Cancelled: has been cancelled, can't be confirmed anymore" msgstr "" +"* Tasla: henüz onaylanmamış ve onaylanana kadar planlanmayacaktır\n" +"\n" +" * Başka bir İşlem Bekliyor: kendiliğinden hazır hale " +"gelmeden önce ilerlemek için başka bir hareket bekliyor (örn. Stoktan Al " +"akışları)\n" +"\n" +" * Hazırlanmasını Bekliyor: hala ürünlerin hazırlanmasını " +"bekliyor\n" +"\n" +" * Teslime Hazır: ürünler ayrılmıştır, yalnızca onaylanmayı " +"bekliyor.\n" +"\n" +" * Teslim edildi: işlenmiş olup bir daha değiştirilemez ve " +"iptal edilemez\n" +"\n" +" * İptal edildi: iptal edilmiş olup bir daha onaylanamaz" #. module: stock #: field:stock.incoterms,code:0 @@ -2217,6 +2233,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Bir ürün kabulü kayıtı için tıklayın. \n" +"

\n" +" Burada, hangi sipariş emri ya da toplama emrinden geldiğine\n" +" bakmaksızın ürünleri tek olarak alabilirsiniz. Beklediğiniz " +"tüm\n" +" ürünlerin listesini bulacaksınız. Bir sipariş aldığınızda, " +"tedarikçi\n" +" adına ya da satınalma emri referansına göre süzebilirsiniz.\n" +" Sonra, her satırın sağındaki düğmeye basarak aldığınız " +"ürünleri\n" +" onaylayabilirsiniz.\n" +"

\n" +" " #. module: stock #: view:stock.change.product.qty:0 @@ -3168,6 +3198,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Bir konum eklemek için tıklayın.\n" +"

\n" +" Bu şirketinizin depolarının ve konumlarının yapısıdır.\n" +" Bir konuma tıklayarak bu konumdaki ve alt konumlarındaki\n" +" ürünlerin ve stok düzeylerinin listesini alabilirsiniz.\n" +"

\n" +" " #. module: stock #: field:stock.location,stock_real:0 @@ -3198,6 +3236,8 @@ msgid "" "Total quantity after split exceeds the quantity to split for this product: " "\"%s\" (id: %d)." msgstr "" +"Paylaştırmadan sonraki toplam miktar bu ürünün paylaştırma miktarını " +"aşmaktadır: \"%s\" (id: %d)." #. module: stock #: view:stock.partial.move.line:0 @@ -3225,6 +3265,8 @@ msgid "" "When you select a serial number on product moves, you can get the upstream " "or downstream traceability of that product." msgstr "" +"Bir ürün hareketindeki bir seri numarasını seçtiğinizde, o ürünün aşağı ve " +"yukarı izlenebilirliğini alabilirsinz." #. module: stock #: code:addons/stock/wizard/stock_partial_picking.py:95 @@ -3301,6 +3343,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Bu ürün için bir kabul kaydı yapmak için tıklayın. \n" +"

\n" +" Burada, bu ürünle ilgili tüm kabullerin geçmişini " +"bulacaksınız,\n" +" aynı zamanda tedarikçilerinizden beklediğiniz ürünlerin " +"gelecek\n" +" kabullerini de bulacaksınız.\n" +"

\n" +" " #. module: stock #: help:stock.fill.inventory,recursive:0 @@ -3329,6 +3381,13 @@ msgid "" "needs, etc.\n" " This installs the module stock_location." msgstr "" +"İtekleme ve çekme envanter akışları sağlar. Bu özelliğin tipik " +"kullanımları:\n" +" ürün üretim zinciri yönetimi, ürüne göre varsayılan " +"konumların yönetimi,\n" +" işiniz gereksinimlerine göre depolarınız içinde rotalar " +"tanımlayın, vb.\n" +" Bu,stock_location modülünü kurar." #. module: stock #: view:stock.inventory:0 @@ -3471,7 +3530,7 @@ msgstr "Zamanlandı" #. module: stock #: view:stock.picking:0 msgid "Add an internal note..." -msgstr "" +msgstr "Bir iç not ekle..." #. module: stock #: model:ir.actions.act_window,name:stock.action_warehouse_form @@ -3495,6 +3554,8 @@ msgid "" "This stock location will be used, instead of the default one, as the source " "location for stock moves generated by procurements." msgstr "" +"Bu stok konumu varsayılanın yerine tedarik işlemi tarafından oluşturulan " +"stok hareketinin kaynak konumu olarak kullanılacaktır." #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_inventory_report @@ -3564,6 +3625,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Bir envanter başlatmak için tıklayın. \n" +"

\n" +" Periyodik Envanterler her konumdaki ürünleri saymak için\n" +" kullanılır. Bir ürünün mevcut stok düzeyini uygun hale\n" +" getirmek için senede bir kez ya da gereksinim duduğunuz\n" +" herhangi bir zamanda kullanabilirsiniz.\n" +"

\n" +" " #. module: stock #: view:stock.return.picking:0 @@ -4251,7 +4321,7 @@ msgstr "" #: code:addons/stock/stock.py:2811 #, python-format msgid "INV:" -msgstr "" +msgstr "ENV:" #. module: stock #: help:stock.config.settings,module_stock_invoice_directly:0 @@ -4622,7 +4692,7 @@ msgstr "Ocak" #. module: stock #: constraint:stock.move:0 msgid "You cannot move products from or to a location of the type view." -msgstr "" +msgstr "Görünüm türündeki bir konumdan ürün hareketi yapamazsınız." #. module: stock #: help:stock.config.settings,group_stock_production_lot:0 @@ -4637,7 +4707,7 @@ msgstr "" #, python-format msgid "" "No product in this location. Please select a location in the product form." -msgstr "" +msgstr "Bu konumda hiç ürün yok. Ürün kartından lütfen bir konum seçin." #. module: stock #: model:ir.actions.act_window,name:stock.act_product_stock_move_futur_open @@ -4724,7 +4794,7 @@ msgstr "Önek" #: view:stock.move:0 #: view:stock.move.split:0 msgid "Split in Serial Numbers" -msgstr "" +msgstr "Seri Numaralarına Göre ayır" #. module: stock #: help:product.template,property_stock_account_input:0 @@ -4823,7 +4893,7 @@ msgstr "Mayıs" #: code:addons/stock/product.py:110 #, python-format msgid "No difference between standard price and new price!" -msgstr "" +msgstr "Standart fiyat ve yeni fiyat arasında fark yok!" #. module: stock #: view:stock.picking.out:0 diff --git a/addons/stock_location/i18n/mk.po b/addons/stock_location/i18n/mk.po index 6f20d061522..58ab2138fb1 100644 --- a/addons/stock_location/i18n/mk.po +++ b/addons/stock_location/i18n/mk.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:39+0000\n" -"PO-Revision-Date: 2013-03-28 23:28+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:47+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:32+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -76,7 +76,7 @@ msgstr "" #. module: stock_location #: view:product.product:0 msgid "When receiving at location X, move to location Y" -msgstr "Кога примаш во локација X, премести во локација Y" +msgstr "Кога примате во локација X, преместете во локација Y" #. module: stock_location #: selection:product.pulled.flow,picking_type:0 @@ -147,7 +147,7 @@ msgstr "" #. module: stock_location #: model:stock.location,name:stock_location.location_dispatch_zone msgid "Dispatch Zone" -msgstr "Зона ан испраќање" +msgstr "Зона на испраќање" #. module: stock_location #: view:product.product:0 @@ -191,7 +191,7 @@ msgstr "Направи го залиха" #: code:addons/stock_location/procurement_pull.py:118 #, python-format msgid "Pulled from another location." -msgstr "Извлечено од друга локација" +msgstr "Повлечено од друга локација" #. module: stock_location #: field:product.pulled.flow,partner_address_id:0 @@ -213,7 +213,7 @@ msgstr "Број на денови за да се направи овој пре #: help:product.pulled.flow,name:0 msgid "This field will fill the packing Origin and the name of its moves" msgstr "" -"Ова поле ќе го пополни Потеклото на пакувањето о името на неговите движења" +"Ова поле ќе го пополни Потеклото на пакувањето и името на неговите движења" #. module: stock_location #: field:product.pulled.flow,type_proc:0 @@ -342,7 +342,7 @@ msgstr "Добивање на стоки" #. module: stock_location #: view:product.product:0 msgid "Fulfill needs on location X from location Y " -msgstr "Исполни барања на локациј X од локација Y " +msgstr "Исполни ги потребите на локација X од локација Y " #. module: stock_location #: view:product.product:0 diff --git a/addons/subscription/i18n/mk.po b/addons/subscription/i18n/mk.po index 25cbc185509..0a9bf56ec2e 100644 --- a/addons/subscription/i18n/mk.po +++ b/addons/subscription/i18n/mk.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:39+0000\n" -"PO-Revision-Date: 2013-03-28 23:28+0000\n" -"Last-Translator: Софче Димитријева \n" +"PO-Revision-Date: 2013-03-31 13:49+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ESKON-INZENERING\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:08+0000\n" +"X-Launchpad-Export-Date: 2013-04-01 05:32+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" @@ -232,7 +232,8 @@ msgstr "" #: help:subscription.document.fields,value:0 msgid "Default value is considered for field when new document is generated." msgstr "" -"Стандардна вредност е предвидена за ова поле кога се генерира нов документ." +"Стандардната вредност се зема во предвид за полето кога се генерира нов " +"документ." #. module: subscription #: selection:subscription.document.fields,value:0 diff --git a/addons/survey/i18n/mk.po b/addons/survey/i18n/mk.po index e80e5d1399d..ddeeba21a2b 100644 --- a/addons/survey/i18n/mk.po +++ b/addons/survey/i18n/mk.po @@ -8,20 +8,20 @@ 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-03-28 23:28+0000\n" +"PO-Revision-Date: 2013-03-29 09:07+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: ESKON-INZENERING\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-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: survey #: view:survey.response.line:0 msgid "Single Textboxes" -msgstr "Единечни текстуални рамки" +msgstr "Единечни текстуални полиња" #. module: survey #: code:addons/survey/survey.py:471 @@ -32,7 +32,7 @@ msgid "" "Please use a number that is smaller than %d." msgstr "" "Минималниот потребен одговор кој го внесовте е поголем од бројот на " -"одговорот. Употребете број кој е помал од %d." +"одговорот. Употребете број кој е помал од %d." #. module: survey #: view:survey.question.wiz:0 @@ -185,7 +185,7 @@ msgid "" "than the number of answer. Please use a " "number that is smaller than %d." msgstr "" -"Бараниот одговор кој го внесовте е поголем од бројот на одговорот. " +"#Потребниот одговор кој го внесовте е поголем од бројот на одговорот. " "Употребете број кој е помал од %d." #. module: survey @@ -211,8 +211,8 @@ msgid "" "your maximum is greater than the number of answer. " " Please use a number that is smaller than %d." msgstr "" -"Максималниот потребен одговор кој го внесовте за вашиот максимум е поголем " -"од бројот на одговорот. Употребете број кој е помал од %d." +"Максималниот потребен одговор кој го внесовте како ваш максимум е поголем од " +"бројот на одговорот. Употребете број кој е помал од %d." #. module: survey #: selection:survey.question,type:0 @@ -232,8 +232,8 @@ msgid "" "Maximum Required Answer you entered for your maximum is greater than the " "number of answer. Please use a number that is smaller than %d." msgstr "" -"Максималниот потребен одговор кој го внесовте за вашиот максимум е поголем " -"од бројот на одговорот. Употребете број кој е помал од %d." +"Максималниот потребен одговор кој го внесовте како ваш максимум е поголем од " +"бројот на одговорот. Употребете број кој е помал од %d." #. module: survey #: model:ir.model,name:survey.model_survey_question @@ -246,7 +246,7 @@ msgstr "Прашање од анкета" #. module: survey #: view:survey.question.column.heading:0 msgid "Use if question type is rating_scale" -msgstr "Употребете доколку типот на прашање е rating_scale" +msgstr "Употребете доколку типот на прашањето е rating-scale" #. module: survey #: field:survey.print,page_number:0 @@ -408,7 +408,7 @@ msgstr "Мои анкети" #. module: survey #: view:survey.response.line:0 msgid "Survey Answer Line" -msgstr "Линија за одговор во истражување" +msgstr "Ставка на одговор на анкета" #. module: survey #: code:addons/survey/wizard/survey_send_invitation.py:72 @@ -631,7 +631,8 @@ msgstr "Селектирај партнер" #: code:addons/survey/survey.py:527 #, python-format msgid "Maximum Required Answer is greater than Minimum Required Answer." -msgstr "Максималниот баран одговор е поголем од минималниот баран одговор." +msgstr "" +"Максималниот потребен одговор е поголем од Минималниот потребен одговор." #. module: survey #: model:ir.ui.menu,name:survey.menu_reporting @@ -673,7 +674,7 @@ msgstr "Дали менито Избор е невидливо?" #. module: survey #: field:survey.question,minimum_req_ans:0 msgid "Minimum Required Answer" -msgstr "Минимален баран одговор" +msgstr "Минимален потребен одговор" #. module: survey #: field:survey.question,req_error_msg:0 @@ -745,8 +746,9 @@ msgid "" "your maximum is greater than the number of answer. " " Please use a number that is smaller than %d." msgstr "" -"Максималниот потребен одговор кој го внесовте за ваш максимум е поголем од " -"бројот на одговорот. Употребете број кој е помал од %d." +"Максималниот потребен одговор кој го внесовте како ваш максимум е поголем од " +"бројот на одговорот. Употребете број кој е помал од " +"%d." #. module: survey #: view:survey:0 @@ -850,7 +852,7 @@ msgstr "#Одговор" #: field:survey.print,without_pagebreak:0 #: field:survey.print.answer,without_pagebreak:0 msgid "Print Without Page Breaks" -msgstr "Печати без прекин на страница" +msgstr "Печати без преломи на страници" #. module: survey #: view:survey:0 @@ -879,7 +881,7 @@ msgstr "Постави на еден доколку се бара само ед msgid "" "You must enter one or more column headings for question \"%s\" of page %s." msgstr "" -"Мора да внесете еден или неколку наслови на колоната за прашањето \"%s\" од " +"Мора да внесете еден или повеќе наслови на колоната за прашањето \"%s\" од " "страницата %s." #. module: survey @@ -906,7 +908,7 @@ msgstr "" #. module: survey #: field:survey.question,maximum_req_ans:0 msgid "Maximum Required Answer" -msgstr "МАксимален баран одговор" +msgstr "Максимален потребен одговор" #. module: survey #: field:survey.name.wiz,page_no:0 @@ -943,7 +945,7 @@ msgstr "Лог" #: view:survey.question:0 msgid "When the choices do not add up correctly, display this error message" msgstr "" -"Доколку изборите не се додадени правилно, прикажи ја оваа порака за грешка" +"Кога изборите не се додаваат правилно, прикажи ја оваа порака за грешка" #. module: survey #: model:ir.actions.act_window,help:survey.action_survey_form1 @@ -1046,7 +1048,7 @@ msgstr "Одговор" #. module: survey #: field:survey,max_response_limit:0 msgid "Maximum Answer Limit" -msgstr "Максимална граница на одговор" +msgstr "Граница на максимален одговор" #. module: survey #: model:ir.actions.act_window,name:survey.action_act_view_survey_send_invitation @@ -1113,7 +1115,7 @@ msgstr "Печати одговор" #. module: survey #: selection:survey.question,type:0 msgid "Multiple Textboxes" -msgstr "Повеќе текстуални рамки" +msgstr "Повеќекратни текстуални полиња" #. module: survey #: selection:survey.print,orientation:0 @@ -1134,7 +1136,7 @@ msgstr "Детали за анкетата" #. module: survey #: selection:survey.question,type:0 msgid "Multiple Textboxes With Different Type" -msgstr "Повеќе текстуални рамки со различен тип" +msgstr "Повеќекратни текстуални полиња со различен тип" #. module: survey #: view:survey.name.wiz:0 @@ -1203,7 +1205,7 @@ msgstr "Корисник" #. module: survey #: field:survey.name.wiz,transfer:0 msgid "Page Transfer" -msgstr "Трансфер на страница" +msgstr "Пренос на страница" #. module: survey #: selection:survey.response.line,state:0 @@ -1240,7 +1242,7 @@ msgstr "Барај одговори" #. module: survey #: model:ir.model,name:survey.model_survey_response_line msgid "Survey Response Line" -msgstr "Линија за одговор на истражување" +msgstr "Ставка на одговор на анкета" #. module: survey #: code:addons/survey/survey.py:169 @@ -1607,7 +1609,7 @@ msgid "" "than the number of answer. Please use a " "number that is smaller than %d." msgstr "" -"#Потребниот одговор кој го внесовте е поголем од бројот на одговорот. " +"#Потребниот одговор кој го внесовте е поголем од бројот на одговорот. " "Употребете број кој е помал од %d." #. module: survey @@ -1709,7 +1711,7 @@ msgid "" "use a number that is smaller than %d." msgstr "" "Минималниот потребен одговор кој го внесовте е поголем од бројот на " -"одговорот. Употребете број кој е помал од %d." +"одговорот. Употребете број кој е помал од %d." #. module: survey #: field:survey.answer,menu_choice:0 @@ -1728,7 +1730,7 @@ msgid "" "Maximum Required Answer is greater than " "Minimum Required Answer" msgstr "" -"Максималниот потребен одговор е поголем од Минималниот потребен одговор" +"Максималниот потребен одговор е поголем од Минималниот потребен одговор" #. module: survey #: view:survey.send.invitation.log:0 @@ -1754,7 +1756,7 @@ msgstr "Повеќекратен избор (Само еден одговор)" #. module: survey #: field:survey.answer,in_visible_answer_type:0 msgid "Is Answer Type Invisible??" -msgstr "Дали типот на прашање е невидлив?" +msgstr "Дали типот на одговор е невидлив??" #. module: survey #: model:ir.model,name:survey.model_survey_print_answer @@ -1823,7 +1825,7 @@ msgstr "Тип на прашање" #. module: survey #: field:survey.question,in_visible_answer_type:0 msgid "Is Answer Type Invisible?" -msgstr "Дали Типот Прашање е невидлив?" +msgstr "Дали типот на одговор е невидлив?" #. module: survey #: selection:survey.question,type:0 @@ -1846,7 +1848,7 @@ msgstr "Минимален датум" #. module: survey #: field:survey,response_user:0 msgid "Maximum Answer per User" -msgstr "МАксимален одговор по корисник" +msgstr "Максимален одговор по корисник" #. module: survey #: field:survey.name.wiz,page:0 diff --git a/addons/warning/i18n/mk.po b/addons/warning/i18n/mk.po index 158aac13d34..b785ec5f031 100644 --- a/addons/warning/i18n/mk.po +++ b/addons/warning/i18n/mk.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-03-29 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/web/i18n/ar.po b/addons/web/i18n/ar.po index 7622893f578..2dd09d3a1c7 100644 --- a/addons/web/i18n/ar.po +++ b/addons/web/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/bg.po b/addons/web/i18n/bg.po index e12f590d9a1..1ef8b7e08b3 100644 --- a/addons/web/i18n/bg.po +++ b/addons/web/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/bn.po b/addons/web/i18n/bn.po index 0abac697fd2..3de034776e7 100644 --- a/addons/web/i18n/bn.po +++ b/addons/web/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/bs.po b/addons/web/i18n/bs.po index edddfb6b8a9..9fb1a3059fd 100644 --- a/addons/web/i18n/bs.po +++ b/addons/web/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ca.po b/addons/web/i18n/ca.po index f6abe596bf6..bf2aa6070f3 100644 --- a/addons/web/i18n/ca.po +++ b/addons/web/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/cs.po b/addons/web/i18n/cs.po index ee5b28e3e9f..9d68336bc53 100644 --- a/addons/web/i18n/cs.po +++ b/addons/web/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Language: Czech\n" #. module: web diff --git a/addons/web/i18n/da.po b/addons/web/i18n/da.po index 2ab088d67d6..eb0231088d6 100644 --- a/addons/web/i18n/da.po +++ b/addons/web/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/de.po b/addons/web/i18n/de.po index 1dcf9bcdbda..b600b84240b 100644 --- a/addons/web/i18n/de.po +++ b/addons/web/i18n/de.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-21 05:03+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/en_AU.po b/addons/web/i18n/en_AU.po index d9553fa412c..1c8fd840c45 100644 --- a/addons/web/i18n/en_AU.po +++ b/addons/web/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/en_GB.po b/addons/web/i18n/en_GB.po index f564279aac1..bc7a3cf7fe6 100644 --- a/addons/web/i18n/en_GB.po +++ b/addons/web/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es.po b/addons/web/i18n/es.po index c38372a7051..3d2cc5e6552 100644 --- a/addons/web/i18n/es.po +++ b/addons/web/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_CL.po b/addons/web/i18n/es_CL.po index 10753a00dc3..083fe87f3d3 100644 --- a/addons/web/i18n/es_CL.po +++ b/addons/web/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_CR.po b/addons/web/i18n/es_CR.po index e4eadce4784..0a6a11a1f01 100644 --- a/addons/web/i18n/es_CR.po +++ b/addons/web/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_DO.po b/addons/web/i18n/es_DO.po index 0d5847a26f2..0815c7511b5 100644 --- a/addons/web/i18n/es_DO.po +++ b/addons/web/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_EC.po b/addons/web/i18n/es_EC.po index fa1c04c7785..16ed983b2ee 100644 --- a/addons/web/i18n/es_EC.po +++ b/addons/web/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_MX.po b/addons/web/i18n/es_MX.po index 1db499f250d..b935201e598 100644 --- a/addons/web/i18n/es_MX.po +++ b/addons/web/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/et.po b/addons/web/i18n/et.po index 554e0dc0106..604ca8af8bc 100644 --- a/addons/web/i18n/et.po +++ b/addons/web/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/eu.po b/addons/web/i18n/eu.po index de308f5e891..78c898fa4f0 100644 --- a/addons/web/i18n/eu.po +++ b/addons/web/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/fa.po b/addons/web/i18n/fa.po index 73df7cbb9bb..9dba1fee71a 100644 --- a/addons/web/i18n/fa.po +++ b/addons/web/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/fi.po b/addons/web/i18n/fi.po index 7b93fcf3162..bb446ec626e 100644 --- a/addons/web/i18n/fi.po +++ b/addons/web/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/fr.po b/addons/web/i18n/fr.po index f0806d3659a..92eb9639d3e 100644 --- a/addons/web/i18n/fr.po +++ b/addons/web/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/fr_CA.po b/addons/web/i18n/fr_CA.po index a3c831997b6..4eb1620d264 100644 --- a/addons/web/i18n/fr_CA.po +++ b/addons/web/i18n/fr_CA.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/gl.po b/addons/web/i18n/gl.po index 9e49d551375..b6f5a26c668 100644 --- a/addons/web/i18n/gl.po +++ b/addons/web/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/gu.po b/addons/web/i18n/gu.po index 4ebfbcca7d6..36272880a50 100644 --- a/addons/web/i18n/gu.po +++ b/addons/web/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/hi.po b/addons/web/i18n/hi.po index ef497224ad2..1e5e8677b3a 100644 --- a/addons/web/i18n/hi.po +++ b/addons/web/i18n/hi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/hr.po b/addons/web/i18n/hr.po index b4159c00dcd..16979964e67 100644 --- a/addons/web/i18n/hr.po +++ b/addons/web/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/hu.po b/addons/web/i18n/hu.po index b741a890a23..e45375e0b26 100644 --- a/addons/web/i18n/hu.po +++ b/addons/web/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/id.po b/addons/web/i18n/id.po index b4be485009e..0d3c539d140 100644 --- a/addons/web/i18n/id.po +++ b/addons/web/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/it.po b/addons/web/i18n/it.po index 4e8ad2a1759..e9f9cdc4466 100644 --- a/addons/web/i18n/it.po +++ b/addons/web/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ja.po b/addons/web/i18n/ja.po index f53a74b062f..7680935d161 100644 --- a/addons/web/i18n/ja.po +++ b/addons/web/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ka.po b/addons/web/i18n/ka.po index bb85d959523..90ad8d22b36 100644 --- a/addons/web/i18n/ka.po +++ b/addons/web/i18n/ka.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ko.po b/addons/web/i18n/ko.po index 1f933eb55c5..6206fd699a0 100644 --- a/addons/web/i18n/ko.po +++ b/addons/web/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/lo.po b/addons/web/i18n/lo.po index 407da7b02d4..29d47f3b990 100644 --- a/addons/web/i18n/lo.po +++ b/addons/web/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/lt.po b/addons/web/i18n/lt.po index 18363fe4d3f..99e9b45eec8 100644 --- a/addons/web/i18n/lt.po +++ b/addons/web/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/lv.po b/addons/web/i18n/lv.po index 3143e94fd7d..85b34e343ad 100644 --- a/addons/web/i18n/lv.po +++ b/addons/web/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-11 05:43+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/mk.po b/addons/web/i18n/mk.po index bc6e8e0dbe5..39c1095c62e 100644 --- a/addons/web/i18n/mk.po +++ b/addons/web/i18n/mk.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: 2013-03-09 11:53+0000\n" +"PO-Revision-Date: 2013-03-29 09:35+0000\n" "Last-Translator: Софче Димитријева \n" "Language-Team: Macedonian \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-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web @@ -1411,6 +1411,8 @@ msgid "" "For use if CSV files have titles on multiple lines, skips more than a single " "line during import" msgstr "" +"За употреба доколку CSV фајловите имаат наслови на повеќе ставки, " +"прескокнува повеќе од една ставка во текот на увезувањето" #. module: web #. openerp-web @@ -1476,7 +1478,7 @@ msgstr "е еднакво на" #: code:addons/web/static/src/js/views.js:1556 #, python-format msgid "Could not serialize XML" -msgstr "" +msgstr "Не може да го серијализира XML" #. module: web #. openerp-web diff --git a/addons/web/i18n/mn.po b/addons/web/i18n/mn.po index b70dc0de6d2..363decdf993 100644 --- a/addons/web/i18n/mn.po +++ b/addons/web/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/nb.po b/addons/web/i18n/nb.po index ef91714a1d2..a0bf27fc4c2 100644 --- a/addons/web/i18n/nb.po +++ b/addons/web/i18n/nb.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: FULL NAME \n" +"PO-Revision-Date: 2013-03-30 19:53+0000\n" +"Last-Translator: Jakob Aresvik \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-08 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web @@ -36,14 +36,14 @@ msgstr "" #: code:addons/web/static/src/js/coresetup.js:616 #, python-format msgid "Still loading...
Please be patient." -msgstr "" +msgstr "Laster fortsatt...
Vennligst vent." #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1991 #, python-format msgid "%(field)s %(operator)s \"%(value)s\"" -msgstr "" +msgstr "%(field)s %(operator)s \"%(value)s\"" #. module: web #. openerp-web @@ -59,7 +59,7 @@ msgstr "mindre eller lik enn" #: code:addons/web/static/src/js/chrome.js:408 #, python-format msgid "Please enter your previous password" -msgstr "" +msgstr "Skriv inn ditt gamle passord" #. module: web #. openerp-web @@ -68,7 +68,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:282 #, python-format msgid "Master password:" -msgstr "" +msgstr "Hovedpassord" #. module: web #. openerp-web @@ -82,7 +82,7 @@ msgstr "" #: code:addons/web/static/src/js/chrome.js:507 #, python-format msgid "Do you really want to delete the database: %s ?" -msgstr "" +msgstr "Vil du virkelig slette databaen: %s ?" #. module: web #. openerp-web @@ -96,21 +96,21 @@ msgstr "" #: code:addons/web/static/src/js/chrome.js:553 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Ingen tilgang" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:5220 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Feil ved opplasting" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:589 #, python-format msgid "about an hour ago" -msgstr "" +msgstr "omtrent en time siden" #. module: web #. openerp-web @@ -134,7 +134,7 @@ msgstr "" #: code:addons/web/static/src/js/dates.js:53 #, python-format msgid "'%s' is not a valid date" -msgstr "" +msgstr "«%s» er ikke en gyldig dato" #. module: web #. openerp-web @@ -148,20 +148,20 @@ msgstr "Her er en forhåndsvisning av filen vi ikke kunne importere:" #: code:addons/web/static/src/js/coresetup.js:587 #, python-format msgid "about a minute ago" -msgstr "" +msgstr "omtrent ett minutt siden" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1306 #, python-format msgid "File" -msgstr "" +msgstr "Fil" #. module: web #: code:addons/web/controllers/main.py:822 #, python-format msgid "You cannot leave any password empty." -msgstr "" +msgstr "Du kan ha tomme passord" #. module: web #. openerp-web @@ -177,7 +177,7 @@ msgstr "Ugyldig brukernavn eller passord" #: code:addons/web/static/src/xml/base.xml:260 #, python-format msgid "Master Password:" -msgstr "" +msgstr "Hovedpassord:" #. module: web #. openerp-web @@ -192,7 +192,7 @@ msgstr "Velg" #: code:addons/web/static/src/js/chrome.js:565 #, python-format msgid "Database restored successfully" -msgstr "" +msgstr "Database gjenopprettet" #. module: web #. openerp-web @@ -213,7 +213,7 @@ msgstr "Sist endret dato:" #: 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 søkefelt kan for øyeblikket ikke håndtere flere standardverdier" #. module: web #. openerp-web @@ -227,7 +227,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:1606 #, python-format msgid "Share with all users" -msgstr "" +msgstr "Del med alle brukere" #. module: web #. openerp-web @@ -249,14 +249,14 @@ msgstr "" #: code:addons/web/static/src/js/formats.js:286 #, python-format msgid "'%s' is not a correct time" -msgstr "" +msgstr "'%s' er ikke korrekt tidsformat" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1393 #, python-format msgid "not a valid number" -msgstr "" +msgstr "ikke et gyldig tall" #. module: web #. openerp-web @@ -270,7 +270,7 @@ msgstr "Nytt passord:" #: code:addons/web/static/src/xml/base.xml:613 #, python-format msgid "Attachment :" -msgstr "" +msgstr "Vedlegg :" #. module: web #. openerp-web @@ -298,14 +298,14 @@ msgstr "" #: code:addons/web/static/src/js/coresetup.js:593 #, python-format msgid "about a month ago" -msgstr "" +msgstr "omtrent en måned siden" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1598 #, python-format msgid "Custom Filters" -msgstr "" +msgstr "Egendefinerte filtre" #. module: web #. openerp-web @@ -326,7 +326,7 @@ msgstr "OpenERP SA Company" #: code:addons/web/static/src/js/search.js:1655 #, python-format msgid "Custom Filter" -msgstr "" +msgstr "Egendefinert filter" #. module: web #. openerp-web @@ -348,14 +348,14 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:336 #, python-format msgid "Change Password" -msgstr "Endre passord" +msgstr "Bytt passord" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:3445 #, python-format msgid "View type '%s' is not supported in One2Many." -msgstr "" +msgstr "visningstype '%s' er ikke støttet i en-til-mange." #. module: web #. openerp-web @@ -391,27 +391,27 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:985 #, python-format msgid "Selection:" -msgstr "" +msgstr "Utvalg:" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:867 #, python-format msgid "The following fields are invalid:" -msgstr "" +msgstr "Følgende felt er ugyldige:" #. module: web #: code:addons/web/controllers/main.py:843 #, python-format msgid "Languages" -msgstr "" +msgstr "Språk" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1279 #, python-format msgid "...Upload in progress..." -msgstr "" +msgstr "...Opplasting pågår..." #. module: web #. openerp-web @@ -425,14 +425,14 @@ msgstr "Importer" #: code:addons/web/static/src/js/chrome.js:559 #, python-format msgid "Could not restore the database" -msgstr "" +msgstr "Kunne ikke gjenopprette databasen" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:4888 #, python-format msgid "File upload" -msgstr "" +msgstr "Last opp fil" #. module: web #. openerp-web @@ -447,7 +447,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:1474 #, python-format msgid "Manage Filters" -msgstr "Administrer filter" +msgstr "Administrer filtre" #. module: web #. openerp-web @@ -468,7 +468,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:416 #, python-format msgid "Activate the developer mode" -msgstr "" +msgstr "Aktiver utviklermodus" #. module: web #. openerp-web @@ -489,21 +489,21 @@ msgstr "" #: code:addons/web/static/src/js/view_list.js:702 #, python-format msgid "You must select at least one record." -msgstr "" +msgstr "Du må velge minst en oppføring" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:538 #, python-format msgid "View Log (perm_read)" -msgstr "View Log (perm_read)" +msgstr "Vis Logg (perm_read)" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1057 #, python-format msgid "Set Default" -msgstr "Sett som standard" +msgstr "Sett som Standard" #. module: web #. openerp-web @@ -517,14 +517,14 @@ msgstr "Relasjon:" #: code:addons/web/static/src/js/coresetup.js:586 #, python-format msgid "less than a minute ago" -msgstr "" +msgstr "Mindre enn et minutt siden" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:854 #, python-format msgid "Condition:" -msgstr "" +msgstr "Tilstand:" #. module: web #. openerp-web @@ -538,7 +538,7 @@ msgstr "" #: code:addons/web/static/src/js/formats.js:246 #, python-format msgid "'%s' is not a correct float" -msgstr "" +msgstr "'%s' er ikke et korrekt flyttall" #. module: web #. openerp-web @@ -552,14 +552,14 @@ msgstr "Gjenopprettet" #: code:addons/web/static/src/js/view_list.js:409 #, python-format msgid "%d-%d of %d" -msgstr "" +msgstr "%d-%d av %d" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:2893 #, python-format msgid "Create and Edit..." -msgstr "" +msgstr "Lag og rediger..." #. module: web #. openerp-web @@ -587,14 +587,14 @@ msgstr "er ikke" #: code:addons/web/static/src/xml/base.xml:553 #, python-format msgid "Print Workflow" -msgstr "" +msgstr "Skriv ut arbeidsflyt" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:411 #, python-format msgid "Please confirm your new password" -msgstr "" +msgstr "Vennligst bekreft ditt nye passord" #. module: web #. openerp-web @@ -647,14 +647,14 @@ msgstr "" #: code:addons/web/static/src/js/search.js:2137 #, python-format msgid "is set" -msgstr "" +msgstr "er satt" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:908 #, python-format msgid "Setting 'id' attribute on existing record %s" -msgstr "" +msgstr "Setter 'id' attributt på eksisterende oppføring %s" #. module: web #. openerp-web @@ -678,7 +678,7 @@ msgstr "større enn" #: code:addons/web/static/src/xml/base.xml:549 #, python-format msgid "View" -msgstr "" +msgstr "Visning" #. module: web #. openerp-web @@ -699,7 +699,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:460 #, python-format msgid "Your user's preference timezone does not match your browser timezone:" -msgstr "" +msgstr "Din brukers tidssone er ikke i samsvar med nettleserens tidssone:" #. module: web #. openerp-web @@ -727,28 +727,28 @@ msgstr "Gammelt passord:" #: code:addons/web/static/src/js/formats.js:113 #, python-format msgid "Bytes,Kb,Mb,Gb,Tb,Pb,Eb,Zb,Yb" -msgstr "" +msgstr "Bytes,Kb,Mb,Gb,Tb,Pb,Eb,Zb,Yb" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:497 #, python-format msgid "The database has been duplicated." -msgstr "" +msgstr "Databasen har blitt duplisert." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1623 #, python-format msgid "Apply" -msgstr "" +msgstr "Bruk" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1395 #, python-format msgid "Save & New" -msgstr "Lagre & Ny" +msgstr "Lagre & Opprett ny" #. module: web #. openerp-web @@ -763,7 +763,7 @@ msgstr "Lagre som" #: code:addons/web/doc/module/static/src/xml/web_example.xml:3 #, python-format msgid "00:00:00" -msgstr "" +msgstr "00:00:00" #. module: web #. openerp-web @@ -777,14 +777,14 @@ msgstr "" #: code:addons/web/static/src/js/coresetup.js:591 #, python-format msgid "a day ago" -msgstr "" +msgstr "en dag siden" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1787 #, python-format msgid "Does your file have titles?" -msgstr "" +msgstr "Har din fil titler?" #. module: web #. openerp-web @@ -802,6 +802,9 @@ msgid "" "\n" "Are you sure you want to leave this page ?" msgstr "" +"Advarsel, endringene vil bli forkastet.\n" +"\n" +"Er du sikker på at du vil forlate denne siden?" #. module: web #. openerp-web @@ -822,21 +825,21 @@ msgstr "Teknisk oversettelse" #: code:addons/web/static/src/xml/base.xml:1795 #, python-format msgid "Delimiter:" -msgstr "" +msgstr "Skilletegn:" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:465 #, python-format msgid "Browser's timezone" -msgstr "" +msgstr "Nettleserens tidssone" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1603 #, python-format msgid "Filter name" -msgstr "" +msgstr "Filternavn" #. module: web #. openerp-web @@ -874,14 +877,14 @@ msgstr "OpenERP.com" #: code:addons/web/static/src/js/view_form.js:2330 #, python-format msgid "Can't send email to invalid e-mail address" -msgstr "" +msgstr "Kan ikke sende epost til ugyldig epost-adresse" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:639 #, python-format msgid "Add..." -msgstr "" +msgstr "Legg til …" #. module: web #. openerp-web @@ -903,28 +906,28 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:185 #, python-format msgid "Drop Database" -msgstr "" +msgstr "Slett Database" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:469 #, python-format msgid "Click here to change your user's timezone." -msgstr "" +msgstr "Klikk hr for å endre brukerens tidssone." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:969 #, python-format msgid "Modifiers:" -msgstr "" +msgstr "Modifikatorer:" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:630 #, python-format msgid "Delete this attachment" -msgstr "" +msgstr "Slett vedlegget" #. module: web #. openerp-web @@ -942,7 +945,7 @@ msgstr "Lagre" #: code:addons/web/static/src/xml/base.xml:352 #, python-format msgid "More" -msgstr "" +msgstr "(mer...)" #. module: web #. openerp-web @@ -956,14 +959,14 @@ msgstr "Brukernavn" #: code:addons/web/static/src/js/chrome.js:497 #, python-format msgid "Duplicating database" -msgstr "" +msgstr "Dupliserer database" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:579 #, python-format msgid "Password has been changed successfully" -msgstr "" +msgstr "Passordet er endret" #. module: web #. openerp-web @@ -977,7 +980,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:536 #, python-format msgid "Debug View#" -msgstr "Debug View#" +msgstr "Feilsøk Visning#" #. module: web #. openerp-web @@ -1025,7 +1028,7 @@ msgstr "Lagre feltliste" #: code:addons/web/doc/module/static/src/xml/web_example.xml:5 #, python-format msgid "Start" -msgstr "" +msgstr "Start" #. module: web #. openerp-web @@ -1046,28 +1049,28 @@ msgstr "Opprettet dato:" #: code:addons/web/controllers/main.py:831 #, python-format msgid "Error, password not changed !" -msgstr "" +msgstr "Feil, passordet er ikke endret !" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:4887 #, python-format msgid "The selected file exceed the maximum file size of %s." -msgstr "" +msgstr "Den valgte filen har overskredet maks fil-størrelse på %s." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:635 #, python-format msgid "/web/binary/upload_attachment" -msgstr "" +msgstr "/web/binary/upload_attachment" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:579 #, python-format msgid "Changed Password" -msgstr "" +msgstr "Endret passord" #. module: web #. openerp-web @@ -1093,7 +1096,7 @@ msgstr "Åpne: " #: code:addons/web/static/src/xml/base.xml:309 #, python-format msgid "Backup" -msgstr "Sikkerhetskopi" +msgstr "Sikkerhetskopier" #. module: web #. openerp-web @@ -1101,14 +1104,14 @@ msgstr "Sikkerhetskopi" #: code:addons/web/static/src/js/dates.js:80 #, python-format msgid "'%s' is not a valid time" -msgstr "" +msgstr "«%s» er ikke et gyldig klokkeslett" #. module: web #. openerp-web #: code:addons/web/static/src/js/formats.js:278 #, python-format msgid "'%s' is not a correct date" -msgstr "" +msgstr "'%s' er ikke en gyldig dato" #. module: web #. openerp-web @@ -1122,14 +1125,14 @@ msgstr "" #: code:addons/web/static/src/js/coresetup.js:592 #, python-format msgid "%d days ago" -msgstr "" +msgstr "%d dager siden" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1481 #, python-format msgid "(Any existing filter with the same name will be replaced)" -msgstr "" +msgstr "(Eksisterende filter med samme navn vil bli erstattet)" #. module: web #. openerp-web @@ -1147,7 +1150,7 @@ msgstr "Avbryt" #: code:addons/web/static/src/xml/base.xml:9 #, python-format msgid "Loading..." -msgstr "Laster …" +msgstr "Laster…" #. module: web #. openerp-web @@ -1176,7 +1179,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:426 #, python-format msgid "%d / %d" -msgstr "" +msgstr "%d / %d" #. module: web #. openerp-web @@ -1206,7 +1209,7 @@ msgstr "" #: code:addons/web/static/src/js/coresetup.js:594 #, python-format msgid "%d months ago" -msgstr "" +msgstr "%d måneder siden" #. module: web #. openerp-web @@ -1214,20 +1217,20 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:308 #, python-format msgid "Drop" -msgstr "" +msgstr "Slett" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1472 #, python-format msgid "Add Advanced Filter" -msgstr "" +msgstr "Legg til avansert filter" #. module: web #: code:addons/web/controllers/main.py:824 #, python-format msgid "The new password and its confirmation must be identical." -msgstr "" +msgstr "Det nye passordet og bekreftelsen må være identisk." #. module: web #. openerp-web @@ -1235,14 +1238,14 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:248 #, python-format msgid "Restore Database" -msgstr "" +msgstr "Gjenopprett database" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:663 #, python-format msgid "Login" -msgstr "" +msgstr "Logg inn" #. module: web #. openerp-web @@ -1271,21 +1274,21 @@ msgstr "Eksporttype:" #: code:addons/web/static/src/xml/base.xml:409 #, python-format msgid "Log out" -msgstr "" +msgstr "Logg ut" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1171 #, python-format msgid "Group by: %s" -msgstr "" +msgstr "Grupper etter: %s" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:153 #, python-format msgid "No data provided." -msgstr "" +msgstr "Ingen data tilgjengelig." #. module: web #. openerp-web @@ -1314,7 +1317,7 @@ msgstr "Du må minst velge en post" #: code:addons/web/static/src/js/coresetup.js:617 #, python-format msgid "Don't leave yet,
it's still loading..." -msgstr "" +msgstr "Ikke gå enda,
det laster fortsatt..." #. module: web #. openerp-web @@ -1328,7 +1331,7 @@ msgstr "Ugyldig søk" #: code:addons/web/static/src/js/view_list.js:995 #, python-format msgid "Could not find id in dataset" -msgstr "" +msgstr "Fant ikke id i datasettet" #. module: web #. openerp-web @@ -1342,7 +1345,7 @@ msgstr "Fjern alt" #: code:addons/web/static/src/xml/base.xml:1349 #, python-format msgid "Method:" -msgstr "" +msgstr "Metode:" #. module: web #. openerp-web @@ -1356,28 +1359,28 @@ msgstr "%(page)d/%(page_count)d" #: code:addons/web/static/src/js/chrome.js:412 #, python-format msgid "The confirmation does not match the password" -msgstr "" +msgstr "Bekreftelsen samsvarer ikke med passordet" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:444 #, python-format msgid "Edit Company data" -msgstr "" +msgstr "Rediger selskapets data" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:4923 #, python-format msgid "Save As..." -msgstr "" +msgstr "Lagre som..." #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:5044 #, python-format msgid "Could not display the selected image." -msgstr "" +msgstr "Fant ikke det valgte bildet." #. module: web #. openerp-web @@ -1400,14 +1403,14 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:396 #, python-format msgid "99+" -msgstr "" +msgstr "99+" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:408 #, python-format msgid "Help" -msgstr "" +msgstr "Hjelp" #. module: web #. openerp-web @@ -1421,28 +1424,28 @@ msgstr "Importer en .CSV fil" #: code:addons/web/static/src/js/chrome.js:663 #, python-format msgid "No database selected !" -msgstr "" +msgstr "Ingen database valgt !" #. module: web #. openerp-web #: code:addons/web/static/src/js/formats.js:184 #, python-format msgid "(%d records)" -msgstr "" +msgstr "(%d poster)" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:973 #, python-format msgid "Change default:" -msgstr "" +msgstr "Endre standard:" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:171 #, python-format msgid "Original database name:" -msgstr "" +msgstr "Opprinnelige database navn:" #. module: web #. openerp-web @@ -1459,28 +1462,28 @@ msgstr "er lik som" #: code:addons/web/static/src/js/views.js:1556 #, python-format msgid "Could not serialize XML" -msgstr "" +msgstr "Kunne ikke serialisere XML" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1617 #, python-format msgid "Advanced Search" -msgstr "" +msgstr "Avansert søk" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:290 #, python-format msgid "Confirm new master password:" -msgstr "" +msgstr "Bekreft nytt hovedpassord:" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:620 #, python-format msgid "Maybe you should consider reloading the application by pressing F5..." -msgstr "" +msgstr "Du bør antageligvis vurdere å laste siden på nytt ved å trykke F5..." #. module: web #. openerp-web @@ -1513,14 +1516,14 @@ msgstr "Alternativer for import" #: code:addons/web/static/src/js/view_form.js:2961 #, python-format msgid "Add %s" -msgstr "" +msgstr "Legg til %s" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:145 #, python-format msgid "Admin password:" -msgstr "Administrator passord" +msgstr "Administrator passord:" #. module: web #. openerp-web @@ -1538,6 +1541,8 @@ msgstr "Lukk" msgid "" "You may not believe it,
but the application is actually loading..." msgstr "" +"Du tviler antageligvis,
men applikasjonen holder faktisk på med å " +"laste..." #. module: web #. openerp-web @@ -1551,7 +1556,7 @@ msgstr "CSV fil:" #: code:addons/web/static/src/js/search.js:1871 #, python-format msgid "Advanced" -msgstr "" +msgstr "Avansert" #. module: web #. openerp-web @@ -1564,14 +1569,14 @@ msgstr "Tre" #: code:addons/web/controllers/main.py:746 #, python-format msgid "Could not drop database !" -msgstr "" +msgstr "Kunne ikke slette database !" #. module: web #. openerp-web #: code:addons/web/static/src/js/formats.js:231 #, python-format msgid "'%s' is not a correct integer" -msgstr "" +msgstr "'%s' er et ugyldig heltall" #. module: web #. openerp-web @@ -1585,28 +1590,28 @@ msgstr "Alle brukere" #: code:addons/web/static/src/js/view_form.js:1654 #, python-format msgid "Unknown field %s in domain %s" -msgstr "" +msgstr "Ukjent felt %s i domene %s" #. module: web #. openerp-web #: code:addons/web/static/src/js/views.js:1521 #, python-format msgid "Node [%s] is not a JSONified XML node" -msgstr "" +msgstr "Node [%s] er ikke en JSONifisert XML node" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1435 #, python-format msgid "Advanced Search..." -msgstr "" +msgstr "Avansert søk" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:515 #, python-format msgid "Dropping database" -msgstr "" +msgstr "Sletter database" #. module: web #. openerp-web @@ -1614,7 +1619,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:448 #, python-format msgid "Powered by" -msgstr "" +msgstr "Drevet av" #. module: web #. openerp-web @@ -1629,7 +1634,7 @@ msgstr "Ja" #: code:addons/web/static/src/js/view_form.js:4908 #, python-format msgid "There was a problem while uploading your file" -msgstr "" +msgstr "Det oppstod et problem under opplasting av filen" #. module: web #. openerp-web @@ -1650,28 +1655,28 @@ msgstr "Størrelse:" #: code:addons/web/static/src/xml/base.xml:1822 #, python-format msgid "--- Don't Import ---" -msgstr "" +msgstr "--- Ikke importer ---" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1677 #, python-format msgid "Import-Compatible Export" -msgstr "" +msgstr "Import-kompatibel eksport" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:596 #, python-format msgid "%d years ago" -msgstr "" +msgstr "%d år siden" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:1055 #, python-format msgid "Unknown m2m command %s" -msgstr "" +msgstr "Ukjent m2m kommando %s" #. module: web #. openerp-web @@ -1687,35 +1692,35 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:264 #, python-format msgid "New database name:" -msgstr "Navn på ny database:" +msgstr "Nytt databasenavn:" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:409 #, python-format msgid "Please enter your new password" -msgstr "" +msgstr "Skriv inn ditt nye passord" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:4923 #, python-format msgid "The field is empty, there's nothing to save !" -msgstr "" +msgstr "Feltet er tomt, det er ingenting å lagre !" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:548 #, python-format msgid "Manage Views" -msgstr "" +msgstr "Administrere visninger" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1799 #, python-format msgid "Encoding:" -msgstr "" +msgstr "Koding:" #. module: web #. openerp-web @@ -1729,7 +1734,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:2883 #, python-format msgid "Create \"%s\"" -msgstr "" +msgstr "Opprett \"%s\"" #. module: web #. openerp-web @@ -1743,7 +1748,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:421 #, python-format msgid "Copyright © 2004-TODAY OpenERP SA. All Rights Reserved." -msgstr "Copyright © 2004-TODAY OpenERP SA. All Rights Reserved." +msgstr "Opphavsrett © 2004-I DAG OpenERP SA. Med enerett." #. module: web #. openerp-web @@ -1764,7 +1769,7 @@ msgstr "Tilgjengelige felt" #: code:addons/web/static/src/xml/base.xml:1833 #, python-format msgid "The import failed due to:" -msgstr "Importen feilet av følgende årsaker:" +msgstr "Importen mislyktes på grunn av:" #. module: web #. openerp-web @@ -1772,7 +1777,7 @@ msgstr "Importen feilet av følgende årsaker:" #: code:addons/web/static/src/xml/base.xml:542 #, python-format msgid "JS Tests" -msgstr "" +msgstr "JS Tester" #. module: web #. openerp-web @@ -1786,7 +1791,7 @@ msgstr "Lagre som:" #: code:addons/web/static/src/js/search.js:1007 #, python-format msgid "Filter on: %s" -msgstr "" +msgstr "Filtrer på: %s" #. module: web #. openerp-web @@ -1808,21 +1813,21 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:330 #, python-format msgid "Confirm New Password:" -msgstr "" +msgstr "Bekreft nytt passord:" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:590 #, python-format msgid "Do you really want to remove these records?" -msgstr "" +msgstr "Ønsker du virkelig å slette disse oppføringene?" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:961 #, python-format msgid "Context:" -msgstr "" +msgstr "Kontekst:" #. module: web #. openerp-web @@ -1866,7 +1871,7 @@ msgstr "OpenERP" #: code:addons/web/doc/module/static/src/xml/web_example.xml:8 #, python-format msgid "Stop" -msgstr "" +msgstr "Stopp" #. module: web #. openerp-web @@ -1890,7 +1895,7 @@ msgstr "Laster opp ..." #: code:addons/web/static/src/xml/base.xml:1851 #, python-format msgid "Name:" -msgstr "" +msgstr "Navn:" #. module: web #. openerp-web @@ -1904,14 +1909,14 @@ msgstr "Om" #: code:addons/web/static/src/xml/base.xml:1438 #, python-format msgid "Search Again" -msgstr "" +msgstr "Søk igjen" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1462 #, python-format msgid "-- Filters --" -msgstr "-- Filter --" +msgstr "-- Filtre --" #. module: web #. openerp-web @@ -1954,13 +1959,17 @@ msgid "" " You can export all data or only the fields that can be " "reimported after modification." msgstr "" +"Denne veiviseren vil eksportere all data som samsvarer med gjeldende " +"søkekriterier til en CSV file.\n" +" Du kan eksportere all data eller kun de felter som kan re-" +"importeres etter modifisering." #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:319 #, python-format msgid "The record could not be found in the database." -msgstr "" +msgstr "Oppføringen ble ikke funnet i databasen." #. module: web #. openerp-web @@ -1981,7 +1990,7 @@ msgstr "Type:" #: code:addons/web/static/src/js/chrome.js:554 #, python-format msgid "Incorrect super-administrator password" -msgstr "" +msgstr "Feil super-administrator passord" #. module: web #. openerp-web @@ -1996,14 +2005,14 @@ msgstr "Objekt:" #: code:addons/web/static/src/js/chrome.js:341 #, python-format msgid "Loading" -msgstr "" +msgstr "Laster..." #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:595 #, python-format msgid "about a year ago" -msgstr "" +msgstr "omtrent et år siden" #. module: web #. openerp-web @@ -2037,7 +2046,7 @@ msgstr "Tøm" #: code:addons/web/static/src/js/coresetup.js:590 #, python-format msgid "%d hours ago" -msgstr "" +msgstr "%d timer siden" #. module: web #. openerp-web @@ -2079,7 +2088,7 @@ msgstr "Ok" #: code:addons/web/static/src/js/views.js:1217 #, python-format msgid "Uploading..." -msgstr "" +msgstr "Laster opp..." #. module: web #. openerp-web @@ -2093,7 +2102,7 @@ msgstr "Last demonstrasjonsdata:" #: code:addons/web/static/src/xml/base.xml:618 #, python-format msgid "Created by :" -msgstr "" +msgstr "Opprettet av :" #. module: web #. openerp-web @@ -2132,28 +2141,28 @@ msgstr "Advarsel" #: code:addons/web/static/src/xml/base.xml:550 #, python-format msgid "Edit SearchView" -msgstr "" +msgstr "Rediger søkevisning" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:2152 #, python-format msgid "is true" -msgstr "" +msgstr "er sann" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:3943 #, python-format msgid "Add an item" -msgstr "" +msgstr "Legg til et element" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1601 #, python-format msgid "Save current filter" -msgstr "" +msgstr "Lagre nåværende filter" #. module: web #. openerp-web @@ -2181,14 +2190,14 @@ msgstr "Last ned \"%s\"" #: code:addons/web/static/src/js/view_form.js:324 #, python-format msgid "New" -msgstr "" +msgstr "Ny" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:1782 #, python-format msgid "Can't convert value %s to context" -msgstr "" +msgstr "Kan ikke konvertere verdi %s til kontekst" #. module: web #. openerp-web @@ -2212,7 +2221,7 @@ msgstr "Bekreft passord:" #: code:addons/web/static/src/js/search.js:2115 #, python-format msgid "greater or equal than" -msgstr "større eller lik enn" +msgstr "større enn eller lik" #. module: web #. openerp-web @@ -2226,7 +2235,7 @@ msgstr "Knapp" #: code:addons/web/static/src/xml/base.xml:421 #, python-format msgid "OpenERP is a trademark of the" -msgstr "" +msgstr "OpenERP er et varemerke for" #. module: web #. openerp-web @@ -2251,28 +2260,28 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:286 #, python-format msgid "New master password:" -msgstr "" +msgstr "Nytt hovedpassord:" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:2153 #, python-format msgid "is false" -msgstr "" +msgstr "er usann" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:407 #, python-format msgid "About OpenERP" -msgstr "" +msgstr "Om OpenERP" #. module: web #. openerp-web #: code:addons/web/static/src/js/formats.js:301 #, python-format msgid "'%s' is not a correct date, datetime nor time" -msgstr "" +msgstr "'%s' er ugyldig som dato, datotid og tid" #. module: web #: code:addons/web/controllers/main.py:1260 @@ -2292,7 +2301,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:5044 #, python-format msgid "Image" -msgstr "" +msgstr "Bilde" #. module: web #. openerp-web @@ -2306,14 +2315,14 @@ msgstr "Administrer databaser" #: code:addons/web/static/src/js/pyeval.js:764 #, python-format msgid "Evaluation Error" -msgstr "" +msgstr "Evalueringsfeil" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1379 #, python-format msgid "not a valid integer" -msgstr "" +msgstr "Ugyldig heltall" #. module: web #. openerp-web @@ -2325,7 +2334,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:1628 #, python-format msgid "or" -msgstr "" +msgstr "eller" #. module: web #. openerp-web @@ -2339,7 +2348,7 @@ msgstr "Nei" #: code:addons/web/static/src/js/formats.js:313 #, python-format msgid "'%s' is not convertible to date, datetime nor time" -msgstr "" +msgstr "'%s' kan ikke konverteres til dato, datotid eller tid" #. module: web #. openerp-web @@ -2357,21 +2366,21 @@ msgstr "Dupliser" #: code:addons/web/static/src/xml/base.xml:1400 #, python-format msgid "Discard" -msgstr "" +msgstr "Forkast" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1622 #, python-format msgid "Add a condition" -msgstr "" +msgstr "Legg til betingelse" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:615 #, python-format msgid "Still loading..." -msgstr "" +msgstr "Laster fortsat..." #. module: web #. openerp-web @@ -2399,21 +2408,21 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:1608 #, python-format msgid "Use by default" -msgstr "" +msgstr "Bruk som standard" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:1363 #, python-format msgid "%s (%d)" -msgstr "" +msgstr "%s (%d)" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:824 #, python-format msgid "triggered from search view" -msgstr "" +msgstr "utløst fra søkevisning" #. module: web #. openerp-web @@ -2434,7 +2443,7 @@ msgstr "Widget:" #: code:addons/web/static/src/xml/base.xml:551 #, python-format msgid "Edit Action" -msgstr "" +msgstr "Rediger handling" #. module: web #. openerp-web @@ -2442,7 +2451,7 @@ msgstr "" #, python-format msgid "" "This filter is global and will be removed for everybody if you continue." -msgstr "" +msgstr "Filteret er globalt og blir slettet for alle om du fortsetter." #. module: web #. openerp-web @@ -2470,14 +2479,14 @@ msgstr "Rediger arbeidsflyt" #: code:addons/web/static/src/js/views.js:1226 #, python-format msgid "Do you really want to delete this attachment ?" -msgstr "" +msgstr "Ønsker du virkelig å slette dette vedlegget?" #. module: web #. openerp-web #: code:addons/web/static/src/js/views.js:894 #, python-format msgid "Technical Translation" -msgstr "" +msgstr "Teknisk oversettelse" #. module: web #. openerp-web @@ -2491,21 +2500,21 @@ msgstr "Felt:" #: code:addons/web/static/src/xml/base.xml:623 #, python-format msgid "Modified by :" -msgstr "" +msgstr "Endret av:" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:515 #, python-format msgid "The database %s has been dropped" -msgstr "" +msgstr "Databasen %s har blitt slettet" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:463 #, python-format msgid "User's timezone" -msgstr "" +msgstr "Brukerens tidssone" #. module: web #. openerp-web @@ -2520,7 +2529,7 @@ msgstr "Klientfeil" #: code:addons/web/static/src/js/views.js:1053 #, python-format msgid "Print" -msgstr "" +msgstr "Skriv ut" #. module: web #. openerp-web @@ -2534,7 +2543,7 @@ msgstr "" #, python-format msgid "" "The old password you provided is incorrect, your password was not changed." -msgstr "" +msgstr "Det gamle passordet du oppga er feil, passordet ble ikke endret." #. module: web #. openerp-web @@ -2548,7 +2557,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:766 #, python-format msgid "Do you really want to delete this record?" -msgstr "Vil du virkelig slette denne posten ?" +msgstr "Ønsker du virkelig å slette denne oppføringen?" #. module: web #. openerp-web @@ -2562,7 +2571,7 @@ msgstr "Lagre & Lukk" #: code:addons/web/static/src/js/view_form.js:2870 #, python-format msgid "Search More..." -msgstr "" +msgstr "Søk mer..." #. module: web #. openerp-web @@ -2593,7 +2602,7 @@ msgstr "Fjern" #: code:addons/web/static/src/xml/base.xml:1071 #, python-format msgid "Select date" -msgstr "Velg date" +msgstr "Velg dato" #. module: web #. openerp-web @@ -2601,35 +2610,35 @@ msgstr "Velg date" #: code:addons/web/static/src/js/search.js:1347 #, python-format msgid "Search %(field)s for: %(value)s" -msgstr "" +msgstr "Søk %(field)s for: %(value)s" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1286 #, python-format msgid "Delete this file" -msgstr "" +msgstr "Slett denne filen" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:109 #, python-format msgid "Create Database" -msgstr "" +msgstr "Opprett database" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:423 #, python-format msgid "GNU Affero General Public License" -msgstr "" +msgstr "GNU Affero General Public License" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1793 #, python-format msgid "Separator:" -msgstr "" +msgstr "Separator:" #. module: web #. openerp-web diff --git a/addons/web/i18n/nl.po b/addons/web/i18n/nl.po index 264b023c2ab..2f455ba61f2 100644 --- a/addons/web/i18n/nl.po +++ b/addons/web/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/nl_BE.po b/addons/web/i18n/nl_BE.po index be22aa9cf88..b8c5263e724 100644 --- a/addons/web/i18n/nl_BE.po +++ b/addons/web/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/pl.po b/addons/web/i18n/pl.po index 65db953f64a..31323ff9604 100644 --- a/addons/web/i18n/pl.po +++ b/addons/web/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/pt.po b/addons/web/i18n/pt.po index 415ae9000cd..bec5f3d0096 100644 --- a/addons/web/i18n/pt.po +++ b/addons/web/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/pt_BR.po b/addons/web/i18n/pt_BR.po index b437eb5fb46..89ef763eff3 100644 --- a/addons/web/i18n/pt_BR.po +++ b/addons/web/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ro.po b/addons/web/i18n/ro.po index 5734bf39902..bf05d0c3c07 100644 --- a/addons/web/i18n/ro.po +++ b/addons/web/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-13 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ru.po b/addons/web/i18n/ru.po index 8ac7441250e..9b4311046ae 100644 --- a/addons/web/i18n/ru.po +++ b/addons/web/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sk.po b/addons/web/i18n/sk.po index ae41c7fac79..986031fe3f9 100644 --- a/addons/web/i18n/sk.po +++ b/addons/web/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sl.po b/addons/web/i18n/sl.po index 5b0b92232fe..1c5dd8b06e9 100644 --- a/addons/web/i18n/sl.po +++ b/addons/web/i18n/sl.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-31 13:50+0000\n" +"PO-Revision-Date: 2013-04-01 12:13+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-08 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web @@ -647,7 +647,7 @@ msgstr "Polja %s modela" #: code:addons/web/static/src/js/search.js:2137 #, python-format msgid "is set" -msgstr "" +msgstr "je nastavljeno" #. module: web #. openerp-web @@ -1417,7 +1417,7 @@ msgstr "99+" #: code:addons/web/static/src/xml/base.xml:408 #, python-format msgid "Help" -msgstr "" +msgstr "Pomoč" #. module: web #. openerp-web @@ -1929,7 +1929,7 @@ msgstr "-- Filtri --" #: code:addons/web/static/src/js/search.js:2157 #, python-format msgid "%(field)s %(operator)s" -msgstr "" +msgstr "%(field)s %(operator)s" #. module: web #. openerp-web @@ -2259,7 +2259,7 @@ msgstr "Izberite polja za izvoz" #: code:addons/web/static/src/js/search.js:2138 #, python-format msgid "is not set" -msgstr "" +msgstr "ni nastavljeno" #. module: web #. openerp-web @@ -2458,7 +2458,7 @@ msgstr "Uredi dejanje" #, python-format msgid "" "This filter is global and will be removed for everybody if you continue." -msgstr "" +msgstr "Filter je globalen in bo odstranjen za vse" #. module: web #. openerp-web diff --git a/addons/web/i18n/sq.po b/addons/web/i18n/sq.po index 7f1c3c20376..0c9f7327efa 100644 --- a/addons/web/i18n/sq.po +++ b/addons/web/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:09+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sr@latin.po b/addons/web/i18n/sr@latin.po index 786d5c7604f..7ce30e3b637 100644 --- a/addons/web/i18n/sr@latin.po +++ b/addons/web/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sv.po b/addons/web/i18n/sv.po index b38c0ef4f27..849220024f6 100644 --- a/addons/web/i18n/sv.po +++ b/addons/web/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/th.po b/addons/web/i18n/th.po index 1fa36117127..792ce995995 100644 --- a/addons/web/i18n/th.po +++ b/addons/web/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "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 06:06+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/tr.po b/addons/web/i18n/tr.po index f7b145162c6..68133e96f8e 100644 --- a/addons/web/i18n/tr.po +++ b/addons/web/i18n/tr.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: 2013-02-15 20:45+0000\n" -"Last-Translator: Hasan Yılmaz \n" +"PO-Revision-Date: 2013-03-31 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-03-08 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web @@ -1417,7 +1417,7 @@ msgstr "99+" #: code:addons/web/static/src/xml/base.xml:408 #, python-format msgid "Help" -msgstr "" +msgstr "Yardım" #. module: web #. openerp-web @@ -1929,7 +1929,7 @@ msgstr "-- Filtreler --" #: code:addons/web/static/src/js/search.js:2157 #, python-format msgid "%(field)s %(operator)s" -msgstr "" +msgstr "%(field)s %(operator)s" #. module: web #. openerp-web @@ -2457,7 +2457,7 @@ msgstr "İşlemi Düzenle" #, python-format msgid "" "This filter is global and will be removed for everybody if you continue." -msgstr "" +msgstr "Bu süzgeç geneldir ve devam ederseniz herkes için kaldırılacaktır." #. module: web #. openerp-web diff --git a/addons/web/i18n/uk.po b/addons/web/i18n/uk.po index 6f0b6f65129..2937cad118d 100644 --- a/addons/web/i18n/uk.po +++ b/addons/web/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/zh_CN.po b/addons/web/i18n/zh_CN.po index a3a603c7d2a..eff1e9b42a3 100644 --- a/addons/web/i18n/zh_CN.po +++ b/addons/web/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/zh_TW.po b/addons/web/i18n/zh_TW.po index 4bd5017909b..3ddf099202a 100644 --- a/addons/web/i18n/zh_TW.po +++ b/addons/web/i18n/zh_TW.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web #. openerp-web diff --git a/addons/web_api/i18n/cs.po b/addons/web_api/i18n/cs.po new file mode 100644 index 00000000000..90c2f6af314 --- /dev/null +++ b/addons/web_api/i18n/cs.po @@ -0,0 +1,20 @@ +# Czech translation for openerp-web +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openerp-web package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-web\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-07-02 09:06+0200\n" +"PO-Revision-Date: 2013-03-30 19:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + + diff --git a/addons/web_api/i18n/es_CR.po b/addons/web_api/i18n/es_CR.po index 32a5630aace..f36a33336a8 100644 --- a/addons/web_api/i18n/es_CR.po +++ b/addons/web_api/i18n/es_CR.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: 2012-12-22 07:38+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" diff --git a/addons/web_calendar/i18n/ar.po b/addons/web_calendar/i18n/ar.po index 78aa0c32441..db92e1296b2 100644 --- a/addons/web_calendar/i18n/ar.po +++ b/addons/web_calendar/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/bg.po b/addons/web_calendar/i18n/bg.po index ac1b8e74fcf..e4c5c273cd6 100644 --- a/addons/web_calendar/i18n/bg.po +++ b/addons/web_calendar/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/bn.po b/addons/web_calendar/i18n/bn.po index b93204304bb..7e7da093871 100644 --- a/addons/web_calendar/i18n/bn.po +++ b/addons/web_calendar/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/bs.po b/addons/web_calendar/i18n/bs.po index b9594f9f0ac..8d3255d7f0d 100644 --- a/addons/web_calendar/i18n/bs.po +++ b/addons/web_calendar/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ca.po b/addons/web_calendar/i18n/ca.po index 8947e31bdd1..52cdc4292ad 100644 --- a/addons/web_calendar/i18n/ca.po +++ b/addons/web_calendar/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/cs.po b/addons/web_calendar/i18n/cs.po index 527739149d7..a4fdfab107f 100644 --- a/addons/web_calendar/i18n/cs.po +++ b/addons/web_calendar/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Language: Czech\n" #. module: web_calendar diff --git a/addons/web_calendar/i18n/da.po b/addons/web_calendar/i18n/da.po index 8463ee2caa8..80373cc876d 100644 --- a/addons/web_calendar/i18n/da.po +++ b/addons/web_calendar/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/de.po b/addons/web_calendar/i18n/de.po index 01f91a7bf8a..d464de70625 100644 --- a/addons/web_calendar/i18n/de.po +++ b/addons/web_calendar/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/en_AU.po b/addons/web_calendar/i18n/en_AU.po index 1a3faa7e79f..b3d67624026 100644 --- a/addons/web_calendar/i18n/en_AU.po +++ b/addons/web_calendar/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/en_GB.po b/addons/web_calendar/i18n/en_GB.po index e4389544924..5811a6b0d7b 100644 --- a/addons/web_calendar/i18n/en_GB.po +++ b/addons/web_calendar/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/es.po b/addons/web_calendar/i18n/es.po index 81e1c54a86b..fc126a3c150 100644 --- a/addons/web_calendar/i18n/es.po +++ b/addons/web_calendar/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/es_CL.po b/addons/web_calendar/i18n/es_CL.po index a23da496c80..c291c38dbb6 100644 --- a/addons/web_calendar/i18n/es_CL.po +++ b/addons/web_calendar/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/es_CR.po b/addons/web_calendar/i18n/es_CR.po index 75c6b7bd2c5..2f62d8f3f43 100644 --- a/addons/web_calendar/i18n/es_CR.po +++ b/addons/web_calendar/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/es_DO.po b/addons/web_calendar/i18n/es_DO.po index fd3ab421784..19873762c2e 100644 --- a/addons/web_calendar/i18n/es_DO.po +++ b/addons/web_calendar/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/es_EC.po b/addons/web_calendar/i18n/es_EC.po index 68e50913387..c0ffbb6f531 100644 --- a/addons/web_calendar/i18n/es_EC.po +++ b/addons/web_calendar/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/es_MX.po b/addons/web_calendar/i18n/es_MX.po index f3d04c2f0a0..8b650439816 100644 --- a/addons/web_calendar/i18n/es_MX.po +++ b/addons/web_calendar/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/et.po b/addons/web_calendar/i18n/et.po index cb2a589b97a..dbf900dfc91 100644 --- a/addons/web_calendar/i18n/et.po +++ b/addons/web_calendar/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/eu.po b/addons/web_calendar/i18n/eu.po index f8b0bb976f3..952ef7dd4f5 100644 --- a/addons/web_calendar/i18n/eu.po +++ b/addons/web_calendar/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/fa.po b/addons/web_calendar/i18n/fa.po index fdfbb2a4a3f..6d50ed25abd 100644 --- a/addons/web_calendar/i18n/fa.po +++ b/addons/web_calendar/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/fi.po b/addons/web_calendar/i18n/fi.po index d24e5ab5738..d9006bdae5c 100644 --- a/addons/web_calendar/i18n/fi.po +++ b/addons/web_calendar/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/fr.po b/addons/web_calendar/i18n/fr.po index 687dce343c4..2a9fd469f8f 100644 --- a/addons/web_calendar/i18n/fr.po +++ b/addons/web_calendar/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/fr_CA.po b/addons/web_calendar/i18n/fr_CA.po index 6417d8ed8ca..403819441f3 100644 --- a/addons/web_calendar/i18n/fr_CA.po +++ b/addons/web_calendar/i18n/fr_CA.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/gl.po b/addons/web_calendar/i18n/gl.po index 730b31e8b6c..cf8531e3869 100644 --- a/addons/web_calendar/i18n/gl.po +++ b/addons/web_calendar/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/gu.po b/addons/web_calendar/i18n/gu.po index 7737e234e5e..9452e248986 100644 --- a/addons/web_calendar/i18n/gu.po +++ b/addons/web_calendar/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/hr.po b/addons/web_calendar/i18n/hr.po index f8b4eda3586..d473d865c10 100644 --- a/addons/web_calendar/i18n/hr.po +++ b/addons/web_calendar/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/hu.po b/addons/web_calendar/i18n/hu.po index 860b4086264..e2467c30478 100644 --- a/addons/web_calendar/i18n/hu.po +++ b/addons/web_calendar/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/id.po b/addons/web_calendar/i18n/id.po index d3862378257..8f494f90ce9 100644 --- a/addons/web_calendar/i18n/id.po +++ b/addons/web_calendar/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/it.po b/addons/web_calendar/i18n/it.po index 804f1c1bfec..d9a81a085b9 100644 --- a/addons/web_calendar/i18n/it.po +++ b/addons/web_calendar/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ja.po b/addons/web_calendar/i18n/ja.po index 7aefa0f54dc..c0dc9e0a8fb 100644 --- a/addons/web_calendar/i18n/ja.po +++ b/addons/web_calendar/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ka.po b/addons/web_calendar/i18n/ka.po index 2bc447cd445..ff22c95be48 100644 --- a/addons/web_calendar/i18n/ka.po +++ b/addons/web_calendar/i18n/ka.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ko.po b/addons/web_calendar/i18n/ko.po index edfbd97a4cf..60a96b029c1 100644 --- a/addons/web_calendar/i18n/ko.po +++ b/addons/web_calendar/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/lt.po b/addons/web_calendar/i18n/lt.po index e5d6177ad03..9a9e40aabaf 100644 --- a/addons/web_calendar/i18n/lt.po +++ b/addons/web_calendar/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/mk.po b/addons/web_calendar/i18n/mk.po index b596cfe6633..0f6ce21e16a 100644 --- a/addons/web_calendar/i18n/mk.po +++ b/addons/web_calendar/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/mn.po b/addons/web_calendar/i18n/mn.po index 4217bef53b9..720d12aa527 100644 --- a/addons/web_calendar/i18n/mn.po +++ b/addons/web_calendar/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/nb.po b/addons/web_calendar/i18n/nb.po index c74d47cffdb..3a3e5891b06 100644 --- a/addons/web_calendar/i18n/nb.po +++ b/addons/web_calendar/i18n/nb.po @@ -8,42 +8,42 @@ 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: FULL NAME \n" +"PO-Revision-Date: 2013-03-30 20:07+0000\n" +"Last-Translator: Jakob Aresvik \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-08 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:153 #, python-format msgid "New event" -msgstr "" +msgstr "Nytt arrangement" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:156 #, python-format msgid "Details" -msgstr "" +msgstr "Detaljer" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:487 #, python-format msgid "Edit: %s" -msgstr "" +msgstr "Rediger: %s" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:154 #, python-format msgid "Save" -msgstr "" +msgstr "Lagre" #. module: web_calendar #. openerp-web @@ -57,21 +57,21 @@ msgstr "" #: code:addons/web_calendar/static/src/js/calendar.js:149 #, python-format msgid "Today" -msgstr "" +msgstr "I dag." #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:151 #, python-format msgid "Week" -msgstr "" +msgstr "Uke" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:163 #, python-format msgid "Full day" -msgstr "" +msgstr "Full dag" #. module: web_calendar #. openerp-web @@ -79,14 +79,14 @@ msgstr "" #: code:addons/web_calendar/static/src/js/calendar.js:174 #, python-format msgid "Description" -msgstr "" +msgstr "Beskrivelse" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:160 #, python-format msgid "Event will be deleted permanently, are you sure?" -msgstr "" +msgstr "Arrangementet vil bli slettet permanent, er du sikker?" #. module: web_calendar #. openerp-web @@ -101,35 +101,35 @@ msgstr " " #: code:addons/web_calendar/static/src/js/calendar.js:173 #, python-format msgid "Date" -msgstr "" +msgstr "Dato" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:150 #, python-format msgid "Day" -msgstr "" +msgstr "Dag" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:157 #, python-format msgid "Edit" -msgstr "" +msgstr "Rediger" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:169 #, python-format msgid "Enabled" -msgstr "" +msgstr "Aktivert" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:166 #, python-format msgid "Do you want to edit the whole set of repeated events?" -msgstr "" +msgstr "Vil du redigere hele settet av gjentatte arrangementer?" #. module: web_calendar #. openerp-web @@ -143,7 +143,7 @@ msgstr "" #: code:addons/web_calendar/static/src/js/calendar.js:167 #, python-format msgid "Repeat event" -msgstr "" +msgstr "Repeter arrangement" #. module: web_calendar #. openerp-web @@ -151,56 +151,56 @@ msgstr "" #: code:addons/web_calendar/static/src/js/calendar.js:180 #, python-format msgid "Agenda" -msgstr "" +msgstr "dagsorden" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:450 #, python-format msgid "Create: %s" -msgstr "" +msgstr "Opprett: %s" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:162 #, python-format msgid "Time period" -msgstr "" +msgstr "Tidsperiode" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:158 #, python-format msgid "Delete" -msgstr "" +msgstr "Slett" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:152 #, python-format msgid "Month" -msgstr "" +msgstr "Måned" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:168 #, python-format msgid "Disabled" -msgstr "" +msgstr "Deaktivert" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:177 #, python-format msgid "Year" -msgstr "" +msgstr "År" #. module: web_calendar #. openerp-web #: code:addons/web_calendar/static/src/js/calendar.js:155 #, python-format msgid "Cancel" -msgstr "" +msgstr "Avbryt" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/nl.po b/addons/web_calendar/i18n/nl.po index 2ec27e73e5c..262a5cea398 100644 --- a/addons/web_calendar/i18n/nl.po +++ b/addons/web_calendar/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/nl_BE.po b/addons/web_calendar/i18n/nl_BE.po index 5af9266f302..0bcd4b8cbb4 100644 --- a/addons/web_calendar/i18n/nl_BE.po +++ b/addons/web_calendar/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/pl.po b/addons/web_calendar/i18n/pl.po index 41603d48503..710cbf14d05 100644 --- a/addons/web_calendar/i18n/pl.po +++ b/addons/web_calendar/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/pt.po b/addons/web_calendar/i18n/pt.po index ca16f76d7e1..b53e20875b5 100644 --- a/addons/web_calendar/i18n/pt.po +++ b/addons/web_calendar/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/pt_BR.po b/addons/web_calendar/i18n/pt_BR.po index 6a4b7bd9ccf..20a3b61bebe 100644 --- a/addons/web_calendar/i18n/pt_BR.po +++ b/addons/web_calendar/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ro.po b/addons/web_calendar/i18n/ro.po index 3bff6a5fa46..e21098bb58b 100644 --- a/addons/web_calendar/i18n/ro.po +++ b/addons/web_calendar/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ru.po b/addons/web_calendar/i18n/ru.po index 8f51b78bdb3..f54b8938928 100644 --- a/addons/web_calendar/i18n/ru.po +++ b/addons/web_calendar/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sk.po b/addons/web_calendar/i18n/sk.po index 50b1ecb3a49..2d913b59a1f 100644 --- a/addons/web_calendar/i18n/sk.po +++ b/addons/web_calendar/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sl.po b/addons/web_calendar/i18n/sl.po index 784927605bf..98f48df43ee 100644 --- a/addons/web_calendar/i18n/sl.po +++ b/addons/web_calendar/i18n/sl.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-31 13:56+0000\n" +"PO-Revision-Date: 2013-04-01 12:16+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-08 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web @@ -36,7 +36,7 @@ msgstr "Podrobnosti" #: code:addons/web_calendar/static/src/js/calendar.js:487 #, python-format msgid "Edit: %s" -msgstr "" +msgstr "Urejanje: %s" #. module: web_calendar #. openerp-web @@ -158,7 +158,7 @@ msgstr "Dnevni red" #: code:addons/web_calendar/static/src/js/calendar.js:450 #, python-format msgid "Create: %s" -msgstr "" +msgstr "Ustvari: %s" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sq.po b/addons/web_calendar/i18n/sq.po index 77f9698f582..463c3ea9ff8 100644 --- a/addons/web_calendar/i18n/sq.po +++ b/addons/web_calendar/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sr@latin.po b/addons/web_calendar/i18n/sr@latin.po index 09421ea143a..28e02149a11 100644 --- a/addons/web_calendar/i18n/sr@latin.po +++ b/addons/web_calendar/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sv.po b/addons/web_calendar/i18n/sv.po index 962bc283722..a8f3f2e2cb7 100644 --- a/addons/web_calendar/i18n/sv.po +++ b/addons/web_calendar/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/tr.po b/addons/web_calendar/i18n/tr.po index 1d9fc12b1f5..a613c47751e 100644 --- a/addons/web_calendar/i18n/tr.po +++ b/addons/web_calendar/i18n/tr.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: Ahmet Altınışık \n" +"PO-Revision-Date: 2013-03-31 19:14+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-08 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web @@ -36,7 +36,7 @@ msgstr "Ayrıntılar" #: code:addons/web_calendar/static/src/js/calendar.js:487 #, python-format msgid "Edit: %s" -msgstr "" +msgstr "Düzenle: %s" #. module: web_calendar #. openerp-web @@ -50,7 +50,7 @@ msgstr "Kaydet" #: code:addons/web_calendar/static/src/js/calendar.js:101 #, python-format msgid "Calendar view has a 'date_delay' type != float" -msgstr "" +msgstr "Takvim görünümünde bir 'tarih_gecikmesi' türü var != float" #. module: web_calendar #. openerp-web @@ -158,7 +158,7 @@ msgstr "Gündem" #: code:addons/web_calendar/static/src/js/calendar.js:450 #, python-format msgid "Create: %s" -msgstr "" +msgstr "Oluştur: %s" #. module: web_calendar #. openerp-web @@ -214,7 +214,7 @@ msgstr "Takvim" #: code:addons/web_calendar/static/src/js/calendar.js:93 #, python-format msgid "Calendar view has not defined 'date_start' attribute." -msgstr "" +msgstr "Takvim görünümünde 'tarih_başla' özniteliği tanımlanmamış." #, python-format #~ msgid "Create: " diff --git a/addons/web_calendar/i18n/uk.po b/addons/web_calendar/i18n/uk.po index 935932decb6..2e3bff584db 100644 --- a/addons/web_calendar/i18n/uk.po +++ b/addons/web_calendar/i18n/uk.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/zh_CN.po b/addons/web_calendar/i18n/zh_CN.po index 4f02e59a863..c5bde2bdf78 100644 --- a/addons/web_calendar/i18n/zh_CN.po +++ b/addons/web_calendar/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_diagram/i18n/ar.po b/addons/web_diagram/i18n/ar.po index 098b40f5b18..cf1d44248f5 100644 --- a/addons/web_diagram/i18n/ar.po +++ b/addons/web_diagram/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/bg.po b/addons/web_diagram/i18n/bg.po index 7ab27bf40e4..4324b1f9402 100644 --- a/addons/web_diagram/i18n/bg.po +++ b/addons/web_diagram/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/bn.po b/addons/web_diagram/i18n/bn.po index 171e3799a05..9f004d103cf 100644 --- a/addons/web_diagram/i18n/bn.po +++ b/addons/web_diagram/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/bs.po b/addons/web_diagram/i18n/bs.po index ecc64f28e76..be3b5598fdd 100644 --- a/addons/web_diagram/i18n/bs.po +++ b/addons/web_diagram/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ca.po b/addons/web_diagram/i18n/ca.po index 7319f64e494..d83b50337eb 100644 --- a/addons/web_diagram/i18n/ca.po +++ b/addons/web_diagram/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/cs.po b/addons/web_diagram/i18n/cs.po index 40b41dd1882..865a5e482cb 100644 --- a/addons/web_diagram/i18n/cs.po +++ b/addons/web_diagram/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Language: Czech\n" #. module: web_diagram diff --git a/addons/web_diagram/i18n/da.po b/addons/web_diagram/i18n/da.po index f5324fc050e..429c97bdb3b 100644 --- a/addons/web_diagram/i18n/da.po +++ b/addons/web_diagram/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/de.po b/addons/web_diagram/i18n/de.po index b6dd96f5f82..61489210aed 100644 --- a/addons/web_diagram/i18n/de.po +++ b/addons/web_diagram/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/en_AU.po b/addons/web_diagram/i18n/en_AU.po index 76c005e21c1..21410330189 100644 --- a/addons/web_diagram/i18n/en_AU.po +++ b/addons/web_diagram/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/en_GB.po b/addons/web_diagram/i18n/en_GB.po index d86f73c2b14..237050a27ea 100644 --- a/addons/web_diagram/i18n/en_GB.po +++ b/addons/web_diagram/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/es.po b/addons/web_diagram/i18n/es.po index 3282855eb35..63a93164d1e 100644 --- a/addons/web_diagram/i18n/es.po +++ b/addons/web_diagram/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/es_CL.po b/addons/web_diagram/i18n/es_CL.po index 7d34052a1e4..60e4f1875c7 100644 --- a/addons/web_diagram/i18n/es_CL.po +++ b/addons/web_diagram/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/es_CR.po b/addons/web_diagram/i18n/es_CR.po index c6dac85e6df..0f0539798b9 100644 --- a/addons/web_diagram/i18n/es_CR.po +++ b/addons/web_diagram/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/es_DO.po b/addons/web_diagram/i18n/es_DO.po index cbf83c7c769..1b30b1b5c04 100644 --- a/addons/web_diagram/i18n/es_DO.po +++ b/addons/web_diagram/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/es_EC.po b/addons/web_diagram/i18n/es_EC.po index 4ec75af0345..eb7013bf216 100644 --- a/addons/web_diagram/i18n/es_EC.po +++ b/addons/web_diagram/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/es_MX.po b/addons/web_diagram/i18n/es_MX.po index e0c7295eb0c..eb60389eb2e 100644 --- a/addons/web_diagram/i18n/es_MX.po +++ b/addons/web_diagram/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/et.po b/addons/web_diagram/i18n/et.po index c7ab75348a1..d025ca77d25 100644 --- a/addons/web_diagram/i18n/et.po +++ b/addons/web_diagram/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/fa.po b/addons/web_diagram/i18n/fa.po index 09f86175d87..56e17b18d5e 100644 --- a/addons/web_diagram/i18n/fa.po +++ b/addons/web_diagram/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/fi.po b/addons/web_diagram/i18n/fi.po index cd5743275fd..d33cec261c6 100644 --- a/addons/web_diagram/i18n/fi.po +++ b/addons/web_diagram/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/fr.po b/addons/web_diagram/i18n/fr.po index 3c9040240e4..6f26e4e1483 100644 --- a/addons/web_diagram/i18n/fr.po +++ b/addons/web_diagram/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/gl.po b/addons/web_diagram/i18n/gl.po index 6c5d19469e2..012502bef85 100644 --- a/addons/web_diagram/i18n/gl.po +++ b/addons/web_diagram/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/gu.po b/addons/web_diagram/i18n/gu.po index 35941b56ba6..a0dc46a64a6 100644 --- a/addons/web_diagram/i18n/gu.po +++ b/addons/web_diagram/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/hr.po b/addons/web_diagram/i18n/hr.po index 2a5e60a1fae..15ccbb6f0e1 100644 --- a/addons/web_diagram/i18n/hr.po +++ b/addons/web_diagram/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/hu.po b/addons/web_diagram/i18n/hu.po index c22f1812327..aff70d6861f 100644 --- a/addons/web_diagram/i18n/hu.po +++ b/addons/web_diagram/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/id.po b/addons/web_diagram/i18n/id.po index cc7185eb3aa..20ae1591685 100644 --- a/addons/web_diagram/i18n/id.po +++ b/addons/web_diagram/i18n/id.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/it.po b/addons/web_diagram/i18n/it.po index 61e58df10fc..1ae65d0ea96 100644 --- a/addons/web_diagram/i18n/it.po +++ b/addons/web_diagram/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ja.po b/addons/web_diagram/i18n/ja.po index a9d5c6ac765..d793f08ed3e 100644 --- a/addons/web_diagram/i18n/ja.po +++ b/addons/web_diagram/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ka.po b/addons/web_diagram/i18n/ka.po index bedc844774f..163ccd8d432 100644 --- a/addons/web_diagram/i18n/ka.po +++ b/addons/web_diagram/i18n/ka.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ko.po b/addons/web_diagram/i18n/ko.po index f09fc361c85..edf1f4b5e91 100644 --- a/addons/web_diagram/i18n/ko.po +++ b/addons/web_diagram/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/lt.po b/addons/web_diagram/i18n/lt.po index 6c89cbffeb4..cef402c5c77 100644 --- a/addons/web_diagram/i18n/lt.po +++ b/addons/web_diagram/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/mk.po b/addons/web_diagram/i18n/mk.po index ce9e880105e..26f38221aa3 100644 --- a/addons/web_diagram/i18n/mk.po +++ b/addons/web_diagram/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/mn.po b/addons/web_diagram/i18n/mn.po index 8ca1bfda463..9ae8d10b93c 100644 --- a/addons/web_diagram/i18n/mn.po +++ b/addons/web_diagram/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/nb.po b/addons/web_diagram/i18n/nb.po new file mode 100644 index 00000000000..d3b57cce16c --- /dev/null +++ b/addons/web_diagram/i18n/nb.po @@ -0,0 +1,99 @@ +# Norwegian Bokmal translation for openerp-web +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openerp-web package. +# FIRST AUTHOR , 2013. +# +msgid "" +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-03-30 20:12+0000\n" +"Last-Translator: Jakob Aresvik \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:252 +#: code:addons/web_diagram/static/src/js/diagram.js:317 +#, python-format +msgid "Open: " +msgstr "Åpne: " + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:215 +#, python-format +msgid "" +"Deleting this node cannot be undone.\n" +"It will also delete all connected transitions.\n" +"\n" +"Are you sure ?" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/xml/base_diagram.xml:13 +#, python-format +msgid "New Node" +msgstr "Ny node" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:310 +#: code:addons/web_diagram/static/src/js/diagram.js:329 +#, python-format +msgid "Transition" +msgstr "" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:11 +#, python-format +msgid "Diagram" +msgstr "Diagram" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:244 +#: code:addons/web_diagram/static/src/js/diagram.js:278 +#, python-format +msgid "Activity" +msgstr "Aktivitet" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:420 +#, python-format +msgid "%d / %d" +msgstr "%d / %d" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:283 +#: code:addons/web_diagram/static/src/js/diagram.js:335 +#, python-format +msgid "Create:" +msgstr "Opprett:" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:185 +#, python-format +msgid "Are you sure?" +msgstr "Er du sikker?" + +#. module: web_diagram +#. openerp-web +#: code:addons/web_diagram/static/src/js/diagram.js:233 +#, python-format +msgid "" +"Deleting this transition cannot be undone.\n" +"\n" +"Are you sure ?" +msgstr "" diff --git a/addons/web_diagram/i18n/nl.po b/addons/web_diagram/i18n/nl.po index aca10607a54..9666cf9165d 100644 --- a/addons/web_diagram/i18n/nl.po +++ b/addons/web_diagram/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/nl_BE.po b/addons/web_diagram/i18n/nl_BE.po index 24fb36e8617..13af9124394 100644 --- a/addons/web_diagram/i18n/nl_BE.po +++ b/addons/web_diagram/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/pl.po b/addons/web_diagram/i18n/pl.po index 44715e812d9..87bd47da7cc 100644 --- a/addons/web_diagram/i18n/pl.po +++ b/addons/web_diagram/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/pt.po b/addons/web_diagram/i18n/pt.po index 0a19dc9b66c..34b618b14d8 100644 --- a/addons/web_diagram/i18n/pt.po +++ b/addons/web_diagram/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/pt_BR.po b/addons/web_diagram/i18n/pt_BR.po index 093dee585a8..a1db89d0133 100644 --- a/addons/web_diagram/i18n/pt_BR.po +++ b/addons/web_diagram/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ro.po b/addons/web_diagram/i18n/ro.po index 22f89dd658b..1f2dc8a620e 100644 --- a/addons/web_diagram/i18n/ro.po +++ b/addons/web_diagram/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ru.po b/addons/web_diagram/i18n/ru.po index 997c990368e..f7bb36aaef5 100644 --- a/addons/web_diagram/i18n/ru.po +++ b/addons/web_diagram/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/sl.po b/addons/web_diagram/i18n/sl.po index 4195052a51c..369f9755bd6 100644 --- a/addons/web_diagram/i18n/sl.po +++ b/addons/web_diagram/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/sq.po b/addons/web_diagram/i18n/sq.po index deb5ef28e7b..948f1321d94 100644 --- a/addons/web_diagram/i18n/sq.po +++ b/addons/web_diagram/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/sr@latin.po b/addons/web_diagram/i18n/sr@latin.po index 8b659ed0b82..d8f9048b7b7 100644 --- a/addons/web_diagram/i18n/sr@latin.po +++ b/addons/web_diagram/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/sv.po b/addons/web_diagram/i18n/sv.po index 1b0627c574e..e474dbd8140 100644 --- a/addons/web_diagram/i18n/sv.po +++ b/addons/web_diagram/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/tr.po b/addons/web_diagram/i18n/tr.po index a9b0bd9d1c5..cb1d170f046 100644 --- a/addons/web_diagram/i18n/tr.po +++ b/addons/web_diagram/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/zh_CN.po b/addons/web_diagram/i18n/zh_CN.po index b960325edb5..b151aeb08c7 100644 --- a/addons/web_diagram/i18n/zh_CN.po +++ b/addons/web_diagram/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_gantt/i18n/ar.po b/addons/web_gantt/i18n/ar.po index c7cd9ccea33..5ac70aa1b8c 100644 --- a/addons/web_gantt/i18n/ar.po +++ b/addons/web_gantt/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/bg.po b/addons/web_gantt/i18n/bg.po index f4b0b222665..f148fc55b6d 100644 --- a/addons/web_gantt/i18n/bg.po +++ b/addons/web_gantt/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/bn.po b/addons/web_gantt/i18n/bn.po index 8b2c91f9c80..aa5b5c10d70 100644 --- a/addons/web_gantt/i18n/bn.po +++ b/addons/web_gantt/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/bs.po b/addons/web_gantt/i18n/bs.po index b2015ee738e..f3cf7ec78f6 100644 --- a/addons/web_gantt/i18n/bs.po +++ b/addons/web_gantt/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ca.po b/addons/web_gantt/i18n/ca.po index 803a6ede692..f4ed4c53d5c 100644 --- a/addons/web_gantt/i18n/ca.po +++ b/addons/web_gantt/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/cs.po b/addons/web_gantt/i18n/cs.po index 8404d792025..79b3425c988 100644 --- a/addons/web_gantt/i18n/cs.po +++ b/addons/web_gantt/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Language: Czech\n" #. module: web_gantt diff --git a/addons/web_gantt/i18n/da.po b/addons/web_gantt/i18n/da.po index 0f4828d8be0..fa87ada30be 100644 --- a/addons/web_gantt/i18n/da.po +++ b/addons/web_gantt/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/de.po b/addons/web_gantt/i18n/de.po index dd5b655fa46..bf26e762e58 100644 --- a/addons/web_gantt/i18n/de.po +++ b/addons/web_gantt/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/en_AU.po b/addons/web_gantt/i18n/en_AU.po index 9055a68d0e2..5bdcde94a74 100644 --- a/addons/web_gantt/i18n/en_AU.po +++ b/addons/web_gantt/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/en_GB.po b/addons/web_gantt/i18n/en_GB.po index 8e0836d0579..767ef99c195 100644 --- a/addons/web_gantt/i18n/en_GB.po +++ b/addons/web_gantt/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/es.po b/addons/web_gantt/i18n/es.po index 0e57f9343b0..51ab56b8373 100644 --- a/addons/web_gantt/i18n/es.po +++ b/addons/web_gantt/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/es_CL.po b/addons/web_gantt/i18n/es_CL.po index 975fdba36f9..2797af605e0 100644 --- a/addons/web_gantt/i18n/es_CL.po +++ b/addons/web_gantt/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/es_CR.po b/addons/web_gantt/i18n/es_CR.po index 31d0e2efce2..ce468bdf6c9 100644 --- a/addons/web_gantt/i18n/es_CR.po +++ b/addons/web_gantt/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/es_DO.po b/addons/web_gantt/i18n/es_DO.po index 7d38345d92d..b1167b7de43 100644 --- a/addons/web_gantt/i18n/es_DO.po +++ b/addons/web_gantt/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/es_EC.po b/addons/web_gantt/i18n/es_EC.po index 6c2f5fd4cbe..61981670704 100644 --- a/addons/web_gantt/i18n/es_EC.po +++ b/addons/web_gantt/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/es_MX.po b/addons/web_gantt/i18n/es_MX.po index 64e3f4b3a30..42e9192c195 100644 --- a/addons/web_gantt/i18n/es_MX.po +++ b/addons/web_gantt/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/et.po b/addons/web_gantt/i18n/et.po index e00870b10d0..439a39d9155 100644 --- a/addons/web_gantt/i18n/et.po +++ b/addons/web_gantt/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/fa.po b/addons/web_gantt/i18n/fa.po index f21ba5a6109..430e65863f7 100644 --- a/addons/web_gantt/i18n/fa.po +++ b/addons/web_gantt/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/fi.po b/addons/web_gantt/i18n/fi.po index a358bef3025..3e15abaa2b6 100644 --- a/addons/web_gantt/i18n/fi.po +++ b/addons/web_gantt/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/fr.po b/addons/web_gantt/i18n/fr.po index 92663b57edc..e42c5562ba2 100644 --- a/addons/web_gantt/i18n/fr.po +++ b/addons/web_gantt/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/gl.po b/addons/web_gantt/i18n/gl.po index 02d9d3a1e84..4a1914c4046 100644 --- a/addons/web_gantt/i18n/gl.po +++ b/addons/web_gantt/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/gu.po b/addons/web_gantt/i18n/gu.po index 05d0b7bcc73..66b8e5ed515 100644 --- a/addons/web_gantt/i18n/gu.po +++ b/addons/web_gantt/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/hr.po b/addons/web_gantt/i18n/hr.po index 9bf42142e1a..0913d2c63df 100644 --- a/addons/web_gantt/i18n/hr.po +++ b/addons/web_gantt/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/hu.po b/addons/web_gantt/i18n/hu.po index fc9e24bac88..7c1738a57f1 100644 --- a/addons/web_gantt/i18n/hu.po +++ b/addons/web_gantt/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/it.po b/addons/web_gantt/i18n/it.po index 4fbe96bcfcc..07161fc769f 100644 --- a/addons/web_gantt/i18n/it.po +++ b/addons/web_gantt/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ja.po b/addons/web_gantt/i18n/ja.po index a4596e1573e..8cd6a35a873 100644 --- a/addons/web_gantt/i18n/ja.po +++ b/addons/web_gantt/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ka.po b/addons/web_gantt/i18n/ka.po index dd1643a1da2..b243f764c2d 100644 --- a/addons/web_gantt/i18n/ka.po +++ b/addons/web_gantt/i18n/ka.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ko.po b/addons/web_gantt/i18n/ko.po index ce952bdde89..c33b6a9a5b2 100644 --- a/addons/web_gantt/i18n/ko.po +++ b/addons/web_gantt/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/lo.po b/addons/web_gantt/i18n/lo.po index ae779457eb2..e1336e511f5 100644 --- a/addons/web_gantt/i18n/lo.po +++ b/addons/web_gantt/i18n/lo.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/lt.po b/addons/web_gantt/i18n/lt.po index ef876d7dafe..5162d6610d0 100644 --- a/addons/web_gantt/i18n/lt.po +++ b/addons/web_gantt/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/mk.po b/addons/web_gantt/i18n/mk.po index 8ee65f6847a..c901fe7487b 100644 --- a/addons/web_gantt/i18n/mk.po +++ b/addons/web_gantt/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/mn.po b/addons/web_gantt/i18n/mn.po index 521bc88ded7..10b11500b01 100644 --- a/addons/web_gantt/i18n/mn.po +++ b/addons/web_gantt/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/nb.po b/addons/web_gantt/i18n/nb.po index d336c50e71c..24f19e0454d 100644 --- a/addons/web_gantt/i18n/nb.po +++ b/addons/web_gantt/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/nl.po b/addons/web_gantt/i18n/nl.po index ecd5c8cc26f..6b6c842a6c8 100644 --- a/addons/web_gantt/i18n/nl.po +++ b/addons/web_gantt/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/nl_BE.po b/addons/web_gantt/i18n/nl_BE.po index be938e462fd..1cd955da57c 100644 --- a/addons/web_gantt/i18n/nl_BE.po +++ b/addons/web_gantt/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/pl.po b/addons/web_gantt/i18n/pl.po index 89bb1f1b192..94f0b17546b 100644 --- a/addons/web_gantt/i18n/pl.po +++ b/addons/web_gantt/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/pt.po b/addons/web_gantt/i18n/pt.po index bdbfaeb99c3..e06767a41bf 100644 --- a/addons/web_gantt/i18n/pt.po +++ b/addons/web_gantt/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/pt_BR.po b/addons/web_gantt/i18n/pt_BR.po index 53668fdd832..5e3c8ee7bb2 100644 --- a/addons/web_gantt/i18n/pt_BR.po +++ b/addons/web_gantt/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ro.po b/addons/web_gantt/i18n/ro.po index f2c78ff5f9e..b460681644a 100644 --- a/addons/web_gantt/i18n/ro.po +++ b/addons/web_gantt/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ru.po b/addons/web_gantt/i18n/ru.po index 2e4b2ca76af..f7418ef3eaa 100644 --- a/addons/web_gantt/i18n/ru.po +++ b/addons/web_gantt/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/sl.po b/addons/web_gantt/i18n/sl.po index 11dab48700c..1910196dba4 100644 --- a/addons/web_gantt/i18n/sl.po +++ b/addons/web_gantt/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/sq.po b/addons/web_gantt/i18n/sq.po index 7352c02e0c5..2d4e33e7386 100644 --- a/addons/web_gantt/i18n/sq.po +++ b/addons/web_gantt/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/sr@latin.po b/addons/web_gantt/i18n/sr@latin.po index b9e3437e71e..05359ec6780 100644 --- a/addons/web_gantt/i18n/sr@latin.po +++ b/addons/web_gantt/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/sv.po b/addons/web_gantt/i18n/sv.po index 903c140db0e..5781c8196e3 100644 --- a/addons/web_gantt/i18n/sv.po +++ b/addons/web_gantt/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/tr.po b/addons/web_gantt/i18n/tr.po index cc5c9fd79b1..9db0e0c6ade 100644 --- a/addons/web_gantt/i18n/tr.po +++ b/addons/web_gantt/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/zh_CN.po b/addons/web_gantt/i18n/zh_CN.po index 8dd0c7fa1c1..442f5214bfb 100644 --- a/addons/web_gantt/i18n/zh_CN.po +++ b/addons/web_gantt/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_graph/i18n/ar.po b/addons/web_graph/i18n/ar.po index 7a385f8e6ec..48dcf5087b9 100644 --- a/addons/web_graph/i18n/ar.po +++ b/addons/web_graph/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/bg.po b/addons/web_graph/i18n/bg.po index 9165192d2d7..debfea297d1 100644 --- a/addons/web_graph/i18n/bg.po +++ b/addons/web_graph/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/bn.po b/addons/web_graph/i18n/bn.po index cc579958bcc..25f1cc56c86 100644 --- a/addons/web_graph/i18n/bn.po +++ b/addons/web_graph/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/bs.po b/addons/web_graph/i18n/bs.po index b7141654fdc..65253629a98 100644 --- a/addons/web_graph/i18n/bs.po +++ b/addons/web_graph/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ca.po b/addons/web_graph/i18n/ca.po index 172df1bdfb2..49363b3129f 100644 --- a/addons/web_graph/i18n/ca.po +++ b/addons/web_graph/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/cs.po b/addons/web_graph/i18n/cs.po index 2c247c3c68a..eeebf607b07 100644 --- a/addons/web_graph/i18n/cs.po +++ b/addons/web_graph/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/da.po b/addons/web_graph/i18n/da.po index e43cc80af7c..16721e17f0d 100644 --- a/addons/web_graph/i18n/da.po +++ b/addons/web_graph/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/de.po b/addons/web_graph/i18n/de.po index be8eeb5a02c..8c4e3386aa6 100644 --- a/addons/web_graph/i18n/de.po +++ b/addons/web_graph/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/en_AU.po b/addons/web_graph/i18n/en_AU.po index a6ad7f33206..ff6fe362115 100644 --- a/addons/web_graph/i18n/en_AU.po +++ b/addons/web_graph/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/en_GB.po b/addons/web_graph/i18n/en_GB.po index 27bb5a182b5..19e2259a5a1 100644 --- a/addons/web_graph/i18n/en_GB.po +++ b/addons/web_graph/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/es.po b/addons/web_graph/i18n/es.po index 7707fdb84cf..8b5fb81468a 100644 --- a/addons/web_graph/i18n/es.po +++ b/addons/web_graph/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/es_CL.po b/addons/web_graph/i18n/es_CL.po index 12566e46fc2..74076721a46 100644 --- a/addons/web_graph/i18n/es_CL.po +++ b/addons/web_graph/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/es_CR.po b/addons/web_graph/i18n/es_CR.po index f6a9c376ed2..e6d39806918 100644 --- a/addons/web_graph/i18n/es_CR.po +++ b/addons/web_graph/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/es_DO.po b/addons/web_graph/i18n/es_DO.po index 4e95d5104f3..42926f83500 100644 --- a/addons/web_graph/i18n/es_DO.po +++ b/addons/web_graph/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/es_EC.po b/addons/web_graph/i18n/es_EC.po index 350473962ed..7081061e3af 100644 --- a/addons/web_graph/i18n/es_EC.po +++ b/addons/web_graph/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/es_MX.po b/addons/web_graph/i18n/es_MX.po index d35c09cc4f6..64d38877631 100644 --- a/addons/web_graph/i18n/es_MX.po +++ b/addons/web_graph/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/et.po b/addons/web_graph/i18n/et.po index f884da7ff36..30a7fd6c7eb 100644 --- a/addons/web_graph/i18n/et.po +++ b/addons/web_graph/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/fa.po b/addons/web_graph/i18n/fa.po index c055ca90781..0c43dff64e8 100644 --- a/addons/web_graph/i18n/fa.po +++ b/addons/web_graph/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/fi.po b/addons/web_graph/i18n/fi.po index ebef14cbaae..3656ada7a3c 100644 --- a/addons/web_graph/i18n/fi.po +++ b/addons/web_graph/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/fr.po b/addons/web_graph/i18n/fr.po index a0a5b9a5c9c..cf6b99b9d2d 100644 --- a/addons/web_graph/i18n/fr.po +++ b/addons/web_graph/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/gl.po b/addons/web_graph/i18n/gl.po index 11b2b8b299c..cb5e4c661cb 100644 --- a/addons/web_graph/i18n/gl.po +++ b/addons/web_graph/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/gu.po b/addons/web_graph/i18n/gu.po index 1b72712d618..c2fb7e3225a 100644 --- a/addons/web_graph/i18n/gu.po +++ b/addons/web_graph/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/hr.po b/addons/web_graph/i18n/hr.po index 25affbeda2c..0d182769ecb 100644 --- a/addons/web_graph/i18n/hr.po +++ b/addons/web_graph/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/hu.po b/addons/web_graph/i18n/hu.po index 4d8f674c781..1ca59b12613 100644 --- a/addons/web_graph/i18n/hu.po +++ b/addons/web_graph/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/it.po b/addons/web_graph/i18n/it.po index 3ae4635b1ea..a690f912375 100644 --- a/addons/web_graph/i18n/it.po +++ b/addons/web_graph/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ja.po b/addons/web_graph/i18n/ja.po index 865eb9a8c29..17dfc1086f0 100644 --- a/addons/web_graph/i18n/ja.po +++ b/addons/web_graph/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ka.po b/addons/web_graph/i18n/ka.po index 501cd977229..54b72ba3c6f 100644 --- a/addons/web_graph/i18n/ka.po +++ b/addons/web_graph/i18n/ka.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ko.po b/addons/web_graph/i18n/ko.po index 5a6b872fe9c..fc141b43f92 100644 --- a/addons/web_graph/i18n/ko.po +++ b/addons/web_graph/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/lt.po b/addons/web_graph/i18n/lt.po index 1a45ede6429..f2d8e4a595a 100644 --- a/addons/web_graph/i18n/lt.po +++ b/addons/web_graph/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/mk.po b/addons/web_graph/i18n/mk.po index 8744929eef5..bc7a4b0d403 100644 --- a/addons/web_graph/i18n/mk.po +++ b/addons/web_graph/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/mn.po b/addons/web_graph/i18n/mn.po index 96dc1e69638..5ea4eb679ba 100644 --- a/addons/web_graph/i18n/mn.po +++ b/addons/web_graph/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/nb.po b/addons/web_graph/i18n/nb.po new file mode 100644 index 00000000000..897fcddf381 --- /dev/null +++ b/addons/web_graph/i18n/nb.po @@ -0,0 +1,137 @@ +# Norwegian Bokmal translation for openerp-web +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openerp-web package. +# FIRST AUTHOR , 2013. +# +msgid "" +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-03-30 20:18+0000\n" +"Last-Translator: Jakob Aresvik \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:12 +#, python-format +msgid "Bars" +msgstr "Stolper" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:33 +#, python-format +msgid "Show Data" +msgstr "Vis data" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/js/graph.js:22 +#, python-format +msgid "Graph" +msgstr "Diagram" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:25 +#, python-format +msgid "Inside" +msgstr "" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:3 +#, python-format +msgid "í" +msgstr "í" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:11 +#, python-format +msgid "Pie" +msgstr "Kake" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:28 +#, python-format +msgid "Actions" +msgstr "Handinger" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:7 +#, python-format +msgid "Graph Mode" +msgstr "Diagramtype" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:18 +#, python-format +msgid "Radar" +msgstr "Radar" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:34 +#, python-format +msgid "Download as PNG" +msgstr "Last ned som PNG" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:26 +#, python-format +msgid "Top" +msgstr "" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:24 +#, python-format +msgid "Hidden" +msgstr "Skjult" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:3 +#, python-format +msgid "Graph Options" +msgstr "diagramalternativer" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:14 +#, python-format +msgid "Lines" +msgstr "Linjer" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:20 +#, python-format +msgid "Legend" +msgstr "tegnforklaringer" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:32 +#, python-format +msgid "Switch Axis" +msgstr "Bytt akser" + +#. module: web_graph +#. openerp-web +#: code:addons/web_graph/static/src/xml/web_graph.xml:15 +#, python-format +msgid "Areas" +msgstr "Områder" diff --git a/addons/web_graph/i18n/nl.po b/addons/web_graph/i18n/nl.po index 9df08818533..873db792ccd 100644 --- a/addons/web_graph/i18n/nl.po +++ b/addons/web_graph/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/nl_BE.po b/addons/web_graph/i18n/nl_BE.po index 63181ea8047..f05555eb80b 100644 --- a/addons/web_graph/i18n/nl_BE.po +++ b/addons/web_graph/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/pl.po b/addons/web_graph/i18n/pl.po index c6d5ae48336..9301d5bfecc 100644 --- a/addons/web_graph/i18n/pl.po +++ b/addons/web_graph/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/pt.po b/addons/web_graph/i18n/pt.po index 8b5e1687564..e9dd2432917 100644 --- a/addons/web_graph/i18n/pt.po +++ b/addons/web_graph/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/pt_BR.po b/addons/web_graph/i18n/pt_BR.po index c6ebc8864a9..6ccfdbd99a8 100644 --- a/addons/web_graph/i18n/pt_BR.po +++ b/addons/web_graph/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ro.po b/addons/web_graph/i18n/ro.po index 77f3d2ddadc..60ca42cbef5 100644 --- a/addons/web_graph/i18n/ro.po +++ b/addons/web_graph/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ru.po b/addons/web_graph/i18n/ru.po index 97fc15de2f6..4f7675ab8cc 100644 --- a/addons/web_graph/i18n/ru.po +++ b/addons/web_graph/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/sl.po b/addons/web_graph/i18n/sl.po index f39bf4d47ed..2528952c164 100644 --- a/addons/web_graph/i18n/sl.po +++ b/addons/web_graph/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/sq.po b/addons/web_graph/i18n/sq.po index 455a8308527..23d9b0c9cca 100644 --- a/addons/web_graph/i18n/sq.po +++ b/addons/web_graph/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/sr@latin.po b/addons/web_graph/i18n/sr@latin.po index a7fc1aaae45..1b0f1a37ac3 100644 --- a/addons/web_graph/i18n/sr@latin.po +++ b/addons/web_graph/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/sv.po b/addons/web_graph/i18n/sv.po index bf85e40db86..4b00c35bede 100644 --- a/addons/web_graph/i18n/sv.po +++ b/addons/web_graph/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/tr.po b/addons/web_graph/i18n/tr.po index 188dd46e62c..892351aeda0 100644 --- a/addons/web_graph/i18n/tr.po +++ b/addons/web_graph/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/zh_CN.po b/addons/web_graph/i18n/zh_CN.po index 9f4de1d30e7..af95a9068bf 100644 --- a/addons/web_graph/i18n/zh_CN.po +++ b/addons/web_graph/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_hello/i18n/ar.po b/addons/web_hello/i18n/ar.po index 49a2318d9e2..0f19adaefd8 100644 --- a/addons/web_hello/i18n/ar.po +++ b/addons/web_hello/i18n/ar.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: 2012-12-22 07:39+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" diff --git a/addons/web_hello/i18n/cs.po b/addons/web_hello/i18n/cs.po new file mode 100644 index 00000000000..90c2f6af314 --- /dev/null +++ b/addons/web_hello/i18n/cs.po @@ -0,0 +1,20 @@ +# Czech translation for openerp-web +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openerp-web package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-web\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-07-02 09:06+0200\n" +"PO-Revision-Date: 2013-03-30 19:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + + diff --git a/addons/web_hello/i18n/es_CR.po b/addons/web_hello/i18n/es_CR.po index 277bd7011f5..f36a33336a8 100644 --- a/addons/web_hello/i18n/es_CR.po +++ b/addons/web_hello/i18n/es_CR.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: 2012-12-22 07:39+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" diff --git a/addons/web_hello/i18n/fr.po b/addons/web_hello/i18n/fr.po index 36f5b7278a1..6e29fd28acb 100644 --- a/addons/web_hello/i18n/fr.po +++ b/addons/web_hello/i18n/fr.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: 2012-12-22 07:39+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" diff --git a/addons/web_hello/i18n/pt_BR.po b/addons/web_hello/i18n/pt_BR.po index a75a0ff1b5a..1428b12f34b 100644 --- a/addons/web_hello/i18n/pt_BR.po +++ b/addons/web_hello/i18n/pt_BR.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: 2012-12-22 07:39+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" diff --git a/addons/web_kanban/i18n/ar.po b/addons/web_kanban/i18n/ar.po index ff01725d4f6..ce84eca744d 100644 --- a/addons/web_kanban/i18n/ar.po +++ b/addons/web_kanban/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/bg.po b/addons/web_kanban/i18n/bg.po index 8e705a82adc..2cb5d774bba 100644 --- a/addons/web_kanban/i18n/bg.po +++ b/addons/web_kanban/i18n/bg.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/bn.po b/addons/web_kanban/i18n/bn.po index ec127acf7c7..4e413e3da4d 100644 --- a/addons/web_kanban/i18n/bn.po +++ b/addons/web_kanban/i18n/bn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/bs.po b/addons/web_kanban/i18n/bs.po index 15fa180ca78..ddd1eece154 100644 --- a/addons/web_kanban/i18n/bs.po +++ b/addons/web_kanban/i18n/bs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ca.po b/addons/web_kanban/i18n/ca.po index a7574c6d162..5db7b58ab6b 100644 --- a/addons/web_kanban/i18n/ca.po +++ b/addons/web_kanban/i18n/ca.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/cs.po b/addons/web_kanban/i18n/cs.po index d551cdc3c28..06ee659e12b 100644 --- a/addons/web_kanban/i18n/cs.po +++ b/addons/web_kanban/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" "X-Poedit-Language: Czech\n" #. module: web_kanban diff --git a/addons/web_kanban/i18n/da.po b/addons/web_kanban/i18n/da.po index b157c925c8e..00585db4e41 100644 --- a/addons/web_kanban/i18n/da.po +++ b/addons/web_kanban/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/de.po b/addons/web_kanban/i18n/de.po index 07199198ba7..6c3f321ede6 100644 --- a/addons/web_kanban/i18n/de.po +++ b/addons/web_kanban/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/en_AU.po b/addons/web_kanban/i18n/en_AU.po index d9498fe0aed..541d726a121 100644 --- a/addons/web_kanban/i18n/en_AU.po +++ b/addons/web_kanban/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/en_GB.po b/addons/web_kanban/i18n/en_GB.po index 6a2488de1b0..23a9f353f70 100644 --- a/addons/web_kanban/i18n/en_GB.po +++ b/addons/web_kanban/i18n/en_GB.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/es.po b/addons/web_kanban/i18n/es.po index d622d2fd93c..6783017e772 100644 --- a/addons/web_kanban/i18n/es.po +++ b/addons/web_kanban/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/es_CL.po b/addons/web_kanban/i18n/es_CL.po index b4b1e3c200c..67be9066909 100644 --- a/addons/web_kanban/i18n/es_CL.po +++ b/addons/web_kanban/i18n/es_CL.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/es_CR.po b/addons/web_kanban/i18n/es_CR.po index 665d8ca9ead..39330f09d22 100644 --- a/addons/web_kanban/i18n/es_CR.po +++ b/addons/web_kanban/i18n/es_CR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/es_DO.po b/addons/web_kanban/i18n/es_DO.po index 12f4fc13d5d..8f515888c9b 100644 --- a/addons/web_kanban/i18n/es_DO.po +++ b/addons/web_kanban/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/es_EC.po b/addons/web_kanban/i18n/es_EC.po index f8e561aca6d..6090d4d0e94 100644 --- a/addons/web_kanban/i18n/es_EC.po +++ b/addons/web_kanban/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/es_MX.po b/addons/web_kanban/i18n/es_MX.po index 99f4d4be372..cb4db77926b 100644 --- a/addons/web_kanban/i18n/es_MX.po +++ b/addons/web_kanban/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/et.po b/addons/web_kanban/i18n/et.po index 4cc840d46eb..7984ff53852 100644 --- a/addons/web_kanban/i18n/et.po +++ b/addons/web_kanban/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/fa.po b/addons/web_kanban/i18n/fa.po index 67668ab4ac5..030eaa89343 100644 --- a/addons/web_kanban/i18n/fa.po +++ b/addons/web_kanban/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/fi.po b/addons/web_kanban/i18n/fi.po index d173da97955..cf3cdb98012 100644 --- a/addons/web_kanban/i18n/fi.po +++ b/addons/web_kanban/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/fr.po b/addons/web_kanban/i18n/fr.po index 24040d53341..9c69031f5ee 100644 --- a/addons/web_kanban/i18n/fr.po +++ b/addons/web_kanban/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:39+0000\n" "PO-Revision-Date: 2013-03-14 16:16+0000\n" -"Last-Translator: Marc Cassuto \n" +"Last-Translator: Marc Cassuto (SFL) \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-03-15 06:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/gl.po b/addons/web_kanban/i18n/gl.po index 4bc934de02c..101cabd3015 100644 --- a/addons/web_kanban/i18n/gl.po +++ b/addons/web_kanban/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/gu.po b/addons/web_kanban/i18n/gu.po index 2d8b66c0b53..571f7fe70df 100644 --- a/addons/web_kanban/i18n/gu.po +++ b/addons/web_kanban/i18n/gu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/hr.po b/addons/web_kanban/i18n/hr.po index 65746f0c53e..262465c524b 100644 --- a/addons/web_kanban/i18n/hr.po +++ b/addons/web_kanban/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/hu.po b/addons/web_kanban/i18n/hu.po index 916061d31c5..cd8b0d59dc7 100644 --- a/addons/web_kanban/i18n/hu.po +++ b/addons/web_kanban/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/it.po b/addons/web_kanban/i18n/it.po index be3b36a3576..2fc4528e224 100644 --- a/addons/web_kanban/i18n/it.po +++ b/addons/web_kanban/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ja.po b/addons/web_kanban/i18n/ja.po index 78471202f6b..bb91bc2aab7 100644 --- a/addons/web_kanban/i18n/ja.po +++ b/addons/web_kanban/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ka.po b/addons/web_kanban/i18n/ka.po index 3542032fa70..dd1faa6f617 100644 --- a/addons/web_kanban/i18n/ka.po +++ b/addons/web_kanban/i18n/ka.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ko.po b/addons/web_kanban/i18n/ko.po index 9a0a38c3950..491d4e60492 100644 --- a/addons/web_kanban/i18n/ko.po +++ b/addons/web_kanban/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/lt.po b/addons/web_kanban/i18n/lt.po index 3a05727f4a5..498ab431038 100644 --- a/addons/web_kanban/i18n/lt.po +++ b/addons/web_kanban/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/mk.po b/addons/web_kanban/i18n/mk.po index 4b35dee48a1..17b9408cabc 100644 --- a/addons/web_kanban/i18n/mk.po +++ b/addons/web_kanban/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/mn.po b/addons/web_kanban/i18n/mn.po index 71b64720963..efc9e1cabf8 100644 --- a/addons/web_kanban/i18n/mn.po +++ b/addons/web_kanban/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/nb.po b/addons/web_kanban/i18n/nb.po new file mode 100644 index 00000000000..9d0431bdaae --- /dev/null +++ b/addons/web_kanban/i18n/nb.po @@ -0,0 +1,162 @@ +# Norwegian Bokmal translation for openerp-web +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openerp-web package. +# FIRST AUTHOR , 2013. +# +msgid "" +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-03-30 20:24+0000\n" +"Last-Translator: Jakob Aresvik \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/js/kanban.js:686 +#, python-format +msgid "Edit column" +msgstr "Rediger kolonne" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:80 +#, python-format +msgid "Show more... (" +msgstr "Vis mer... (" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/js/kanban.js:10 +#, python-format +msgid "Kanban" +msgstr "Kanban" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/js/kanban.js:539 +#, python-format +msgid "Undefined" +msgstr "Udefinert" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/js/kanban.js:705 +#, python-format +msgid "Are you sure to remove this column ?" +msgstr "Vil du virkelig fjerne denne kolonnen ?" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:47 +#, python-format +msgid "Edit" +msgstr "Endre" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/js/kanban.js:192 +#, python-format +msgid "Add column" +msgstr "Legg til kolonne" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/js/kanban.js:1082 +#, python-format +msgid "Create: " +msgstr "Opprett: " + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:24 +#, python-format +msgid "Add a new column" +msgstr "Legg til en ny kolonne" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/js/kanban.js:677 +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:45 +#, python-format +msgid "Fold" +msgstr "Slå sammen" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:98 +#, python-format +msgid "Add" +msgstr "Legg til" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:35 +#, python-format +msgid "Quick create" +msgstr "" + +#. 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 "Ønsker du virkelig å slette denne oppføringen ?" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/js/kanban.js:677 +#, python-format +msgid "Unfold" +msgstr "Brett ut" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:99 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:80 +#, python-format +msgid "remaining)" +msgstr "gjenværende)" + +#. 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 "" +"En feil har oppstått under flytting av oppføringen til denne gruppen: " + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:22 +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:98 +#, python-format +msgid "or" +msgstr "eller" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:40 +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:55 +#, python-format +msgid "99+" +msgstr "99+" + +#. module: web_kanban +#. openerp-web +#: code:addons/web_kanban/static/src/xml/web_kanban.xml:48 +#, python-format +msgid "Delete" +msgstr "Slett" diff --git a/addons/web_kanban/i18n/nl.po b/addons/web_kanban/i18n/nl.po index c82b8535e8c..0510e39e2c8 100644 --- a/addons/web_kanban/i18n/nl.po +++ b/addons/web_kanban/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-09 05:38+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/nl_BE.po b/addons/web_kanban/i18n/nl_BE.po index 5a5b5270cd9..51a37a7112c 100644 --- a/addons/web_kanban/i18n/nl_BE.po +++ b/addons/web_kanban/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/pl.po b/addons/web_kanban/i18n/pl.po index c25629e8ce5..4b1687ee336 100644 --- a/addons/web_kanban/i18n/pl.po +++ b/addons/web_kanban/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/pt.po b/addons/web_kanban/i18n/pt.po index a99ab2e9819..ee5fc549775 100644 --- a/addons/web_kanban/i18n/pt.po +++ b/addons/web_kanban/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/pt_BR.po b/addons/web_kanban/i18n/pt_BR.po index 56a087a9140..fb023ea10c0 100644 --- a/addons/web_kanban/i18n/pt_BR.po +++ b/addons/web_kanban/i18n/pt_BR.po @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-17 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ro.po b/addons/web_kanban/i18n/ro.po index 47818e99edb..ba5d5daeb47 100644 --- a/addons/web_kanban/i18n/ro.po +++ b/addons/web_kanban/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ru.po b/addons/web_kanban/i18n/ru.po index 0136e5bec7b..dde8ac264b7 100644 --- a/addons/web_kanban/i18n/ru.po +++ b/addons/web_kanban/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/sl.po b/addons/web_kanban/i18n/sl.po index 5c41be880bf..cea1ec8d6ef 100644 --- a/addons/web_kanban/i18n/sl.po +++ b/addons/web_kanban/i18n/sl.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: Dusan Laznik \n" +"PO-Revision-Date: 2013-04-01 12:15+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-08 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-02 05:48+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web @@ -135,7 +135,7 @@ msgstr "ostanek)" #: 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 "Napaka pri premiku zapisa v skupino: " #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/sr@latin.po b/addons/web_kanban/i18n/sr@latin.po index 0fa18e98fbd..2bfbb6a2d09 100644 --- a/addons/web_kanban/i18n/sr@latin.po +++ b/addons/web_kanban/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/sv.po b/addons/web_kanban/i18n/sv.po index 5febf4f84ff..0b26e7ff02d 100644 --- a/addons/web_kanban/i18n/sv.po +++ b/addons/web_kanban/i18n/sv.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/tr.po b/addons/web_kanban/i18n/tr.po index be92e1c5f11..75eba53ce51 100644 --- a/addons/web_kanban/i18n/tr.po +++ b/addons/web_kanban/i18n/tr.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: 2013-02-15 20:44+0000\n" +"PO-Revision-Date: 2013-03-31 19:16+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-08 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-01 05:32+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web @@ -135,7 +135,7 @@ msgstr "kalan)" #: 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 "Kayıt bu gruba taşınırken bir hata oluştu: " #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/zh_CN.po b/addons/web_kanban/i18n/zh_CN.po index 9dee57ab8c6..1fc1692a77d 100644 --- a/addons/web_kanban/i18n/zh_CN.po +++ b/addons/web_kanban/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_linkedin/i18n/cs.po b/addons/web_linkedin/i18n/cs.po new file mode 100644 index 00000000000..a6b1a5786ef --- /dev/null +++ b/addons/web_linkedin/i18n/cs.po @@ -0,0 +1,137 @@ +# Czech 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:39+0000\n" +"PO-Revision-Date: 2013-03-30 21:01+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "here:" +msgstr "" + +#. module: web_linkedin +#: field:sale.config.settings,api_key:0 +msgid "API Key" +msgstr "" + +#. module: web_linkedin +#. openerp-web +#: code:addons/web_linkedin/static/src/js/linkedin.js:249 +#, python-format +msgid "No results found" +msgstr "" + +#. module: web_linkedin +#. openerp-web +#: code:addons/web_linkedin/static/src/js/linkedin.js:84 +#, python-format +msgid "Ok" +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "Log into LinkedIn." +msgstr "" + +#. module: web_linkedin +#. openerp-web +#: code:addons/web_linkedin/static/src/xml/linkedin.xml:13 +#, python-format +msgid "People" +msgstr "" + +#. module: web_linkedin +#: model:ir.model,name:web_linkedin.model_sale_config_settings +msgid "sale.config.settings" +msgstr "" + +#. module: web_linkedin +#: field:sale.config.settings,server_domain:0 +msgid "unknown" +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "https://www.linkedin.com/secure/developer" +msgstr "" + +#. module: web_linkedin +#. openerp-web +#: code:addons/web_linkedin/static/src/xml/linkedin.xml:15 +#, python-format +msgid "Companies" +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "API key" +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "Copy the" +msgstr "" + +#. module: web_linkedin +#. openerp-web +#: code:addons/web_linkedin/static/src/js/linkedin.js:181 +#, python-format +msgid "LinkedIn search" +msgstr "" + +#. module: web_linkedin +#. openerp-web +#: code:addons/web_linkedin/static/src/xml/linkedin.xml:31 +#, python-format +msgid "" +"LinkedIn access was not enabled on this server.\n" +" Please ask your administrator to configure it in Settings > " +"Configuration > Sales > Social Network Integration." +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "" +"To use the LinkedIn module with this database, an API Key is required. " +"Please follow this procedure:" +msgstr "" + +#. module: web_linkedin +#. openerp-web +#: code:addons/web_linkedin/static/src/js/linkedin.js:82 +#, python-format +msgid "LinkedIn is not enabled" +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "Add a new application and fill the form:" +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "Go to this URL:" +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "The programming tool is Javascript" +msgstr "" + +#. module: web_linkedin +#: view:sale.config.settings:0 +msgid "JavaScript API Domain:" +msgstr "" diff --git a/addons/web_linkedin/i18n/mk.po b/addons/web_linkedin/i18n/mk.po index 039d18d8935..165854895b5 100644 --- a/addons/web_linkedin/i18n/mk.po +++ b/addons/web_linkedin/i18n/mk.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-03-29 05:09+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:09+0000\n" "X-Generator: Launchpad (build 16546)\n" "Language: mk\n" diff --git a/addons/web_tests/i18n/cs.po b/addons/web_tests/i18n/cs.po new file mode 100644 index 00000000000..90c2f6af314 --- /dev/null +++ b/addons/web_tests/i18n/cs.po @@ -0,0 +1,20 @@ +# Czech translation for openerp-web +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openerp-web package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openerp-web\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-07-02 09:06+0200\n" +"PO-Revision-Date: 2013-03-30 19:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Czech \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-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + + diff --git a/addons/web_tests/i18n/es_CR.po b/addons/web_tests/i18n/es_CR.po index 277bd7011f5..f36a33336a8 100644 --- a/addons/web_tests/i18n/es_CR.po +++ b/addons/web_tests/i18n/es_CR.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: 2012-12-22 07:39+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" diff --git a/addons/web_tests/i18n/fr_CA.po b/addons/web_tests/i18n/fr_CA.po index 8abb07850c0..c826b422ed7 100644 --- a/addons/web_tests/i18n/fr_CA.po +++ b/addons/web_tests/i18n/fr_CA.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: 2012-12-22 07:39+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" diff --git a/addons/web_view_editor/i18n/ar.po b/addons/web_view_editor/i18n/ar.po index bd231db5c8a..a38e3bc487a 100644 --- a/addons/web_view_editor/i18n/ar.po +++ b/addons/web_view_editor/i18n/ar.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/cs.po b/addons/web_view_editor/i18n/cs.po index 9327e8ce733..49854db6ec7 100644 --- a/addons/web_view_editor/i18n/cs.po +++ b/addons/web_view_editor/i18n/cs.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/de.po b/addons/web_view_editor/i18n/de.po index fc576333fc6..4f296eca1d3 100644 --- a/addons/web_view_editor/i18n/de.po +++ b/addons/web_view_editor/i18n/de.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/en_AU.po b/addons/web_view_editor/i18n/en_AU.po index ebbbd0f6d03..5fcb498afe7 100644 --- a/addons/web_view_editor/i18n/en_AU.po +++ b/addons/web_view_editor/i18n/en_AU.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:11+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/es.po b/addons/web_view_editor/i18n/es.po index b3f3181103e..b9261b0d37f 100644 --- a/addons/web_view_editor/i18n/es.po +++ b/addons/web_view_editor/i18n/es.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/es_DO.po b/addons/web_view_editor/i18n/es_DO.po index 44db964e9d0..a7cf677a0d9 100644 --- a/addons/web_view_editor/i18n/es_DO.po +++ b/addons/web_view_editor/i18n/es_DO.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/es_EC.po b/addons/web_view_editor/i18n/es_EC.po index f8e52300ae2..289c5929b4d 100644 --- a/addons/web_view_editor/i18n/es_EC.po +++ b/addons/web_view_editor/i18n/es_EC.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:11+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/es_MX.po b/addons/web_view_editor/i18n/es_MX.po index b7712076e9f..79072f0cd35 100644 --- a/addons/web_view_editor/i18n/es_MX.po +++ b/addons/web_view_editor/i18n/es_MX.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:11+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/et.po b/addons/web_view_editor/i18n/et.po index 6c6ff1b6112..3474e7e195e 100644 --- a/addons/web_view_editor/i18n/et.po +++ b/addons/web_view_editor/i18n/et.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/fa.po b/addons/web_view_editor/i18n/fa.po index 2f79fd2551f..28d0ac11937 100644 --- a/addons/web_view_editor/i18n/fa.po +++ b/addons/web_view_editor/i18n/fa.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/fr.po b/addons/web_view_editor/i18n/fr.po index afead8bf914..d152dd20988 100644 --- a/addons/web_view_editor/i18n/fr.po +++ b/addons/web_view_editor/i18n/fr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/hr.po b/addons/web_view_editor/i18n/hr.po index d1ea0aad5b9..bebef5684e2 100644 --- a/addons/web_view_editor/i18n/hr.po +++ b/addons/web_view_editor/i18n/hr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/hu.po b/addons/web_view_editor/i18n/hu.po index 572345d22ee..2e4ae7107af 100644 --- a/addons/web_view_editor/i18n/hu.po +++ b/addons/web_view_editor/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/it.po b/addons/web_view_editor/i18n/it.po index fe57908fcc2..f7bc6cf9085 100644 --- a/addons/web_view_editor/i18n/it.po +++ b/addons/web_view_editor/i18n/it.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/ko.po b/addons/web_view_editor/i18n/ko.po index 110074e4999..2c41663f81d 100644 --- a/addons/web_view_editor/i18n/ko.po +++ b/addons/web_view_editor/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/mk.po b/addons/web_view_editor/i18n/mk.po index c41b44a172b..8d0dde35d3c 100644 --- a/addons/web_view_editor/i18n/mk.po +++ b/addons/web_view_editor/i18n/mk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-10 05:15+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/mn.po b/addons/web_view_editor/i18n/mn.po index 9313d130720..f1975f7d000 100644 --- a/addons/web_view_editor/i18n/mn.po +++ b/addons/web_view_editor/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/nb.po b/addons/web_view_editor/i18n/nb.po new file mode 100644 index 00000000000..802542b6ce2 --- /dev/null +++ b/addons/web_view_editor/i18n/nb.po @@ -0,0 +1,184 @@ +# Norwegian Bokmal translation for openerp-web +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openerp-web package. +# FIRST AUTHOR , 2013. +# +msgid "" +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-03-30 20:32+0000\n" +"Last-Translator: Jakob Aresvik \n" +"Language-Team: Norwegian Bokmal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:164 +#, python-format +msgid "The following fields are invalid :" +msgstr "Følgende felt er ugyldige :" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:63 +#, python-format +msgid "Create" +msgstr "Lag" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:986 +#, python-format +msgid "New Field" +msgstr "Nytt felt" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:386 +#, python-format +msgid "Do you really wants to create an inherited view here?" +msgstr "Vil du virkelig opprette en underordnet visning her?" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:396 +#, python-format +msgid "Preview" +msgstr "" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:183 +#, python-format +msgid "Do you really want to remove this view?" +msgstr "Ønsker du virkelig å slette denne visningen?" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:90 +#, python-format +msgid "Save" +msgstr "Save" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:393 +#, python-format +msgid "Select an element" +msgstr "Velg et element" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:828 +#: code:addons/web_view_editor/static/src/js/view_editor.js:954 +#, python-format +msgid "Update" +msgstr "Oppdatér" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:263 +#, python-format +msgid "Please select view in list :" +msgstr "" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:37 +#, python-format +msgid "Manage Views (%s)" +msgstr "Administrere visninger (%s)" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:13 +#, python-format +msgid "Manage Views" +msgstr "Administrer visninger" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:825 +#: code:addons/web_view_editor/static/src/js/view_editor.js:951 +#, python-format +msgid "Properties" +msgstr "Egenskaper" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:64 +#, python-format +msgid "Edit" +msgstr "Redigér" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:14 +#, python-format +msgid "Could not find current view declaration" +msgstr "Kunne ikke finne nåværende visningsdeklarasjon" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:382 +#, python-format +msgid "Inherited View" +msgstr "Nedarvet visning" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:65 +#, python-format +msgid "Remove" +msgstr "Slett" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:516 +#, python-format +msgid "Do you really want to remove this node?" +msgstr "Vil du virkelig fjerne denne noden?" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:390 +#, python-format +msgid "Can't Update View" +msgstr "Kan ikke oppdatere visning" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:379 +#, python-format +msgid "View Editor %d - %s" +msgstr "" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:112 +#: code:addons/web_view_editor/static/src/js/view_editor.js:846 +#: code:addons/web_view_editor/static/src/js/view_editor.js:974 +#, python-format +msgid "Cancel" +msgstr "Avbryt" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:66 +#: code:addons/web_view_editor/static/src/js/view_editor.js:413 +#, python-format +msgid "Close" +msgstr "Lukk" + +#. module: web_view_editor +#. openerp-web +#: code:addons/web_view_editor/static/src/js/view_editor.js:88 +#, python-format +msgid "Create a view (%s)" +msgstr "Opprett en visning (%s)" diff --git a/addons/web_view_editor/i18n/nl.po b/addons/web_view_editor/i18n/nl.po index 5e38f239d5d..805caa14859 100644 --- a/addons/web_view_editor/i18n/nl.po +++ b/addons/web_view_editor/i18n/nl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/nl_BE.po b/addons/web_view_editor/i18n/nl_BE.po index 280feacb658..1dd3d084dc6 100644 --- a/addons/web_view_editor/i18n/nl_BE.po +++ b/addons/web_view_editor/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:11+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/pl.po b/addons/web_view_editor/i18n/pl.po index ade10913dba..52e0df6881e 100644 --- a/addons/web_view_editor/i18n/pl.po +++ b/addons/web_view_editor/i18n/pl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/pt.po b/addons/web_view_editor/i18n/pt.po index 0236a9f333f..db04ffe1229 100644 --- a/addons/web_view_editor/i18n/pt.po +++ b/addons/web_view_editor/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/pt_BR.po b/addons/web_view_editor/i18n/pt_BR.po index 50f212cc222..ab3efa62289 100644 --- a/addons/web_view_editor/i18n/pt_BR.po +++ b/addons/web_view_editor/i18n/pt_BR.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/ro.po b/addons/web_view_editor/i18n/ro.po index d0495cd6e35..b2b1708ebc6 100644 --- a/addons/web_view_editor/i18n/ro.po +++ b/addons/web_view_editor/i18n/ro.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/ru.po b/addons/web_view_editor/i18n/ru.po index 749565bf0e5..f970b2c31f6 100644 --- a/addons/web_view_editor/i18n/ru.po +++ b/addons/web_view_editor/i18n/ru.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/sl.po b/addons/web_view_editor/i18n/sl.po index 825f7db9a78..28d4c382892 100644 --- a/addons/web_view_editor/i18n/sl.po +++ b/addons/web_view_editor/i18n/sl.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/tr.po b/addons/web_view_editor/i18n/tr.po index ed770dfb66d..d91e34ef45b 100644 --- a/addons/web_view_editor/i18n/tr.po +++ b/addons/web_view_editor/i18n/tr.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:10+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/zh_CN.po b/addons/web_view_editor/i18n/zh_CN.po index 5902eef23e7..04c35fb067e 100644 --- a/addons/web_view_editor/i18n/zh_CN.po +++ b/addons/web_view_editor/i18n/zh_CN.po @@ -14,8 +14,8 @@ msgstr "" "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 06:07+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-29 05:11+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: web_view_editor #. openerp-web diff --git a/openerp/addons/base/i18n/cs.po b/openerp/addons/base/i18n/cs.po index 167547514b5..eb56c947803 100644 --- a/openerp/addons/base/i18n/cs.po +++ b/openerp/addons/base/i18n/cs.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-03-29 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" "X-Language: cs_CZ\n" "X-Source-Language: en\n" diff --git a/openerp/addons/base/i18n/he.po b/openerp/addons/base/i18n/he.po index aa1727c653e..cf7f6254fd8 100644 --- a/openerp/addons/base/i18n/he.po +++ b/openerp/addons/base/i18n/he.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-21 23:09+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-03-30 16:54+0000\n" +"Last-Translator: sef \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-08 05:18+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-03-31 05:57+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -39,7 +39,7 @@ msgstr "סנט הלנה" #. module: base #: view:ir.actions.report.xml:0 msgid "Other Configuration" -msgstr "" +msgstr "תצורה אחרת" #. module: base #: selection:ir.property,type:0 @@ -73,12 +73,12 @@ msgstr "" #. module: base #: selection:base.language.install,lang:0 msgid "Hungarian / Magyar" -msgstr "הונגריה /Magyar" +msgstr "הונגרית /Magyar" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (PY) / Español (PY)" -msgstr "" +msgstr "Spanish (PY) / ספרדית (PY)" #. module: base #: model:ir.module.category,description:base.module_category_project_management @@ -90,7 +90,7 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_point_of_sale msgid "Touchscreen Interface for Shops" -msgstr "" +msgstr "ממשק מסך מגע לחנויות" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_in_hr_payroll @@ -106,7 +106,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "צפיה בנוצרו" +msgstr "צפיות שנוצרו" #. module: base #: model:ir.module.module,description:base.module_product_manufacturer @@ -123,6 +123,17 @@ msgid "" " * Product Attributes\n" " " msgstr "" +"\n" +"רכיב להוספת יצרנים ותכונות למוצר.\n" +"====================================================================\n" +"\n" +"ניתן להגדיר עבור מוצר:\n" +"-----------------------------------------------\n" +" * יצרן\n" +" * שם מוצר אצל היצרן\n" +" * קוד מוצר אצל היצרן\n" +" * תכונות מוצר\n" +" " #. module: base #: field:ir.actions.client,params:0 @@ -153,12 +164,12 @@ msgstr "" #. module: base #: field:res.partner,ref:0 msgid "Reference" -msgstr "" +msgstr "הפניה" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_be_invoice_bba msgid "Belgium - Structured Communication" -msgstr "" +msgstr "בלגיה - תקשורת מובנית" #. module: base #: field:ir.actions.act_window,target:0 @@ -196,7 +207,7 @@ msgstr "" #: code:addons/base/res/res_users.py:473 #, python-format msgid "Warning!" -msgstr "" +msgstr "אזהרה!" #. module: base #: code:addons/base/ir/ir_model.py:406 @@ -226,23 +237,23 @@ msgstr "" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "Swaziland" +msgstr "שוויץ" #. module: base #: code:addons/orm.py:4486 #, python-format msgid "created." -msgstr "" +msgstr "נוצר." #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL Path" -msgstr "" +msgstr "נתיב XSL" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_tr msgid "Turkey - Accounting" -msgstr "" +msgstr "טורקיה - חשבונאות" #. module: base #: field:ir.sequence,number_increment:0 @@ -279,7 +290,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_sale msgid "Sales Management" -msgstr "" +msgstr "ניהול מכירות" #. module: base #: help:res.partner,user_id:0 @@ -296,17 +307,17 @@ msgstr "" #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "מספר המודולים" +msgstr "מספר רכיבים" #. module: base #: help:multi_company.default,company_dest_id:0 msgid "Company to store the current record" -msgstr "" +msgstr "חברה לאחסון פעולה נוכחית" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "מידה מקס." +msgstr "גודל מרבי" #. module: base #: help:ir.actions.act_window,res_id:0 @@ -329,7 +340,7 @@ msgstr "" #. module: base #: sql_constraint:res.lang:0 msgid "The name of the language must be unique !" -msgstr "" +msgstr "על שם השפה להיות ייחודי !" #. module: base #: selection:res.request,state:0 @@ -339,7 +350,7 @@ msgstr "פעיל" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "שם מומחה" +msgstr "שם האשף" #. module: base #: model:ir.module.module,description:base.module_knowledge @@ -357,7 +368,7 @@ msgstr "" #. module: base #: model:ir.module.category,name:base.module_category_customer_relationship_management msgid "Customer Relationship Management" -msgstr "" +msgstr "ניהול קשרי לקוחות" #. module: base #: model:ir.module.module,description:base.module_delivery @@ -384,7 +395,7 @@ msgstr "" #: code:addons/orm.py:2649 #, python-format msgid "Invalid group_by" -msgstr "" +msgstr "group_by לא חוקי" #. module: base #: field:ir.module.category,child_ids:0 @@ -401,18 +412,18 @@ msgstr "מגבלת אשראי" #: field:ir.model.data,date_update:0 #: field:ir.model.relation,date_update:0 msgid "Update Date" -msgstr "עדכן נתונים" +msgstr "עידכון תאריך" #. module: base #: model:ir.module.module,shortdesc:base.module_base_action_rule msgid "Automated Action Rules" -msgstr "" +msgstr "חוקי פעולה אוטומטיים" #. module: base #: view:ir.attachment:0 #: field:ir.attachment,create_uid:0 msgid "Owner" -msgstr "" +msgstr "בעלים" #. module: base #: view:ir.actions.act_window:0 @@ -422,12 +433,12 @@ msgstr "אובייקט מקור" #. module: base #: model:res.partner.bank.type,format_layout:base.bank_normal msgid "%(bank_name)s: %(acc_number)s" -msgstr "" +msgstr "%(bank_name)s: %(acc_number)s" #. module: base #: view:ir.actions.todo:0 msgid "Config Wizard Steps" -msgstr "הגדר צעדי האשף" +msgstr "הגדרת צעדי האשף" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc @@ -454,7 +465,7 @@ msgstr "" msgid "" "One of the records you are trying to modify has already been deleted " "(Document type: %s)." -msgstr "" +msgstr "אחת הרשומות שברצונך לערוך נמחקה (Document type: %s)." #. module: base #: help:ir.actions.act_window,views:0 @@ -473,7 +484,7 @@ msgstr "" #. module: base #: view:ir.rule:0 msgid "Create Access Right" -msgstr "" +msgstr "יצירת הרשאות גישה" #. module: base #: model:res.country,name:base.tv @@ -483,7 +494,7 @@ msgstr "Tuvalu" #. module: base #: field:ir.actions.configuration.wizard,note:0 msgid "Next Wizard" -msgstr "אשף הבא" +msgstr "לאשף הבא" #. module: base #: field:res.lang,date_format:0 @@ -493,7 +504,7 @@ msgstr "מבנה תאריך" #. module: base #: model:ir.module.module,shortdesc:base.module_base_report_designer msgid "OpenOffice Report Designer" -msgstr "" +msgstr "מעצב הדוחות של OpenOffice" #. module: base #: model:res.country,name:base.an @@ -507,8 +518,8 @@ msgid "" "You can not remove the admin user as it is used internally for resources " "created by OpenERP (updates, module installation, ...)" msgstr "" -"אינך יכול להסיר את המשתמש ADMIN כיוון שמשמש ליצירת מקורות ע\"י openERP " -"(עדכונים,התקנת מודולים...)" +"לא ניתן להסיר את המשתמש ADMIN מכיוון שנעשה בו שימוש פנימי עבור משאבים ש-" +"OpenERP יוצרת (עדכונים,התקנת מודולים...)" #. module: base #: view:workflow.transition:0 @@ -518,12 +529,12 @@ msgstr "" #. module: base #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "French Guyana" +msgstr "הגויאנה הצרפתית" #. module: base #: model:ir.module.module,summary:base.module_hr msgid "Jobs, Departments, Employees Details" -msgstr "" +msgstr "עבודות, מחלקות, פרטי עובדים" #. module: base #: model:ir.module.module,description:base.module_analytic @@ -543,7 +554,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_idea msgid "Ideas" -msgstr "" +msgstr "רעיונות" #. module: base #: model:ir.module.module,description:base.module_event @@ -574,7 +585,7 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" -"אם תסמן זאת, בפעם השניה בה המשתמש ידפיס עם שם מצורף זהה,זה יחזיר את הדווח " +"אם תסמן זאת, בפעם השניה בה המשתמש ידפיס עם שם מצורף זהה, זה יחזיר את הדוח " "הקודם." #. module: base @@ -597,6 +608,21 @@ msgid "" " A + B + C -> D + E\n" " " msgstr "" +"\n" +"רכיב זה מאפשר להפיק מספר מוצרים מהזמנת ייצור אחת.\n" +"=============================================================================" +"\n" +"\n" +"ניתן להגדיר תוצרי לוואי (by-products) בחשבון החומרים\n" +"\n" +"בלי רכיב זה:\n" +"--------------------\n" +" A + B + C -> D\n" +"\n" +"עם רכיב זה:\n" +"-----------------\n" +" A + B + C -> D + E\n" +" " #. module: base #: selection:base.language.install,lang:0 @@ -606,7 +632,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_timesheet_invoice msgid "Invoice on Timesheets" -msgstr "" +msgstr "חשבונית על גליון שעות" #. module: base #: view:base.module.upgrade:0 @@ -640,8 +666,8 @@ msgid "" "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" -"ISO קוד מדינה בשני תווים.\n" -"תוכל להשתמש בשדה זה לחיפוש מהיר." +"צופן ה-ISO בשתי אותיות.\n" +"ניתן להשתמש בשדה זה לחיפוש מהיר." #. module: base #: model:res.country,name:base.pw @@ -656,17 +682,17 @@ msgstr "מכירות ורכש" #. module: base #: view:res.partner:0 msgid "Put an internal note..." -msgstr "" +msgstr "הכנסת פתק פנימי..." #. module: base #: view:ir.translation:0 msgid "Untranslated" -msgstr "" +msgstr "לא מתורגם" #. module: base #: view:ir.mail_server:0 msgid "Outgoing Mail Server" -msgstr "" +msgstr "שרת דואר יוצא" #. module: base #: help:ir.actions.act_window,context:0 diff --git a/openerp/addons/base/i18n/ko.po b/openerp/addons/base/i18n/ko.po index 6df617f9755..cdde048b78b 100644 --- a/openerp/addons/base/i18n/ko.po +++ b/openerp/addons/base/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-29 05:07+0000\n" +"X-Launchpad-Export-Date: 2013-03-30 06:08+0000\n" "X-Generator: Launchpad (build 16546)\n" #. module: base diff --git a/openerp/addons/base/i18n/mk.po b/openerp/addons/base/i18n/mk.po index cb09d0439bd..1a04e6a6b99 100644 --- a/openerp/addons/base/i18n/mk.po +++ b/openerp/addons/base/i18n/mk.po @@ -10,14 +10,14 @@ msgstr "" "Report-Msgid-Bugs-To: OpenERP Macedonian \n" "POT-Creation-Date: 2013-03-07 08:36+0000\n" -"PO-Revision-Date: 2013-03-11 22:18+0000\n" -"Last-Translator: Ivica Dimitrijev \n" +"PO-Revision-Date: 2013-03-31 15:27+0000\n" +"Last-Translator: Sofce Dimitrijeva \n" "Language-Team: ЕСКОН-ИНЖЕНЕРИНГ\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-12 05:18+0000\n" -"X-Generator: Launchpad (build 16524)\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" "Language: mk\n" #. module: base @@ -4175,6 +4175,7 @@ msgstr "Титула" #: help:ir.property,res_id:0 msgid "If not set, acts as a default value for new resources" msgstr "" +"Доколку не е подесено, се однесува како стандардна вредност за новите ресурси" #. module: base #: code:addons/orm.py:4246 @@ -4582,7 +4583,7 @@ msgstr "EAN13" #: code:addons/orm.py:2247 #, python-format msgid "Invalid Architecture!" -msgstr "" +msgstr "Погрешна архитектура!" #. module: base #: model:res.country,name:base.pt @@ -4725,13 +4726,13 @@ msgstr "" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "" +msgstr "Акција за активирање" #. module: base #: field:ir.model.constraint,name:0 #: selection:ir.translation,type:0 msgid "Constraint" -msgstr "" +msgstr "Ограничување" #. module: base #: selection:ir.values,key:0 @@ -4849,7 +4850,7 @@ msgstr "Телеком сектор" #. module: base #: field:workflow.transition,trigger_model:0 msgid "Trigger Object" -msgstr "" +msgstr "Активирај објект" #. module: base #: sql_constraint:ir.sequence.type:0 @@ -4870,7 +4871,7 @@ msgstr "Дојдовни премини" #. module: base #: field:ir.values,value_unpickle:0 msgid "Default value or action reference" -msgstr "" +msgstr "Стандардна вредност или референца на акцијата" #. module: base #: model:ir.module.module,description:base.module_note_pad @@ -4942,7 +4943,7 @@ msgstr "Шпански (HN) / Español (HN)" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "" +msgstr "Тип на секвенца" #. module: base #: view:base.language.export:0 @@ -4995,7 +4996,7 @@ msgstr "Url" #. module: base #: selection:ir.translation,type:0 msgid "SQL Constraint" -msgstr "" +msgstr "SQL ограничување" #. module: base #: help:ir.ui.menu,groups_id:0 @@ -5201,7 +5202,7 @@ msgstr "" #. module: base #: model:ir.module.category,description:base.module_category_marketing msgid "Helps you manage your marketing campaigns step by step." -msgstr "" +msgstr "Ви помага да ги менаџирате вашите маркетинг кампањи чекор по чекор." #. module: base #: selection:base.language.install,lang:0 @@ -5346,7 +5347,7 @@ msgstr "Интеграција на Google Docs" #. module: base #: help:ir.attachment,res_model:0 msgid "The database object this attachment will be attached to" -msgstr "" +msgstr "Објектот на базата на податоци на кој овој прилог ќе биде прикачен" #. module: base #: code:addons/base/ir/ir_fields.py:327 @@ -5413,7 +5414,7 @@ msgstr ", или друг текст едитор" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign msgid "Partners Geo-Localization" -msgstr "" +msgstr "Географска локализација на партнери" #. module: base #: model:res.country,name:base.ke @@ -5470,7 +5471,7 @@ msgstr "Перу" #. module: base #: selection:ir.model.fields,on_delete:0 msgid "Set NULL" -msgstr "" +msgstr "Подеси Нула" #. module: base #: view:res.users:0 @@ -5501,7 +5502,7 @@ msgstr "" #. module: base #: help:ir.mail_server,smtp_user:0 msgid "Optional username for SMTP authentication" -msgstr "" +msgstr "Опционо корисничко име за SMTP автентификација" #. module: base #: model:ir.model,name:base.model_ir_actions_actions @@ -5574,6 +5575,7 @@ msgstr "Португалски / Português" #, python-format msgid "Changing the storing system for field \"%s\" is not allowed." msgstr "" +"Поврзувањето на системот за складирање за полето \"%s\" не е дозволено." #. module: base #: help:res.partner.bank,company_id:0 @@ -5797,6 +5799,7 @@ msgstr "Име на сопственикот на сметката" #, python-format msgid "Cannot rename column to %s, because that column already exists!" msgstr "" +"Не може да се преименува колоната во %s, бидејќи колоната веќе постои!" #. module: base #: view:ir.attachment:0 @@ -5812,7 +5815,7 @@ msgstr "Децимален знак" #: code:addons/orm.py:5319 #, python-format msgid "Missing required value for the field '%s'." -msgstr "" +msgstr "Недостига потребната вредност за полето '%s'." #. module: base #: view:ir.rule:0 @@ -5867,7 +5870,7 @@ msgstr "Буве Остров" #. module: base #: field:ir.model.constraint,type:0 msgid "Constraint Type" -msgstr "" +msgstr "Тип на ограничување" #. module: base #: field:res.company,child_ids:0 @@ -6194,7 +6197,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view msgid "ir.actions.act_window.view" -msgstr "" +msgstr "ir.actions.act_window.view" #. module: base #: model:ir.module.module,shortdesc:base.module_web @@ -6205,7 +6208,7 @@ msgstr "Веб" #. module: base #: model:ir.module.module,shortdesc:base.module_lunch msgid "Lunch Orders" -msgstr "" +msgstr "Нарачки за ручек" #. module: base #: selection:base.language.install,lang:0 @@ -6251,7 +6254,7 @@ msgstr "Етиопија" #. module: base #: model:ir.module.category,name:base.module_category_authentication msgid "Authentication" -msgstr "" +msgstr "Автентикација" #. module: base #: model:res.country,name:base.sj @@ -6262,7 +6265,7 @@ msgstr "" #: model:ir.model,name:base.model_ir_actions_wizard #: selection:ir.ui.menu,action:0 msgid "ir.actions.wizard" -msgstr "" +msgstr "ir.actions.wizard" #. module: base #: model:ir.module.module,shortdesc:base.module_web_kanban @@ -6274,7 +6277,7 @@ msgstr "" #: view:ir.actions.report.xml:0 #: view:ir.actions.server:0 msgid "Group By" -msgstr "" +msgstr "Групирај по" #. module: base #: view:res.config.installer:0 @@ -6325,7 +6328,7 @@ msgstr "Семтководство и финансии" #. module: base #: field:ir.actions.server,write_id:0 msgid "Write Id" -msgstr "" +msgstr "Напиши ID" #. module: base #: model:ir.ui.menu,name:base.menu_product @@ -6352,12 +6355,12 @@ msgstr "" #: model:ir.module.category,name:base.module_category_usability #: view:res.users:0 msgid "Usability" -msgstr "" +msgstr "Употребливост" #. module: base #: field:ir.actions.act_window,domain:0 msgid "Domain Value" -msgstr "" +msgstr "Вредност на домен" #. module: base #: model:ir.module.module,description:base.module_association @@ -6408,7 +6411,7 @@ msgstr "" #: code:addons/base/ir/workflow/workflow.py:99 #, python-format msgid "Operation forbidden" -msgstr "" +msgstr "Забранета операција" #. module: base #: view:ir.actions.server:0 @@ -6471,7 +6474,7 @@ msgstr "Тип на банка" #: code:addons/base/res/res_users.py:99 #, python-format msgid "The name of the group can not start with \"-\"" -msgstr "" +msgstr "Името на групата не може да почнува со \"-\"" #. module: base #: model:ir.actions.client,name:base.modules_act_cl @@ -6511,7 +6514,7 @@ msgstr "" #: view:workflow.activity:0 #: field:workflow.activity,flow_start:0 msgid "Flow Start" -msgstr "" +msgstr "Почеток на тек" #. module: base #: model:ir.model,name:base.model_res_partner_title @@ -6857,7 +6860,7 @@ msgstr "" #: code:addons/orm.py:2247 #, python-format msgid "There is no view of type '%s' defined for the structure!" -msgstr "" +msgstr "Нема приказ од типот \\%s\\ дефинирано за структурата!" #. module: base #: help:ir.values,key:0 @@ -6974,7 +6977,7 @@ msgstr "ir.cron" #. module: base #: model:ir.ui.menu,name:base.menu_sales_followup msgid "Payment Follow-up" -msgstr "" +msgstr "Следење на плаќање" #. module: base #: model:res.country,name:base.cw @@ -7003,7 +7006,7 @@ msgstr "" #. module: base #: sql_constraint:ir.rule:0 msgid "Rule must have at least one checked access right !" -msgstr "" +msgstr "Правилото мора да има барем едно означено право за пристап !" #. module: base #: field:res.partner.bank.type,format_layout:0 @@ -7441,7 +7444,7 @@ msgstr "Датотеката од модулот е успешно увезен #: view:ir.model.constraint:0 #: model:ir.ui.menu,name:base.ir_model_constraint_menu msgid "Model Constraints" -msgstr "" +msgstr "Ограничувања на модулот" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form @@ -7454,7 +7457,7 @@ msgstr "Транзиции" #: model:ir.module.module,shortdesc:base.module_hr_timesheet #: model:ir.module.module,shortdesc:base.module_hr_timesheet_sheet msgid "Timesheets" -msgstr "" +msgstr "Временски таблици" #. module: base #: help:ir.values,company_id:0 @@ -7488,6 +7491,9 @@ msgid "" "password, otherwise leave empty. After a change of password, the user has to " "login again." msgstr "" +"Специфицирајте вредност единствено кога креирате корисник или ја менувате " +"корисничката лозинка, во спротивно оставете празно. После промената на " +"лозинката, корисникот треба повторно да се најави." #. module: base #: model:res.country,name:base.so @@ -7652,7 +7658,7 @@ msgstr "на" #. module: base #: view:ir.property:0 msgid "Parameters that are used by all resources." -msgstr "" +msgstr "Параметри кои се користат од сите расурси." #. module: base #: model:res.country,name:base.mz @@ -15826,7 +15832,7 @@ msgstr "Северна Кореа" #. module: base #: selection:ir.actions.server,state:0 msgid "Create Object" -msgstr "" +msgstr "Креирај објект" #. module: base #: model:res.country,name:base.ss @@ -15841,7 +15847,7 @@ msgstr "Контекст" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_mrp msgid "Sales and MRP Management" -msgstr "" +msgstr "Управување со продажби и производство" #. module: base #: model:ir.actions.act_window,help:base.action_partner_form @@ -15855,6 +15861,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Кликнете за да додадете контакт во вашиот именик.\n" +"

\n" +"OpenERP ви помага полесно да ги следите сите активности поврзани со\n" +"купувач; дискусии, историја на бизнис можности,\n" +"документи, итн.\n" +"

\n" +" " #. module: base #: model:res.partner.category,name:base.res_partner_category_2 @@ -15882,6 +15896,8 @@ msgid "" "Used to select automatically the right address according to the context in " "sales and purchases documents." msgstr "" +"Се користи за автоматски да се избере вистинската адреса според контекстот " +"во документите за продажби и набавки." #. module: base #: model:ir.module.module,description:base.module_purchase_analytic_plans @@ -15914,4 +15930,4 @@ msgstr "Руски / русский язык" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_signup msgid "Signup" -msgstr "" +msgstr "Регистрација" diff --git a/openerp/addons/base/i18n/sl.po b/openerp/addons/base/i18n/sl.po index 0373d5b1a7b..53c64f2527e 100644 --- a/openerp/addons/base/i18n/sl.po +++ b/openerp/addons/base/i18n/sl.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: 2013-01-01 12:47+0000\n" +"PO-Revision-Date: 2013-04-01 12:25+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-08 05:21+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-02 05:47+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -33,7 +33,7 @@ msgstr "" #. module: base #: view:res.partner.bank:0 msgid "e.g. GEBABEBB" -msgstr "" +msgstr "npr. GEBABEBB" #. module: base #: model:res.country,name:base.sh @@ -773,7 +773,7 @@ msgstr "Prodaja & Nabava" #. module: base #: view:res.partner:0 msgid "Put an internal note..." -msgstr "" +msgstr "Interni zaznamek..." #. module: base #: view:ir.translation:0 @@ -1180,7 +1180,7 @@ msgstr "Posodobitev modula" #: view:res.partner.bank:0 #: view:res.users:0 msgid "ZIP" -msgstr "" +msgstr "Poštna številka" #. module: base #: selection:base.language.install,lang:0 @@ -3855,7 +3855,7 @@ msgstr "" #. module: base #: view:res.company:0 msgid "e.g. Global Business Solutions" -msgstr "" +msgstr "npr. Global Business Solutions" #. module: base #: field:res.company,rml_header1:0 @@ -7411,7 +7411,7 @@ msgstr "Manjši oddaljeni otoki ZDA" #. module: base #: view:base.language.import:0 msgid "e.g. English" -msgstr "" +msgstr "npr. English" #. module: base #: help:ir.cron,numbercall:0 @@ -7504,7 +7504,7 @@ msgstr "Podjetje" #: view:res.partner:0 #: view:res.users:0 msgid "e.g. www.openerp.com" -msgstr "" +msgstr "npr. www.openerp.com" #. module: base #: selection:ir.cron,interval_type:0 @@ -8107,7 +8107,7 @@ msgstr "ir.cron" #. module: base #: model:ir.ui.menu,name:base.menu_sales_followup msgid "Payment Follow-up" -msgstr "" +msgstr "Opomini" #. module: base #: model:res.country,name:base.cw @@ -9031,7 +9031,7 @@ msgstr "Prijava uporabnika" #. module: base #: view:ir.filters:0 msgid "Filters created by myself" -msgstr "" +msgstr "Filtri , ki sem jih ustvaril sam" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_hn @@ -9286,7 +9286,7 @@ msgstr "Naslednja številka tega zaporedja" #: view:res.partner:0 #: view:res.users:0 msgid "Tags..." -msgstr "" +msgstr "Ključne besede..." #. module: base #: view:res.partner:0 @@ -9316,7 +9316,7 @@ msgstr "Oblika datoteke" #. module: base #: view:ir.filters:0 msgid "My filters" -msgstr "" +msgstr "Moji filtri" #. module: base #: field:res.lang,iso_code:0 @@ -10176,7 +10176,7 @@ msgstr "Payment Follow-up Management" #: code:addons/orm.py:5334 #, python-format msgid "The value for the field '%s' already exists." -msgstr "" +msgstr "Vrednost za polje '%s' že obstaja." #. module: base #: field:workflow.workitem,inst_id:0 @@ -11473,7 +11473,7 @@ msgstr "Sklic partnerja" #: code:addons/base/static/src/js/apps.js:103 #, python-format msgid "OpenERP Apps Unreachable" -msgstr "" +msgstr "OpenERP Apps se ne odziva" #. module: base #: field:ir.attachment,create_date:0 @@ -12092,7 +12092,7 @@ msgstr "Contracts Management: hr_expense link" msgid "" "The `%s` module appears to be unavailable at the moment, please try again " "later." -msgstr "" +msgstr "Module '%s' trenutno ni dosegljiv." #. module: base #: view:ir.attachment:0 @@ -12503,7 +12503,7 @@ msgstr "" #: view:res.partner:0 #: view:res.users:0 msgid "Street..." -msgstr "" +msgstr "Ulica..." #. module: base #: constraint:res.users:0 @@ -14038,7 +14038,7 @@ msgstr "Kupec" #: view:res.partner:0 #: view:res.users:0 msgid "e.g. +32.81.81.37.00" -msgstr "" +msgstr "npr. +32.81.81.37.00" #. module: base #: selection:base.language.install,lang:0 @@ -15155,7 +15155,7 @@ msgstr "External Identifiers" #: code:addons/base/static/src/js/apps.js:103 #, python-format msgid "Showing locally available modules" -msgstr "" +msgstr "Lokalni moduli" #. module: base #: selection:base.language.install,lang:0 @@ -17373,7 +17373,7 @@ msgstr "View Auto-Load" #. module: base #: view:res.country:0 msgid "Address format..." -msgstr "" +msgstr "Format naslova..." #. module: base #: model:ir.module.module,description:base.module_l10n_et @@ -17956,7 +17956,7 @@ msgstr "Parametri" #. module: base #: view:res.partner:0 msgid "e.g. Sales Director" -msgstr "" +msgstr "npr. Vodja prodaje" #. module: base #: selection:base.language.install,lang:0 @@ -18149,7 +18149,7 @@ msgstr "Samodejna namestitev" #. module: base #: view:base.language.import:0 msgid "e.g. en_US" -msgstr "" +msgstr "npr. en_US" #. module: base #: model:ir.module.module,description:base.module_l10n_hn @@ -18391,7 +18391,7 @@ msgstr "Pogoj" #: code:addons/base/module/module.py:669 #, python-format msgid "Module not found" -msgstr "" +msgstr "Modula ni mogoče najti" #. module: base #: help:res.currency,rate:0 diff --git a/openerp/addons/base/i18n/tr.po b/openerp/addons/base/i18n/tr.po index efe1f87d99a..b87df64db3e 100644 --- a/openerp/addons/base/i18n/tr.po +++ b/openerp/addons/base/i18n/tr.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: 2013-02-19 21:48+0000\n" -"Last-Translator: Mehmet Demirel \n" +"PO-Revision-Date: 2013-03-31 19:48+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-08 05:21+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-01 05:31+0000\n" +"X-Generator: Launchpad (build 16546)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -33,7 +33,7 @@ msgstr "" #. module: base #: view:res.partner.bank:0 msgid "e.g. GEBABEBB" -msgstr "" +msgstr "e.g. GEBABEBB" #. module: base #: model:res.country,name:base.sh @@ -43,7 +43,7 @@ msgstr "Azize Helen" #. module: base #: view:ir.actions.report.xml:0 msgid "Other Configuration" -msgstr "Diğer Ayarlar" +msgstr "Diğer Yapılandırmalar" #. module: base #: selection:ir.property,type:0 @@ -79,7 +79,7 @@ msgstr "Boşluk Yok" #. module: base #: selection:base.language.install,lang:0 msgid "Hungarian / Magyar" -msgstr "Macarca / Magyar" +msgstr "Macarca" #. module: base #: selection:base.language.install,lang:0 @@ -109,7 +109,7 @@ msgstr "Hindistan Bordro" #: help:ir.cron,model:0 msgid "" "Model name on which the method to be called is located, e.g. 'res.partner'." -msgstr "" +msgstr "Çağrılacak yöntemin bulunduğu model adı, örn. 'res.partner'" #. module: base #: view:ir.module.module:0 @@ -131,6 +131,17 @@ msgid "" " * Product Attributes\n" " " msgstr "" +"\n" +"Ürün kartına üretici ve öznitelikleri ekleyecek bir modül.\n" +"====================================================================\n" +"\n" +"Şimdi bir ürün için aşağıdakileri tanımlayabilirsiniz:\n" +"-----------------------------------------------\n" +" * Üretici\n" +" * Üretici Ürün Adı\n" +" * Üretici Ürün Kodu\n" +" * Ürün Öznitelikleri\n" +" " #. module: base #: field:ir.actions.client,params:0 @@ -200,6 +211,14 @@ msgid "" "revenue\n" "reports." msgstr "" +"\n" +"Giderlerden, Zaman Çizelgesi Kayıtlarından Faturalarınızı oluşturun.\n" +"========================================================\n" +"\n" +"Maliyetlere göre fatura oluşturan modül (insan kaynaklar, giderler, ...).\n" +"\n" +"Analitik hesaplarda fiyat listeleri tanımlayabilirsiniz, bazı kuramsal gelir " +"raporları yapabilirsiniz." #. module: base #: code:addons/base/ir/ir_sequence.py:104 @@ -234,7 +253,7 @@ msgstr "ir.ui.view.custom" #: code:addons/base/ir/ir_model.py:375 #, python-format msgid "Renaming sparse field \"%s\" is not allowed" -msgstr "" +msgstr "\"%s\" boş alanının yeniden adlandırılmasına izin verilmez" #. module: base #: model:res.country,name:base.sz @@ -665,12 +684,12 @@ msgstr "Palau" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "Satışlar & SatınAlmalar" +msgstr "Satışlar ve Satınalmalar" #. module: base #: view:res.partner:0 msgid "Put an internal note..." -msgstr "" +msgstr "Bir iç not ekle..." #. module: base #: view:ir.translation:0 @@ -1020,7 +1039,7 @@ msgstr "Modül Yükseltme" #: view:res.partner.bank:0 #: view:res.users:0 msgid "ZIP" -msgstr "" +msgstr "PK" #. module: base #: selection:base.language.install,lang:0 @@ -1561,7 +1580,7 @@ msgstr "" #: model:ir.module.category,name:base.module_category_purchase_management #: model:ir.ui.menu,name:base.menu_purchase_root msgid "Purchases" -msgstr "SatınAlma" +msgstr "Satınalma" #. module: base #: model:res.country,name:base.md @@ -1967,7 +1986,7 @@ msgstr "Okuma Erişimi" #. module: base #: help:ir.attachment,res_id:0 msgid "The record id this is attached to" -msgstr "" +msgstr "Kayıt buna eklenmiştir" #. module: base #: model:ir.module.module,description:base.module_share @@ -5578,7 +5597,7 @@ msgstr "Yapılandırma Sihirbazı'nı başlatın" #. module: base #: model:ir.module.module,summary:base.module_mrp msgid "Manufacturing Orders, Bill of Materials, Routing" -msgstr "Üretim Siparişler, Malzeme Listesi, Yönlendirme" +msgstr "Üretim Emirleri, Ürün Ağaçları, Rotalar" #. module: base #: field:ir.attachment,name:0 @@ -13545,7 +13564,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_stock_no_autopicking msgid "Picking Before Manufacturing" -msgstr "Üretim Öncesi Seçmek" +msgstr "Üretim Öncesi Seçme" #. module: base #: model:ir.module.module,summary:base.module_note_pad